blob: 177765a724277c53ed34f3f9f385beed146d8dd4 (
plain)
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
123
124
125
126
127
128
129
130
131
132
|
/* ie6 trash */
* html #gritter-notice-wrapper {
position:absolute;
}
* html .gritter-top {
margin-bottom:-10px;
}
* html .gritter-item {
padding-bottom:0;
}
* html .gritter-bottom {
margin-bottom:0;
}
* html .gritter-close {
background:url(../images/gritter-close-ie6.gif);
width:22px;
height:22px;
top:7px;
right:7px;
}
/* the norm */
#gritter-notice-wrapper {
position:fixed;
top:70px;
right:40px;
width:301px;
z-index:9999;
}
#gritter-notice-wrapper img{
max-width:280px;
width: expression(this.width > 280 ? 280: true);
max-height:260px;
height: expression(this.width > 260 ? 260: true)
right:5px;
float:right;
}
.gritter-item-wrapper {
position:relative;
margin:0 0 5px 0;
color:#000;
background:url('.'); /* ie7/8 fix */
}
.gritter-top {
height:10px;
}
.hover .gritter-top {
background-position:right -30px;
}
.gritter-bottom {
height:0px;
margin:0;
}
.hover .gritter-bottom {
background-position: bottom right;
}
.gritter-item {
display:block;
background-color:#eee;
color:#000;
height:auto;
padding:7px 15px 11px 11px;
font-size: 11px;
height:auto;
font-family:verdana;
border-top-left-radius:5px;
border-top-right-radius:5px;
-webkit-border-top-left-radius:5px;
-webkit-border-top-right-radius:5px;
-moz-border-radius-topleft:5px;
-moz-border-radius-topright:5px;
border-bottom-left-radius:5px;
border-bottom-right-radius:5px;
-webkit-border-bottom-left-radius:5px;
-webkit-border-bottom-right-radius:5px;
-moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;
box-shadow: 5px 7px 10px #c8cbce;
-webkit-box-shadow: 5px 7px 10px #c8cbce;
-moz-box-shadow: 5px 7px 10px #c8cbce;
border:0px solid #999;
background:url(/static/gritter/gritterbg.png)
}
.gritter-item a{color:#000;
}
.hover .gritter-item {
background-position:right -40px;
color:#000;
}
.gritter-item p {
color:#000;
margin:0;
right:0;
}
.gritter-close {
position:absolute;
top:-5px;
right:-12px;
background:url(/static/gritter/gritterclose.png) no-repeat left top;
cursor:pointer;
width:30px;
height:30px;
}
.gritter-title {
font-size:14px;
font-weight:bold;
color:#000;
display:block;
}
.gritter-title a:link{color:#000;
}
.gritter-image {
width:48px;
height:48px;
float:right;
right:0px;
}
.gritter-with-image,
.gritter-without-image {
padding:0 0 5px 0;
}
.gritter-with-image {
width:250px;
float:right;
}
|