Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7283 kshitij.so 1
#popup_container {
2
	font-family: Arial, sans-serif;
3
	font-size: 12px;
4
	min-width: 300px; /* Dialog will be no smaller than this */
5
	max-width: 600px; /* Dialog will wrap after this width */
6
	background: #FFFFFF;
7
	border: solid 5px black;
8
	color: #000;
9
	-moz-border-radius: 5px;
10
	-webkit-border-radius: 5px;
11
	border-radius: 5px;
12
}
13
 
14
#popup_title {
15
	font-size: 14px;
16
	font-weight: bold;
17
	text-align: center;
18
	line-height: 1.75em;
19
	color: #666;
20
	background: #CCC url(images/title.gif) top repeat-x;
21
	border: solid 1px #FFF;
22
	border-bottom: solid 1px #999;
23
	cursor: default;
24
	padding: 0em;
25
	margin: 0em;
26
}
27
 
28
#popup_content {
29
	background: 16px 16px no-repeat url(images/info.gif);
30
	padding: 1em 1.75em;
31
	margin: 0em;
32
}
33
 
34
#popup_content.alert {
35
	background-image: url(images/info.gif);
36
        color: black;
37
        font-size: 12px;
38
}
39
 
40
#popup_content.confirm {
41
	background-image: url(images/important.gif);
42
}
43
 
44
#popup_content.prompt {
45
	background-image: url(images/help.gif);
46
}
47
 
48
#popup_message {
49
	padding-left: 48px;
50
}
51
 
52
#popup_panel {
53
	text-align: center;
54
	margin: 1em 0em 0em 1em;
55
}
56
 
57
#popup_prompt {
58
	margin: .5em 0em;
59
}