-
Notifications
You must be signed in to change notification settings - Fork 4
/
jquery.msg.css
51 lines (48 loc) · 1.09 KB
/
jquery.msg.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
#jquery-msg-bg {
-moz-opacity: 0.6;
-khtml-opacity: 0.6;
opacity: 0.6;
filter: alpha(opacity=60);
background: black;
}
.jquery-msg-content {
-webkit-background-clip: padding-box;
padding: 15px;
}
.black-on-white .jquery-msg-content {
background: white;
color: #333333;
-moz-opacity: 0.9;
-khtml-opacity: 0.9;
opacity: 0.9;
filter: alpha(opacity=90);
-webkit-box-shadow: 5px 5px 30px 0 black;
-moz-box-shadow: 5px 5px 30px 0 black;
box-shadow: 5px 5px 30px 0 black;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
-o-border-radius: 8px;
-khtml-border-radius: 8px;
-ms-border-radius: 8px;
border-radius: 8px;
/* ie fix */
-pie-lazy-init: true;
behavior: url(PIE.htc);
}
.white-on-black .jquery-msg-content {
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
filter: alpha(opacity=50);
background: black;
color: white;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
-o-border-radius: 8px;
-khtml-border-radius: 8px;
-ms-border-radius: 8px;
border-radius: 8px;
/* ie fix */
-pie-lazy-init: true;
behavior: url(PIE.htc);
}