-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
106 lines (96 loc) · 2.09 KB
/
popup.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
/* Popup
...................................... */
.popup-overlay {
width: 100%;
height: 100%;
position: fixed;
margin: 0;
padding: 0;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: black;
filter: alpha(opacity=33);
-ms-filter: "alpha(opacity=33)";
-khtml-opacity: .33;
-moz-opacity: .33;
opacity: .33;
}
.popup {
position: absolute;
min-height: 50px;
max-height: 80%;
/*
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
*/
background-color: white;
-moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.33);
-webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.33);
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.33);
}
.popup.skinny {
width: 420px !important;
}
.popup.loading {
background-image: url(/static/icons/32/indicator.gif);
background-position: 50% 50%;
background-repeat: no-repeat;
}
.popup a.popup-close {
position: absolute;
top: 0;
right: 0;
width: 16px;
height: 16px;
margin: 2px;
padding: 0;
line-height: 16px;
text-align: center;
z-index: 1;
opacity: .5;
}
/*.popup a.popup-close:hover {
opacity: 1;
}
.popup a.popup-close:focus,
.popup a.popup-close:active {
opacity: 1;
}*/
.popup .popup-content {
padding: 24px;
/*
border-radius: 2px;
*/
}
/* Growl
...................................... */
#growl-notifications {
position: fixed;
top: 5px;
right: 5px;
width: 250px;
z-index: 1000;
}
#growl-notifications .popup-growl {
position: relative !important;
min-height: 20px;
margin-bottom: 6px;
background: white;
background: rgba(255,255,255,0.75);
-moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.33);
-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.33);
box-shadow: 1px 1px 3px rgba(0,0,0,0.33);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
#growl-notifications .popup-growl .popup-content {
padding: 8px;
background: none;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}