blob: 62698cd0b399f7ead730a9599f2145edcace8313 (
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
|
/*** BEGIN LICENSE BLOCK {{{
Copyright (c) 2008 suVene<suvene@zeromemory.info>
distributable under the terms of an MIT-style license.
http://www.opensource.jp/licenses/mit-license.html
@based on jGrowl
http://stanlemon.net/projects/jgrowl.html
}}} END LICENSE BLOCK ***/
div.observer_growl {
padding: 10px;
z-index: 9999;
}
/** Normal Style Positions **/
body > div.observer_growl {
position: fixed;
}
body > div.observer_growl.top-left {
left: 0px;
top: 0px;
}
body > div.observer_growl.top-right {
right: 0px;
top: 0px;
}
body > div.observer_growl.bottom-left {
left: 0px;
bottom: 0px;
}
body > div.observer_growl.bottom-right {
right: 0px;
bottom: 0px;
}
body > div.observer_growl.center {
top: 0px;
width: 50%;
left: 25%;
}
/** Cross Browser Styling **/
div.center div.observer_growl_notification, div.center div.observer_growl_closer {
margin-left: auto;
margin-right: auto;
}
div.observer_growl div.observer_growl_notification, div.observer_growl div.observer_growl_closer {
background-color: #000;
color: #fff;
opacity: .85;
width: 235px;
padding: 10px;
margin-top: 5px;
margin-bottom: 5px;
font-family: Tahoma, Arial, Helvetica, sans-serif;
font-size: 12px;
text-align: left;
display: none;
-moz-border-radius: 5px;
}
div.observer_growl div.observer_growl_notification {
min-height: 40px;
}
div.observer_growl div.observer_growl_notification div.header {
font-weight: bold;
font-size: 10px;
}
div.observer_growl div.observer_growl_notification a:link {
color: #EF6D29 !important;
}
div.observer_growl div.observer_growl_notification a:visited {
color: #BA591E !important;
}
div.observer_growl div.observer_growl_notification div.close {
float: right;
font-weight: bold;
font-size: 12px;
cursor: pointer;
}
div.observer_growl div.observer_growl_closer {
height: 15px;
padding-top: 4px;
padding-bottom: 4px;
cursor: pointer;
font-size: 11px;
font-weight: bold;
text-align: center;
}
|