-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.alerts.css
122 lines (106 loc) · 2.54 KB
/
jquery.alerts.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#popup_container {
font-family: Arial, sans-serif;
font-size: 12px;
min-width: 300px; /* Dialog will be no smaller than this */
max-width: 600px; /* Dialog will wrap after this width */
background: #FFF;
/*border: solid 5px #999;*/
box-shadow:0 2px 2px rgba(0, 0, 0, 0.2), 0 1px 5px rgba(0, 0, 0, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.4);
color: #000;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
#popup_title {
font-size: 14px;
font-weight: bold;
text-align: center;
line-height: 1.75em;
color: #666;
background: #CCC url(images/title.gif) top repeat-x;
border: solid 1px #FFF;
border-bottom: solid 1px #999;
cursor: default;
padding: 0em;
margin: 0em;
}
#popup_content {
background: 16px 16px no-repeat url(images/info.gif);
padding: 1em 1.75em;
margin: 0em;
}
#popup_content.alert {
background-image: url(images/info.gif);
}
#popup_content.confirm {
background-image: url(images/important.gif);
}
#popup_content.prompt {
background-image: url(images/help.gif);
}
#popup_message {
padding-left: 48px;
color:#717171;
min-height: 35px;
}
#popup_panel {
text-align:right;
margin: 9px 0px 0px;
}
#popup_prompt {
margin: .5em 0em;
}
/* For Blue Theme */
#popup_title_blue {
font-size: 14px;
font-weight: bold;
text-align: center;
line-height: 1.75em;
color: #f4efef;
text-shadow: 1px 1px 1px #989292;
/*background: #CCC url(images/title-blue.png) top repeat-x;
border: solid 1px #FFF;*/
background: #6db3f2;
background: -moz-linear-gradient(top, #6db3f2 0%, #3690f0 79%, #1e69de 100%);
background: -webkit-linear-gradient(top, #6db3f2 0%,#3690f0 79%,#1e69de 100%);
background: linear-gradient(to bottom, #6db3f2 0%,#3690f0 79%,#1e69de 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6db3f2', endColorstr='#1e69de',GradientType=0 );
border-bottom: solid 1px #999;
cursor: default;
padding: 0em;
margin: 0em;
border-radius:5px 5px 0px 0px;
-moz-border-radius:5px 5px 0px 0px;
-webkit-border-radius:5px 5px 0px 0px;
}
#popup_content_blue {
padding: 9px;
margin: 0em;
}
#popup_content_blue.alert {
background-image: url(images/info-blue.png);
}
#popup_content_blue.confirm {
background-image: url(images/important-blue.png);
}
#popup_content_blue.prompt {
background-image: url(images/help-blue.png);
}
/*BOOTSTRAP THEME*/
#popup_cancel , #popup_ok{
min-width: 70px;
}
.icon_alert{
font-size: 35px;
position: absolute;
left: 14px;
top: 27px;
color:#3c8dbc;
}
.button-close{
position: absolute;
right: 5px;
top: 4px;
font-size: 16px;
padding: 0px 0px 0px 1px;
}