Show More
@@ -1,109 +1,120 b'' | |||
|
1 | 1 | div.codeblock { |
|
2 | 2 | overflow: auto; |
|
3 | 3 | padding: 0px; |
|
4 | 4 | border: 1px solid #ccc; |
|
5 | 5 | background: #f8f8f8; |
|
6 | 6 | font-size: 100%; |
|
7 | 7 | line-height: 100%; |
|
8 | 8 | /* new */ |
|
9 | 9 | line-height: 125%; |
|
10 | 10 | } |
|
11 | 11 | div.codeblock .code-header{ |
|
12 | 12 | border-bottom: 1px solid #CCCCCC; |
|
13 | 13 | background: #EEEEEE; |
|
14 | 14 | color:blue; |
|
15 | 15 | padding:10px 0 10px 0; |
|
16 | 16 | } |
|
17 | 17 | div.codeblock .code-header .revision{ |
|
18 | 18 | margin-left:25px; |
|
19 | 19 | font-weight: bold; |
|
20 | 20 | } |
|
21 | 21 | div.codeblock .code-header .commit{ |
|
22 | 22 | margin-left:25px; |
|
23 | 23 | font-weight: normal; |
|
24 | 24 | } |
|
25 | 25 | div.codeblock .code-body table{ |
|
26 | 26 | width: 0 !important; |
|
27 | 27 | } |
|
28 | 28 | |
|
29 | div.code-body pre .match{ | |
|
30 | background-color: #FAFFA6; | |
|
31 | } | |
|
32 | div.code-body pre .break{ | |
|
33 | background-color: #DDE7EF; | |
|
34 | width: 100%; | |
|
35 | color: #747474; | |
|
36 | display: block; | |
|
37 | ||
|
38 | } | |
|
39 | ||
|
29 | 40 | div.annotatediv{ |
|
30 | 41 | margin-left:2px; |
|
31 | 42 | margin-right:4px; |
|
32 | 43 | } |
|
33 | 44 | |
|
34 | 45 | |
|
35 | 46 | .code-highlight { |
|
36 | 47 | padding: 0px; |
|
37 | 48 | margin-top: 5px; |
|
38 | 49 | margin-bottom: 5px; |
|
39 | 50 | border-left: 2px solid #ccc; |
|
40 | 51 | } |
|
41 | 52 | .code-highlight pre, .linenodiv pre { |
|
42 | 53 | padding: 5px; |
|
43 | 54 | margin: 0; |
|
44 | 55 | } |
|
45 | 56 | .linenos a { text-decoration: none; } |
|
46 | 57 | |
|
47 | 58 | |
|
48 | 59 | .code { display: block; } |
|
49 | 60 | .code-highlight .hll { background-color: #ffffcc } |
|
50 | 61 | .code-highlight .c { color: #408080; font-style: italic } /* Comment */ |
|
51 | 62 | .code-highlight .err { border: 1px solid #FF0000 } /* Error */ |
|
52 | 63 | .code-highlight .k { color: #008000; font-weight: bold } /* Keyword */ |
|
53 | 64 | .code-highlight .o { color: #666666 } /* Operator */ |
|
54 | 65 | .code-highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ |
|
55 | 66 | .code-highlight .cp { color: #BC7A00 } /* Comment.Preproc */ |
|
56 | 67 | .code-highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ |
|
57 | 68 | .code-highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ |
|
58 | 69 | .code-highlight .gd { color: #A00000 } /* Generic.Deleted */ |
|
59 | 70 | .code-highlight .ge { font-style: italic } /* Generic.Emph */ |
|
60 | 71 | .code-highlight .gr { color: #FF0000 } /* Generic.Error */ |
|
61 | 72 | .code-highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ |
|
62 | 73 | .code-highlight .gi { color: #00A000 } /* Generic.Inserted */ |
|
63 | 74 | .code-highlight .go { color: #808080 } /* Generic.Output */ |
|
64 | 75 | .code-highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ |
|
65 | 76 | .code-highlight .gs { font-weight: bold } /* Generic.Strong */ |
|
66 | 77 | .code-highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ |
|
67 | 78 | .code-highlight .gt { color: #0040D0 } /* Generic.Traceback */ |
|
68 | 79 | .code-highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ |
|
69 | 80 | .code-highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ |
|
70 | 81 | .code-highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ |
|
71 | 82 | .code-highlight .kp { color: #008000 } /* Keyword.Pseudo */ |
|
72 | 83 | .code-highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ |
|
73 | 84 | .code-highlight .kt { color: #B00040 } /* Keyword.Type */ |
|
74 | 85 | .code-highlight .m { color: #666666 } /* Literal.Number */ |
|
75 | 86 | .code-highlight .s { color: #BA2121 } /* Literal.String */ |
|
76 | 87 | .code-highlight .na { color: #7D9029 } /* Name.Attribute */ |
|
77 | 88 | .code-highlight .nb { color: #008000 } /* Name.Builtin */ |
|
78 | 89 | .code-highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ |
|
79 | 90 | .code-highlight .no { color: #880000 } /* Name.Constant */ |
|
80 | 91 | .code-highlight .nd { color: #AA22FF } /* Name.Decorator */ |
|
81 | 92 | .code-highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ |
|
82 | 93 | .code-highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ |
|
83 | 94 | .code-highlight .nf { color: #0000FF } /* Name.Function */ |
|
84 | 95 | .code-highlight .nl { color: #A0A000 } /* Name.Label */ |
|
85 | 96 | .code-highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ |
|
86 | 97 | .code-highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ |
|
87 | 98 | .code-highlight .nv { color: #19177C } /* Name.Variable */ |
|
88 | 99 | .code-highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ |
|
89 | 100 | .code-highlight .w { color: #bbbbbb } /* Text.Whitespace */ |
|
90 | 101 | .code-highlight .mf { color: #666666 } /* Literal.Number.Float */ |
|
91 | 102 | .code-highlight .mh { color: #666666 } /* Literal.Number.Hex */ |
|
92 | 103 | .code-highlight .mi { color: #666666 } /* Literal.Number.Integer */ |
|
93 | 104 | .code-highlight .mo { color: #666666 } /* Literal.Number.Oct */ |
|
94 | 105 | .code-highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ |
|
95 | 106 | .code-highlight .sc { color: #BA2121 } /* Literal.String.Char */ |
|
96 | 107 | .code-highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ |
|
97 | 108 | .code-highlight .s2 { color: #BA2121 } /* Literal.String.Double */ |
|
98 | 109 | .code-highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ |
|
99 | 110 | .code-highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ |
|
100 | 111 | .code-highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ |
|
101 | 112 | .code-highlight .sx { color: #008000 } /* Literal.String.Other */ |
|
102 | 113 | .code-highlight .sr { color: #BB6688 } /* Literal.String.Regex */ |
|
103 | 114 | .code-highlight .s1 { color: #BA2121 } /* Literal.String.Single */ |
|
104 | 115 | .code-highlight .ss { color: #19177C } /* Literal.String.Symbol */ |
|
105 | 116 | .code-highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ |
|
106 | 117 | .code-highlight .vc { color: #19177C } /* Name.Variable.Class */ |
|
107 | 118 | .code-highlight .vg { color: #19177C } /* Name.Variable.Global */ |
|
108 | 119 | .code-highlight .vi { color: #19177C } /* Name.Variable.Instance */ |
|
109 | 120 | .code-highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ |
@@ -1,3643 +1,3743 b'' | |||
|
1 | 1 | /* ----------------------------------------------------------- |
|
2 | 2 | main stylesheet |
|
3 | 3 | ----------------------------------------------------------- */ |
|
4 | 4 | |
|
5 | 5 | html |
|
6 | 6 | { |
|
7 | 7 | height: 100%; |
|
8 | 8 | } |
|
9 | 9 | |
|
10 | 10 | body |
|
11 | 11 | { |
|
12 | 12 | margin: 0; |
|
13 | 13 | padding: 0; |
|
14 | 14 | height: 100%; |
|
15 | 15 | background: #d1d1d1 url("../images/background.png") repeat; |
|
16 | 16 | font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif; |
|
17 | 17 | font-size: 11px; |
|
18 | 18 | } |
|
19 | 19 | |
|
20 | 20 | /* ----------------------------------------------------------- |
|
21 | 21 | images |
|
22 | 22 | ----------------------------------------------------------- */ |
|
23 | 23 | |
|
24 | 24 | img |
|
25 | 25 | { |
|
26 | 26 | border: none; |
|
27 | 27 | } |
|
28 | 28 | |
|
29 | 29 | /* ----------------------------------------------------------- |
|
30 | 30 | anchors |
|
31 | 31 | ----------------------------------------------------------- */ |
|
32 | 32 | |
|
33 | 33 | a |
|
34 | 34 | { |
|
35 | 35 | color: #0066CC; |
|
36 | 36 | text-decoration: none; |
|
37 | 37 | cursor: pointer; |
|
38 | 38 | } |
|
39 | 39 | |
|
40 | 40 | a:hover |
|
41 | 41 | { |
|
42 | 42 | color: #000000; |
|
43 | 43 | text-decoration: underline; |
|
44 | 44 | } |
|
45 | 45 | |
|
46 | 46 | /* ----------------------------------------------------------- |
|
47 | 47 | headings |
|
48 | 48 | ----------------------------------------------------------- */ |
|
49 | 49 | |
|
50 | 50 | h1, h2, h3, h4, h5, h6 |
|
51 | 51 | { |
|
52 | 52 | color: #292929; |
|
53 | 53 | font-weight: bold; |
|
54 | 54 | } |
|
55 | 55 | |
|
56 | 56 | h1 |
|
57 | 57 | { |
|
58 | 58 | font-size: 22px; |
|
59 | 59 | } |
|
60 | 60 | |
|
61 | 61 | h2 |
|
62 | 62 | { |
|
63 | 63 | font-size: 20px; |
|
64 | 64 | } |
|
65 | 65 | |
|
66 | 66 | h3 |
|
67 | 67 | { |
|
68 | 68 | font-size: 18px; |
|
69 | 69 | } |
|
70 | 70 | |
|
71 | 71 | h4 |
|
72 | 72 | { |
|
73 | 73 | font-size: 16px; |
|
74 | 74 | } |
|
75 | 75 | |
|
76 | 76 | h5 |
|
77 | 77 | { |
|
78 | 78 | font-size: 14px; |
|
79 | 79 | } |
|
80 | 80 | |
|
81 | 81 | h6 |
|
82 | 82 | { |
|
83 | 83 | font-size: 11px; |
|
84 | 84 | } |
|
85 | 85 | |
|
86 | 86 | /* ----------------------------------------------------------- |
|
87 | 87 | lists |
|
88 | 88 | ----------------------------------------------------------- */ |
|
89 | 89 | |
|
90 | 90 | ul.circle { list-style-type: circle; } |
|
91 | 91 | ul.disc { list-style-type: disc; } |
|
92 | 92 | ul.square { list-style-type: square; } |
|
93 | 93 | ol.lower-roman { list-style-type: lower-roman; } |
|
94 | 94 | ol.upper-roman { list-style-type: upper-roman; } |
|
95 | 95 | ol.lower-alpha { list-style-type: lower-alpha; } |
|
96 | 96 | ol.upper-alpha { list-style-type: upper-alpha; } |
|
97 | 97 | ol.decimal { list-style-type: decimal; } |
|
98 | 98 | |
|
99 | 99 | /* ----------------------------------------------------------- |
|
100 | 100 | colors |
|
101 | 101 | ----------------------------------------------------------- */ |
|
102 | 102 | |
|
103 | 103 | div.color |
|
104 | 104 | { |
|
105 | 105 | margin: 7px 0 0 60px; |
|
106 | 106 | padding: 1px 1px 1px 0px; |
|
107 | 107 | clear: both; |
|
108 | 108 | overflow: hidden; |
|
109 | 109 | position: absolute; |
|
110 | 110 | background: #FFFFFF; |
|
111 | 111 | } |
|
112 | 112 | |
|
113 | 113 | div.color a |
|
114 | 114 | { |
|
115 | 115 | margin: 0 0 0 1px; |
|
116 | 116 | padding: 0; |
|
117 | 117 | width: 15px; |
|
118 | 118 | height: 15px; |
|
119 | 119 | display: block; |
|
120 | 120 | float: left; |
|
121 | 121 | } |
|
122 | 122 | |
|
123 | 123 | div.color a.blue |
|
124 | 124 | { |
|
125 | 125 | background: #376ea6; |
|
126 | 126 | } |
|
127 | 127 | |
|
128 | 128 | div.color a.green |
|
129 | 129 | { |
|
130 | 130 | background: #85924b; |
|
131 | 131 | } |
|
132 | 132 | |
|
133 | 133 | div.color a.brown |
|
134 | 134 | { |
|
135 | 135 | background: #9b6e42; |
|
136 | 136 | } |
|
137 | 137 | |
|
138 | 138 | div.color a.purple |
|
139 | 139 | { |
|
140 | 140 | background: #88528b; |
|
141 | 141 | } |
|
142 | 142 | |
|
143 | 143 | div.color a.red |
|
144 | 144 | { |
|
145 | 145 | background: #bd3220; |
|
146 | 146 | } |
|
147 | 147 | |
|
148 | 148 | div.color a.greyblue |
|
149 | 149 | { |
|
150 | 150 | background: #566e86; |
|
151 | 151 | } |
|
152 | 152 | |
|
153 | 153 | /* ----------------------------------------------------------- |
|
154 | 154 | options |
|
155 | 155 | ----------------------------------------------------------- */ |
|
156 | 156 | |
|
157 | 157 | div.options |
|
158 | 158 | { |
|
159 | 159 | margin: 7px 0 0 162px; |
|
160 | 160 | padding: 0; |
|
161 | 161 | clear: both; |
|
162 | 162 | overflow: hidden; |
|
163 | 163 | position: absolute; |
|
164 | 164 | background: #FFFFFF; |
|
165 | 165 | } |
|
166 | 166 | |
|
167 | 167 | div.options a |
|
168 | 168 | { |
|
169 | 169 | margin: 0; |
|
170 | 170 | padding: 3px 8px 3px 8px; |
|
171 | 171 | height: 1%; |
|
172 | 172 | display: block; |
|
173 | 173 | text-decoration: none; |
|
174 | 174 | } |
|
175 | 175 | |
|
176 | 176 | div.options a:hover |
|
177 | 177 | { |
|
178 | 178 | text-decoration: none; |
|
179 | 179 | } |
|
180 | 180 | |
|
181 | 181 | /* ----------------------------------------------------------- |
|
182 | 182 | header |
|
183 | 183 | ----------------------------------------------------------- */ |
|
184 | 184 | |
|
185 | 185 | #header |
|
186 | 186 | { |
|
187 | 187 | margin: 0; |
|
188 | 188 | padding: 0 60px 0 60px; |
|
189 | 189 | background: #b0b0b0 url("../images/header_background.png") repeat; |
|
190 | 190 | } |
|
191 | 191 | |
|
192 | 192 | |
|
193 | 193 | /* ----------------------------------------------------------- |
|
194 | 194 | header -> user |
|
195 | 195 | ----------------------------------------------------------- */ |
|
196 | 196 | |
|
197 | 197 | #header ul#logged-user |
|
198 | 198 | { |
|
199 | 199 | margin: 0; |
|
200 | 200 | padding: 0; |
|
201 | 201 | float: right; |
|
202 | 202 | } |
|
203 | 203 | |
|
204 | 204 | #header ul#logged-user li |
|
205 | 205 | { |
|
206 | 206 | margin: 0; |
|
207 | 207 | padding: 10px 12px 10px 12px; |
|
208 | 208 | list-style: none; |
|
209 | 209 | float: left; |
|
210 | 210 | border-left: 1px solid #bbbbbb; |
|
211 | 211 | border-right: 1px solid #a5a5a5; |
|
212 | 212 | } |
|
213 | 213 | |
|
214 | 214 | #header ul#logged-user li.first |
|
215 | 215 | { |
|
216 | 216 | border-left: none; |
|
217 | 217 | } |
|
218 | 218 | |
|
219 | 219 | #header ul#logged-user li.last |
|
220 | 220 | { |
|
221 | 221 | border-right: none; |
|
222 | 222 | } |
|
223 | 223 | |
|
224 | 224 | #header ul#logged-user li a |
|
225 | 225 | { |
|
226 | 226 | color: #4e4e4e; |
|
227 | 227 | font-weight: bold; |
|
228 | 228 | text-decoration: none; |
|
229 | 229 | } |
|
230 | 230 | |
|
231 | 231 | #header ul#logged-user li a:hover |
|
232 | 232 | { |
|
233 | 233 | color: #376ea6; |
|
234 | 234 | text-decoration: underline; |
|
235 | 235 | } |
|
236 | 236 | |
|
237 | 237 | #header ul#logged-user li.highlight a |
|
238 | 238 | { |
|
239 | 239 | color: #ffffff; |
|
240 | 240 | } |
|
241 | 241 | |
|
242 | 242 | #header ul#logged-user li.highlight a:hover |
|
243 | 243 | { |
|
244 | 244 | color: #376ea6; |
|
245 | 245 | } |
|
246 | 246 | |
|
247 | 247 | #header #header-inner |
|
248 | 248 | { |
|
249 | 249 | margin: 0; |
|
250 | 250 | padding: 0; |
|
251 | 251 | height: 40px; |
|
252 | 252 | clear: both; |
|
253 | 253 | position: relative; |
|
254 | 254 | background: #003367 url("../images/colors/blue/header_inner.png") repeat-x; |
|
255 | 255 | border-bottom: 6px solid #ffffff; |
|
256 | 256 | } |
|
257 | 257 | |
|
258 | 258 | /* ----------------------------------------------------------- |
|
259 | 259 | header -> home |
|
260 | 260 | ----------------------------------------------------------- */ |
|
261 | 261 | |
|
262 | 262 | #header #header-inner #home |
|
263 | 263 | { |
|
264 | 264 | float: left; |
|
265 | 265 | } |
|
266 | 266 | |
|
267 | 267 | #header #header-inner #home a |
|
268 | 268 | { |
|
269 | 269 | margin: 0; |
|
270 | 270 | padding: 0; |
|
271 | 271 | height: 40px; |
|
272 | 272 | width: 46px; |
|
273 | 273 | display: block; |
|
274 | 274 | background: url("../images/colors/blue/button_home.png"); |
|
275 | 275 | background-position: 0 0; |
|
276 | 276 | } |
|
277 | 277 | |
|
278 | 278 | #header #header-inner #home a:hover |
|
279 | 279 | { |
|
280 | 280 | background-position: 0 -40px; |
|
281 | 281 | } |
|
282 | 282 | |
|
283 | 283 | /* ----------------------------------------------------------- |
|
284 | 284 | header -> logo |
|
285 | 285 | ----------------------------------------------------------- */ |
|
286 | 286 | |
|
287 | 287 | #header #header-inner #logo |
|
288 | 288 | { |
|
289 | 289 | float: left; |
|
290 | 290 | } |
|
291 | 291 | |
|
292 | 292 | #header #header-inner #logo h1 |
|
293 | 293 | { |
|
294 | 294 | margin: 13px 0 0 13px; |
|
295 | 295 | padding: 0; |
|
296 | 296 | color: #FFFFFF; |
|
297 | 297 | font-size: 14px; |
|
298 | 298 | text-transform: uppercase; |
|
299 | 299 | } |
|
300 | 300 | |
|
301 | 301 | #header #header-inner #logo a |
|
302 | 302 | { |
|
303 | 303 | color: #ffffff; |
|
304 | 304 | text-decoration: none; |
|
305 | 305 | } |
|
306 | 306 | |
|
307 | 307 | #header #header-inner #logo a:hover |
|
308 | 308 | { |
|
309 | 309 | color: #dabf29; |
|
310 | 310 | } |
|
311 | 311 | |
|
312 | 312 | /* ----------------------------------------------------------- |
|
313 | 313 | header -> quick |
|
314 | 314 | ----------------------------------------------------------- */ |
|
315 | 315 | |
|
316 | 316 | #header #header-inner #quick, |
|
317 | 317 | #header #header-inner #quick ul |
|
318 | 318 | { |
|
319 | 319 | margin: 10px 5px 0 0; |
|
320 | 320 | padding: 0; |
|
321 | 321 | position: relative; |
|
322 | 322 | float: right; |
|
323 | 323 | list-style-type: none; |
|
324 | 324 | list-style-position: outside; |
|
325 | 325 | } |
|
326 | 326 | |
|
327 | 327 | #header #header-inner #quick li |
|
328 | 328 | { |
|
329 | 329 | margin: 0 4px 0 0; |
|
330 | 330 | padding: 0; |
|
331 | 331 | position: relative; |
|
332 | 332 | float: left; |
|
333 | 333 | } |
|
334 | 334 | |
|
335 | 335 | #header #header-inner #quick li a |
|
336 | 336 | { |
|
337 | 337 | top: 0; |
|
338 | 338 | left: 0; |
|
339 | 339 | padding: 0; |
|
340 | 340 | height: 1%; |
|
341 | 341 | display: block; |
|
342 | 342 | clear: both; |
|
343 | 343 | overflow: hidden; |
|
344 | 344 | background: #336699 url("../images/colors/blue/quick_l.png") no-repeat top left; |
|
345 | 345 | color: #FFFFFF; |
|
346 | 346 | font-weight: bold; |
|
347 | 347 | text-decoration: none; |
|
348 | 348 | } |
|
349 | 349 | |
|
350 | 350 | #header #header-inner #quick li span |
|
351 | 351 | { |
|
352 | 352 | top: 0; |
|
353 | 353 | right: 0; |
|
354 | 354 | margin: 0; |
|
355 | 355 | padding: 10px 12px 8px 10px; |
|
356 | 356 | height: 1%; |
|
357 | 357 | display: block; |
|
358 | 358 | float: left; |
|
359 | 359 | background: url("../images/colors/blue/quick_r.png") no-repeat top right; |
|
360 | 360 | border-left: 1px solid #3f6f9f; |
|
361 | 361 | } |
|
362 | 362 | |
|
363 | 363 | #header #header-inner #quick li span.icon |
|
364 | 364 | { |
|
365 | 365 | top: 0; |
|
366 | 366 | left: 0; |
|
367 | 367 | padding: 8px 8px 4px 8px; |
|
368 | 368 | background: url("../images/colors/blue/quick_l.png") no-repeat top left; |
|
369 | 369 | border-left: none; |
|
370 | 370 | border-right: 1px solid #2e5c89; |
|
371 | 371 | } |
|
372 | 372 | |
|
373 | 373 | #header #header-inner #quick li a:hover |
|
374 | 374 | { |
|
375 | 375 | background: #4e4e4e; |
|
376 | 376 | } |
|
377 | 377 | |
|
378 | 378 | #header #header-inner #quick li a:hover span |
|
379 | 379 | { |
|
380 | 380 | background: url("../images/colors/blue/quick_r_selected.png") no-repeat top right; |
|
381 | 381 | border-left: 1px solid #545454; |
|
382 | 382 | } |
|
383 | 383 | |
|
384 | 384 | #header #header-inner #quick li a:hover span.icon |
|
385 | 385 | { |
|
386 | 386 | background: url("../images/colors/blue/quick_l_selected.png") no-repeat top left; |
|
387 | 387 | border-left: none; |
|
388 | 388 | border-right: 1px solid #464646; |
|
389 | 389 | } |
|
390 | 390 | |
|
391 | 391 | #header #header-inner #quick ul |
|
392 | 392 | { |
|
393 | 393 | top: 29px; |
|
394 | 394 | right: 0; |
|
395 | 395 | margin: 0; |
|
396 | 396 | padding: 0; |
|
397 | 397 | width: 200px; |
|
398 | 398 | display: none; |
|
399 | 399 | position: absolute; |
|
400 | 400 | background: #FFFFFF; |
|
401 | 401 | border: 1px solid #666; |
|
402 | 402 | border-top: 1px solid #003367; |
|
403 | 403 | } |
|
404 | 404 | |
|
405 | 405 | #header #header-inner #quick li ul li |
|
406 | 406 | { |
|
407 | 407 | border-bottom: 1px solid #dddddd; |
|
408 | 408 | } |
|
409 | 409 | |
|
410 | 410 | #header #header-inner #quick li ul li.last |
|
411 | 411 | { |
|
412 | 412 | border: none; |
|
413 | 413 | } |
|
414 | 414 | |
|
415 | 415 | #header #header-inner #quick li ul li a.repos,#header #header-inner #quick li ul li a.repos:hover |
|
416 | 416 | { |
|
417 | 417 | margin: 0; |
|
418 | 418 | padding: 12px 9px 7px 28px; |
|
419 | 419 | width: 167px; |
|
420 | 420 | background: #FFFFFF url("../images/icons/folder_edit.png") no-repeat 8px 9px; |
|
421 | 421 | } |
|
422 | 422 | #header #header-inner #quick li ul li a.users,#header #header-inner #quick li ul li a.users:hover |
|
423 | 423 | { |
|
424 | 424 | margin: 0; |
|
425 | 425 | padding: 12px 9px 7px 28px; |
|
426 | 426 | width: 167px; |
|
427 | 427 | background: #FFFFFF url("../images/icons/user_edit.png") no-repeat 8px 9px; |
|
428 | 428 | } |
|
429 | 429 | #header #header-inner #quick li ul li a.settings,#header #header-inner #quick li ul li a.settings:hover |
|
430 | 430 | { |
|
431 | 431 | margin: 0; |
|
432 | 432 | padding: 12px 9px 7px 28px; |
|
433 | 433 | width: 167px; |
|
434 | 434 | background: #FFFFFF url("../images/icons/cog.png") no-repeat 8px 9px; |
|
435 | 435 | } |
|
436 | 436 | |
|
437 | 437 | #header #header-inner #quick li ul li a.permissions,#header #header-inner #quick li ul li a.permissions:hover |
|
438 | 438 | { |
|
439 | 439 | margin: 0; |
|
440 | 440 | padding: 12px 9px 7px 28px; |
|
441 | 441 | width: 167px; |
|
442 | 442 | background: #FFFFFF url("../images/icons/key.png") no-repeat 8px 9px; |
|
443 | 443 | } |
|
444 | 444 | |
|
445 | 445 | #header #header-inner #quick li ul li a |
|
446 | 446 | { |
|
447 | 447 | margin: 0; |
|
448 | 448 | padding: 7px 9px 7px 9px; |
|
449 | 449 | height: 1%; |
|
450 | 450 | width: 182px; |
|
451 | 451 | height: auto; |
|
452 | 452 | display: block; |
|
453 | 453 | float: left; |
|
454 | 454 | background: #FFFFFF; |
|
455 | 455 | color: #0066CC; |
|
456 | 456 | font-weight: normal; |
|
457 | 457 | } |
|
458 | 458 | |
|
459 | 459 | #header #header-inner #quick li ul li a:hover |
|
460 | 460 | { |
|
461 | 461 | color: #000000; |
|
462 | 462 | background: #FFFFFF; |
|
463 | 463 | } |
|
464 | 464 | |
|
465 | 465 | #header #header-inner #quick ul ul |
|
466 | 466 | { |
|
467 | 467 | top: auto; |
|
468 | 468 | } |
|
469 | 469 | |
|
470 | 470 | #header #header-inner #quick li ul ul |
|
471 | 471 | { |
|
472 | 472 | right: 200px; |
|
473 | 473 | } |
|
474 | 474 | |
|
475 | 475 | #header #header-inner #quick li:hover ul ul, |
|
476 | 476 | #header #header-inner #quick li:hover ul ul ul, |
|
477 | 477 | #header #header-inner #quick li:hover ul ul ul ul |
|
478 | 478 | { |
|
479 | 479 | display: none; |
|
480 | 480 | } |
|
481 | 481 | |
|
482 | 482 | #header #header-inner #quick li:hover ul, |
|
483 | 483 | #header #header-inner #quick li li:hover ul, |
|
484 | 484 | #header #header-inner #quick li li li:hover ul, |
|
485 | 485 | #header #header-inner #quick li li li li:hover ul |
|
486 | 486 | { |
|
487 | 487 | display: block; |
|
488 | 488 | } |
|
489 | 489 | |
|
490 | 490 | /* ----------------------------------------------------------- |
|
491 | 491 | header corners |
|
492 | 492 | ----------------------------------------------------------- */ |
|
493 | 493 | |
|
494 | 494 | #header #header-inner div.corner |
|
495 | 495 | { |
|
496 | 496 | height: 6px; |
|
497 | 497 | width: 6px; |
|
498 | 498 | position: absolute; |
|
499 | 499 | background: url("../images/colors/blue/header_inner_corners.png") no-repeat; |
|
500 | 500 | } |
|
501 | 501 | |
|
502 | 502 | #header #header-inner div.tl |
|
503 | 503 | { |
|
504 | 504 | top: 0; |
|
505 | 505 | left: 0; |
|
506 | 506 | background-position: 0 0; |
|
507 | 507 | } |
|
508 | 508 | |
|
509 | 509 | #header #header-inner div.tr |
|
510 | 510 | { |
|
511 | 511 | top: 0; |
|
512 | 512 | right: 0; |
|
513 | 513 | background-position: -6px 0; |
|
514 | 514 | } |
|
515 | 515 | |
|
516 | 516 | /* ----------------------------------------------------------- |
|
517 | 517 | content |
|
518 | 518 | ----------------------------------------------------------- */ |
|
519 | 519 | |
|
520 | 520 | #content |
|
521 | 521 | { |
|
522 | 522 | margin: 10px 0 0 0; |
|
523 | 523 | padding: 0; |
|
524 | 524 | min-height: 100%; |
|
525 | 525 | clear: both; |
|
526 | 526 | overflow: hidden; |
|
527 | 527 | background: url("../images/content.png") repeat-y top left; |
|
528 | 528 | } |
|
529 | 529 | |
|
530 | 530 | /* ----------------------------------------------------------- |
|
531 | 531 | content -> left |
|
532 | 532 | ----------------------------------------------------------- */ |
|
533 | 533 | |
|
534 | 534 | #content #left |
|
535 | 535 | { |
|
536 | 536 | left: 0; |
|
537 | 537 | width: 280px; |
|
538 | 538 | position: absolute; |
|
539 | 539 | } |
|
540 | 540 | |
|
541 | 541 | /* ----------------------------------------------------------- |
|
542 | 542 | content -> left -> menu |
|
543 | 543 | ----------------------------------------------------------- */ |
|
544 | 544 | |
|
545 | 545 | #content #left #menu |
|
546 | 546 | { |
|
547 | 547 | margin: 5px 10px 0 60px; |
|
548 | 548 | padding: 0; |
|
549 | 549 | clear: both; |
|
550 | 550 | overflow: hidden; |
|
551 | 551 | } |
|
552 | 552 | |
|
553 | 553 | /* ----------------------------------------------------------- |
|
554 | 554 | content -> left -> menu / heading |
|
555 | 555 | ----------------------------------------------------------- */ |
|
556 | 556 | |
|
557 | 557 | #content #left #menu h6 |
|
558 | 558 | { |
|
559 | 559 | margin: 5px 0 0 0; |
|
560 | 560 | padding: 0; |
|
561 | 561 | clear: both; |
|
562 | 562 | overflow: hidden; |
|
563 | 563 | background: #dfdfdf url("../images/menu.png") repeat-x; |
|
564 | 564 | color: #6e6e6e; |
|
565 | 565 | } |
|
566 | 566 | |
|
567 | 567 | #content #left #menu h6 a |
|
568 | 568 | { |
|
569 | 569 | margin: 0; |
|
570 | 570 | padding: 0; |
|
571 | 571 | height: 1%; |
|
572 | 572 | display: block; |
|
573 | 573 | clear: both; |
|
574 | 574 | overflow: hidden; |
|
575 | 575 | background: url("../images/menu_l.png") no-repeat top left; |
|
576 | 576 | color: #6e6e6e; |
|
577 | 577 | text-decoration: none; |
|
578 | 578 | } |
|
579 | 579 | |
|
580 | 580 | #content #left #menu h6 span |
|
581 | 581 | { |
|
582 | 582 | margin: 0; |
|
583 | 583 | padding: 9px 10px 10px 10px; |
|
584 | 584 | height: 1%; |
|
585 | 585 | display: block; |
|
586 | 586 | background: url("../images/menu_r.png") no-repeat top right; |
|
587 | 587 | } |
|
588 | 588 | |
|
589 | 589 | #content #left #menu h6.selected |
|
590 | 590 | { |
|
591 | 591 | background: #00376e url("../images/colors/blue/menu_selected.png") repeat-x; |
|
592 | 592 | color: #FFFFFF; |
|
593 | 593 | } |
|
594 | 594 | |
|
595 | 595 | #content #left #menu h6.selected a |
|
596 | 596 | { |
|
597 | 597 | background: url("../images/colors/blue/menu_l_selected.png") no-repeat top left; |
|
598 | 598 | color: #ffffff; |
|
599 | 599 | } |
|
600 | 600 | |
|
601 | 601 | #content #left #menu h6.selected span |
|
602 | 602 | { |
|
603 | 603 | background: url("../images/colors/blue/menu_r_selected.png") no-repeat top right; |
|
604 | 604 | } |
|
605 | 605 | |
|
606 | 606 | /* ----------------------------------------------------------- |
|
607 | 607 | content -> left -> menu / links |
|
608 | 608 | ----------------------------------------------------------- */ |
|
609 | 609 | |
|
610 | 610 | #content #left #menu ul |
|
611 | 611 | { |
|
612 | 612 | margin: 0; |
|
613 | 613 | padding: 0; |
|
614 | 614 | background: #376ea6; |
|
615 | 615 | } |
|
616 | 616 | |
|
617 | 617 | #content #left #menu ul.opened |
|
618 | 618 | { |
|
619 | 619 | display: block; |
|
620 | 620 | } |
|
621 | 621 | |
|
622 | 622 | #content #left #menu ul.closed |
|
623 | 623 | { |
|
624 | 624 | display: none; |
|
625 | 625 | } |
|
626 | 626 | |
|
627 | 627 | #content #left #menu li |
|
628 | 628 | { |
|
629 | 629 | margin: 0; |
|
630 | 630 | padding: 0; |
|
631 | 631 | clear: both; |
|
632 | 632 | overflow: hidden; |
|
633 | 633 | list-style: none; |
|
634 | 634 | border-bottom: 1px solid #5f8bb7; |
|
635 | 635 | color: #ffffff; |
|
636 | 636 | } |
|
637 | 637 | |
|
638 | 638 | #content #left #menu li a |
|
639 | 639 | { |
|
640 | 640 | margin: 0 0 0 6px; |
|
641 | 641 | padding: 8px 0 8px 18px; |
|
642 | 642 | height: 1%; |
|
643 | 643 | display: block; |
|
644 | 644 | float: left; |
|
645 | 645 | background: url("../images/colors/colors/blue/menu_arrow.png") no-repeat 0 9px; |
|
646 | 646 | color: #ffffff; |
|
647 | 647 | text-decoration: none; |
|
648 | 648 | } |
|
649 | 649 | |
|
650 | 650 | #content #left #menu li a:hover |
|
651 | 651 | { |
|
652 | 652 | color: #b9dcff; |
|
653 | 653 | } |
|
654 | 654 | |
|
655 | 655 | /* ----------------------------------------------------------- |
|
656 | 656 | content -> left -> menu / collapsible |
|
657 | 657 | ----------------------------------------------------------- */ |
|
658 | 658 | |
|
659 | 659 | #content #left #menu li.collapsible |
|
660 | 660 | { |
|
661 | 661 | background: url("../images/colors/blue/menu_border.png") no-repeat top left; |
|
662 | 662 | } |
|
663 | 663 | |
|
664 | 664 | #content #left #menu li.collapsible a |
|
665 | 665 | { |
|
666 | 666 | margin: 0 0 0 6px; |
|
667 | 667 | padding: 8px 0 8px 0; |
|
668 | 668 | height: 1%; |
|
669 | 669 | display: block; |
|
670 | 670 | background: transparent; |
|
671 | 671 | float: left; |
|
672 | 672 | font-weight: bold; |
|
673 | 673 | } |
|
674 | 674 | |
|
675 | 675 | #content #left #menu li.collapsible a.plus |
|
676 | 676 | { |
|
677 | 677 | margin: 0; |
|
678 | 678 | padding: 8px 0 9px 24px; |
|
679 | 679 | height: 10px; |
|
680 | 680 | width: 10px; |
|
681 | 681 | display: block; |
|
682 | 682 | float: left; |
|
683 | 683 | background: url("../images/menu_plus.png") no-repeat 5px 10px; |
|
684 | 684 | border: none; |
|
685 | 685 | } |
|
686 | 686 | |
|
687 | 687 | #content #left #menu li.collapsible a.minus |
|
688 | 688 | { |
|
689 | 689 | margin: 0; |
|
690 | 690 | padding: 8px 0 9px 24px; |
|
691 | 691 | height: 10px; |
|
692 | 692 | width: 10px; |
|
693 | 693 | display: block; |
|
694 | 694 | float: left; |
|
695 | 695 | background: url("../images/menu_minus.png") no-repeat 5px 10px; |
|
696 | 696 | border: none; |
|
697 | 697 | } |
|
698 | 698 | |
|
699 | 699 | #content #left #menu li ul |
|
700 | 700 | { |
|
701 | 701 | margin: 0; |
|
702 | 702 | padding: 0; |
|
703 | 703 | border-left: 18px solid #285889; |
|
704 | 704 | } |
|
705 | 705 | |
|
706 | 706 | #content #left #menu li ul.expanded |
|
707 | 707 | { |
|
708 | 708 | display: block; |
|
709 | 709 | } |
|
710 | 710 | |
|
711 | 711 | #content #left #menu li ul.collapsed |
|
712 | 712 | { |
|
713 | 713 | display: none; |
|
714 | 714 | } |
|
715 | 715 | |
|
716 | 716 | #content #left #menu li ul li |
|
717 | 717 | { |
|
718 | 718 | margin: 0; |
|
719 | 719 | padding: 0; |
|
720 | 720 | clear: both; |
|
721 | 721 | overflow: hidden; |
|
722 | 722 | list-style: none; |
|
723 | 723 | border-bottom: 1px solid #5f8bb7; |
|
724 | 724 | color: #ffffff; |
|
725 | 725 | } |
|
726 | 726 | |
|
727 | 727 | #content #left #menu li.collapsible ul li a |
|
728 | 728 | { |
|
729 | 729 | font-weight: normal; |
|
730 | 730 | } |
|
731 | 731 | |
|
732 | 732 | #content #left #menu li.last |
|
733 | 733 | { |
|
734 | 734 | border-bottom: none; |
|
735 | 735 | } |
|
736 | 736 | |
|
737 | 737 | /* ----------------------------------------------------------- |
|
738 | 738 | content -> left -> date picker |
|
739 | 739 | ----------------------------------------------------------- */ |
|
740 | 740 | |
|
741 | 741 | #content #left #date-picker |
|
742 | 742 | { |
|
743 | 743 | margin: 10px 10px 0 60px; |
|
744 | 744 | padding: 0; |
|
745 | 745 | clear: both; |
|
746 | 746 | overflow: hidden; |
|
747 | 747 | } |
|
748 | 748 | |
|
749 | 749 | #content #left #date-picker .ui-datepicker |
|
750 | 750 | { |
|
751 | 751 | width: auto; |
|
752 | 752 | padding: 0; |
|
753 | 753 | clear: both; |
|
754 | 754 | overflow: hidden; |
|
755 | 755 | background: #FFFFFF; |
|
756 | 756 | border: 1px solid #d1d1d1; |
|
757 | 757 | } |
|
758 | 758 | |
|
759 | 759 | #content #left #date-picker .ui-datepicker .ui-datepicker-header |
|
760 | 760 | { |
|
761 | 761 | padding: 5px 0; |
|
762 | 762 | } |
|
763 | 763 | |
|
764 | 764 | #content #left #date-picker .ui-datepicker .ui-datepicker-prev |
|
765 | 765 | { |
|
766 | 766 | top: 5px; |
|
767 | 767 | left: 4px; |
|
768 | 768 | } |
|
769 | 769 | |
|
770 | 770 | #content #left #date-picker .ui-datepicker .ui-datepicker-next |
|
771 | 771 | { |
|
772 | 772 | top: 5px; |
|
773 | 773 | right: 4px; |
|
774 | 774 | } |
|
775 | 775 | |
|
776 | 776 | #content #left #date-picker .ui-datepicker .ui-datepicker-prev-hover |
|
777 | 777 | { |
|
778 | 778 | top: 5px; |
|
779 | 779 | left: 4px; |
|
780 | 780 | } |
|
781 | 781 | |
|
782 | 782 | #content #left #date-picker .ui-datepicker .ui-datepicker-next-hover |
|
783 | 783 | { |
|
784 | 784 | top: 5px; |
|
785 | 785 | right: 4px; |
|
786 | 786 | } |
|
787 | 787 | |
|
788 | 788 | /* ----------------------------------------------------------- |
|
789 | 789 | content -> right |
|
790 | 790 | ----------------------------------------------------------- */ |
|
791 | 791 | |
|
792 | 792 | #content #right |
|
793 | 793 | { |
|
794 | 794 | margin: 0 60px 10px 290px; |
|
795 | 795 | } |
|
796 | 796 | |
|
797 | 797 | /* ----------------------------------------------------------- |
|
798 | 798 | content -> right -> box |
|
799 | 799 | ----------------------------------------------------------- */ |
|
800 | 800 | |
|
801 | 801 | #content div.box |
|
802 | 802 | { |
|
803 | 803 | margin: 0 0 10px 0; |
|
804 | 804 | padding: 0 0 10px 0; |
|
805 | 805 | clear: both; |
|
806 | 806 | overflow: hidden; |
|
807 | 807 | background: #ffffff; |
|
808 | 808 | } |
|
809 | 809 | |
|
810 | 810 | #content div.box-left |
|
811 | 811 | { |
|
812 | 812 | margin: 0 0 10px; |
|
813 | 813 | width: 49%; |
|
814 | 814 | clear: none; |
|
815 | 815 | float: left; |
|
816 | 816 | } |
|
817 | 817 | |
|
818 | 818 | #content div.box-right |
|
819 | 819 | { |
|
820 | 820 | margin: 0 0 10px; |
|
821 | 821 | width: 49%; |
|
822 | 822 | clear: none; |
|
823 | 823 | float: right; |
|
824 | 824 | } |
|
825 | 825 | |
|
826 | 826 | /* ----------------------------------------------------------- |
|
827 | 827 | content -> right -> box / title |
|
828 | 828 | ----------------------------------------------------------- */ |
|
829 | 829 | |
|
830 | 830 | #content div.box div.title |
|
831 | 831 | { |
|
832 | 832 | margin: 0 0 20px 0; |
|
833 | 833 | padding: 0; |
|
834 | 834 | clear: both; |
|
835 | 835 | overflow: hidden; |
|
836 | 836 | background: #336699 url("../images/colors/blue/title.png") repeat-x; |
|
837 | 837 | } |
|
838 | 838 | |
|
839 | 839 | #content div.box div.title h5 |
|
840 | 840 | { |
|
841 | 841 | margin: 0; |
|
842 | 842 | padding: 11px 0 11px 10px; |
|
843 | 843 | float: left; |
|
844 | 844 | border: none; |
|
845 | 845 | color: #ffffff; |
|
846 | 846 | text-transform: uppercase; |
|
847 | 847 | } |
|
848 | 848 | |
|
849 | 849 | #content div.box div.title ul.links |
|
850 | 850 | { |
|
851 | 851 | margin: 0; |
|
852 | 852 | padding: 0; |
|
853 | 853 | float: right; |
|
854 | 854 | } |
|
855 | 855 | |
|
856 | 856 | #content div.box div.title ul.links li |
|
857 | 857 | { |
|
858 | 858 | margin: 0; |
|
859 | 859 | padding: 0; |
|
860 | 860 | list-style: none; |
|
861 | 861 | float: left; |
|
862 | 862 | } |
|
863 | 863 | |
|
864 | 864 | #content div.box div.title ul.links li a |
|
865 | 865 | { |
|
866 | 866 | margin: 0; |
|
867 | 867 | padding: 13px 16px 12px 16px; |
|
868 | 868 | height: 1%; |
|
869 | 869 | display: block; |
|
870 | 870 | float: left; |
|
871 | 871 | background: url("../images/colors/blue/title_link.png") no-repeat top left; |
|
872 | 872 | border-left: 1px solid #316293; |
|
873 | 873 | color: #ffffff; |
|
874 | 874 | font-size: 11px; |
|
875 | 875 | font-weight: bold; |
|
876 | 876 | text-decoration: none; |
|
877 | 877 | } |
|
878 | 878 | |
|
879 | 879 | #content div.box div.title ul.links li a:hover |
|
880 | 880 | { |
|
881 | 881 | color: #bfe3ff; |
|
882 | 882 | } |
|
883 | 883 | |
|
884 | 884 | #content div.box div.title ul.links li.ui-tabs-selected a |
|
885 | 885 | { |
|
886 | 886 | background: url("../../../resources/images/colors/blue/title_tab_selected.png") no-repeat bottom center; |
|
887 | 887 | color: #bfe3ff; |
|
888 | 888 | } |
|
889 | 889 | |
|
890 | 890 | /* ----------------------------------------------------------- |
|
891 | 891 | content -> right -> box / headings |
|
892 | 892 | ----------------------------------------------------------- */ |
|
893 | 893 | |
|
894 | 894 | #content div.box h1, |
|
895 | 895 | #content div.box h2, |
|
896 | 896 | #content div.box h3, |
|
897 | 897 | #content div.box h4, |
|
898 | 898 | #content div.box h5, |
|
899 | 899 | #content div.box h6 |
|
900 | 900 | { |
|
901 | 901 | margin: 10px 20px 10px 20px; |
|
902 | 902 | padding: 0 0 15px 0; |
|
903 | 903 | clear: both; |
|
904 | 904 | overflow: hidden; |
|
905 | 905 | border-bottom: 1px solid #DDDDDD; |
|
906 | 906 | } |
|
907 | 907 | |
|
908 | 908 | /* ----------------------------------------------------------- |
|
909 | 909 | content -> right -> box / paragraphs |
|
910 | 910 | ----------------------------------------------------------- */ |
|
911 | 911 | |
|
912 | 912 | #content div.box p |
|
913 | 913 | { |
|
914 | 914 | margin: 0 24px 10px 24px; |
|
915 | 915 | padding: 0; |
|
916 | 916 | color: #5f5f5f; |
|
917 | 917 | font-size: 12px; |
|
918 | 918 | line-height: 150%; |
|
919 | 919 | } |
|
920 | 920 | |
|
921 | 921 | #content div.box blockquote |
|
922 | 922 | { |
|
923 | 923 | margin: 0 34px 0 34px; |
|
924 | 924 | padding: 0 0 0 14px; |
|
925 | 925 | border-left: 4px solid #DDDDDD; |
|
926 | 926 | color: #5f5f5f; |
|
927 | 927 | font-size: 11px; |
|
928 | 928 | line-height: 150%; |
|
929 | 929 | } |
|
930 | 930 | |
|
931 | 931 | #content div.box blockquote p |
|
932 | 932 | { |
|
933 | 933 | margin: 10px 0 10px 0; |
|
934 | 934 | padding: 0; |
|
935 | 935 | } |
|
936 | 936 | |
|
937 | 937 | /* ----------------------------------------------------------- |
|
938 | 938 | content -> right -> box / lists |
|
939 | 939 | ----------------------------------------------------------- */ |
|
940 | 940 | |
|
941 | 941 | #content div.box dl |
|
942 | 942 | { |
|
943 | 943 | margin: 10px 24px 10px 24px; |
|
944 | 944 | } |
|
945 | 945 | |
|
946 | 946 | #content div.box dt |
|
947 | 947 | { |
|
948 | 948 | margin: 0; |
|
949 | 949 | font-size: 12px; |
|
950 | 950 | } |
|
951 | 951 | |
|
952 | 952 | #content div.box dd |
|
953 | 953 | { |
|
954 | 954 | margin: 0; |
|
955 | 955 | padding: 8px 0 8px 15px; |
|
956 | 956 | font-size: 12px; |
|
957 | 957 | } |
|
958 | 958 | |
|
959 | 959 | #content div.box ul.left |
|
960 | 960 | { |
|
961 | 961 | float: left; |
|
962 | 962 | } |
|
963 | 963 | |
|
964 | 964 | #content div.box ol.left |
|
965 | 965 | { |
|
966 | 966 | float: left; |
|
967 | 967 | } |
|
968 | 968 | |
|
969 | 969 | #content div.box li |
|
970 | 970 | { |
|
971 | 971 | padding: 4px 0 4px 0; |
|
972 | 972 | font-size: 12px; |
|
973 | 973 | } |
|
974 | 974 | |
|
975 | 975 | #content div.box ol.lower-roman, |
|
976 | 976 | #content div.box ol.upper-roman |
|
977 | 977 | { |
|
978 | 978 | margin: 10px 24px 10px 44px; |
|
979 | 979 | } |
|
980 | 980 | |
|
981 | 981 | #content div.box ol.lower-alpha, |
|
982 | 982 | #content div.box ol.upper-alpha |
|
983 | 983 | { |
|
984 | 984 | margin: 10px 24px 10px 44px; |
|
985 | 985 | } |
|
986 | 986 | |
|
987 | 987 | #content div.box ol.decimal |
|
988 | 988 | { |
|
989 | 989 | margin: 10px 24px 10px 44px; |
|
990 | 990 | } |
|
991 | 991 | |
|
992 | 992 | #content div.box ul.disc, |
|
993 | 993 | #content div.box ul.circle |
|
994 | 994 | { |
|
995 | 995 | margin: 10px 24px 10px 38px; |
|
996 | 996 | } |
|
997 | 997 | |
|
998 | 998 | #content div.box ul.square |
|
999 | 999 | { |
|
1000 | 1000 | margin: 10px 24px 10px 40px; |
|
1001 | 1001 | } |
|
1002 | 1002 | |
|
1003 | 1003 | /* ----------------------------------------------------------- |
|
1004 | 1004 | content -> right -> box / images |
|
1005 | 1005 | ----------------------------------------------------------- */ |
|
1006 | 1006 | |
|
1007 | 1007 | #content div.box img.left |
|
1008 | 1008 | { |
|
1009 | 1009 | margin: 10px 10px 10px 0; |
|
1010 | 1010 | border: none; |
|
1011 | 1011 | float: left; |
|
1012 | 1012 | } |
|
1013 | 1013 | |
|
1014 | 1014 | #content div.box img.right |
|
1015 | 1015 | { |
|
1016 | 1016 | margin: 10px 0 10px 10px; |
|
1017 | 1017 | border: none; |
|
1018 | 1018 | float: right; |
|
1019 | 1019 | } |
|
1020 | 1020 | |
|
1021 | 1021 | /* ----------------------------------------------------------- |
|
1022 | 1022 | content -> right -> box / messages |
|
1023 | 1023 | ----------------------------------------------------------- */ |
|
1024 | 1024 | |
|
1025 | 1025 | #content div.box div.messages |
|
1026 | 1026 | { |
|
1027 | 1027 | margin: 0 20px 0 20px; |
|
1028 | 1028 | padding: 0; |
|
1029 | 1029 | clear: both; |
|
1030 | 1030 | overflow: hidden; |
|
1031 | 1031 | } |
|
1032 | 1032 | |
|
1033 | 1033 | #content div.box div.message |
|
1034 | 1034 | { |
|
1035 | 1035 | margin: 0 0 10px 0; |
|
1036 | 1036 | padding: 0; |
|
1037 | 1037 | clear: both; |
|
1038 | 1038 | overflow: hidden; |
|
1039 | 1039 | } |
|
1040 | 1040 | |
|
1041 | 1041 | #content div.box div.message div.image |
|
1042 | 1042 | { |
|
1043 | 1043 | margin: 9px 0 0 5px; |
|
1044 | 1044 | padding: 6px; |
|
1045 | 1045 | float: left; |
|
1046 | 1046 | } |
|
1047 | 1047 | |
|
1048 | 1048 | #content div.box div.message div.image img |
|
1049 | 1049 | { |
|
1050 | 1050 | margin: 0; |
|
1051 | 1051 | vertical-align: middle; |
|
1052 | 1052 | } |
|
1053 | 1053 | |
|
1054 | 1054 | #content div.box div.message div.text |
|
1055 | 1055 | { |
|
1056 | 1056 | margin: 0; |
|
1057 | 1057 | padding: 9px 6px 9px 6px; |
|
1058 | 1058 | float: left; |
|
1059 | 1059 | } |
|
1060 | 1060 | |
|
1061 | 1061 | #content div.box div.message div.dismiss |
|
1062 | 1062 | { |
|
1063 | 1063 | margin: 0; |
|
1064 | 1064 | padding: 0; |
|
1065 | 1065 | float: right; |
|
1066 | 1066 | } |
|
1067 | 1067 | |
|
1068 | 1068 | #content div.box div.message div.dismiss a |
|
1069 | 1069 | { |
|
1070 | 1070 | margin: 15px 14px 0 0; |
|
1071 | 1071 | padding: 0; |
|
1072 | 1072 | height: 16px; |
|
1073 | 1073 | width: 16px; |
|
1074 | 1074 | display: block; |
|
1075 | 1075 | background: url("../images/icons/cross.png") no-repeat; |
|
1076 | 1076 | } |
|
1077 | 1077 | |
|
1078 | 1078 | #content div.box div.message div.text h1, |
|
1079 | 1079 | #content div.box div.message div.text h2, |
|
1080 | 1080 | #content div.box div.message div.text h3, |
|
1081 | 1081 | #content div.box div.message div.text h4, |
|
1082 | 1082 | #content div.box div.message div.text h5, |
|
1083 | 1083 | #content div.box div.message div.text h6 |
|
1084 | 1084 | { |
|
1085 | 1085 | margin: 0; |
|
1086 | 1086 | padding: 0px; |
|
1087 | 1087 | border: none; |
|
1088 | 1088 | } |
|
1089 | 1089 | |
|
1090 | 1090 | #content div.box div.message div.text span |
|
1091 | 1091 | { |
|
1092 | 1092 | margin: 0; |
|
1093 | 1093 | padding: 5px 0 0 0; |
|
1094 | 1094 | height: 1%; |
|
1095 | 1095 | display: block; |
|
1096 | 1096 | } |
|
1097 | 1097 | |
|
1098 | 1098 | #content div.box div.message-error |
|
1099 | 1099 | { |
|
1100 | 1100 | height: 1%; |
|
1101 | 1101 | clear: both; |
|
1102 | 1102 | overflow: hidden; |
|
1103 | 1103 | background: #FBE3E4; |
|
1104 | 1104 | border: 1px solid #FBC2C4; |
|
1105 | 1105 | color: #860006; |
|
1106 | 1106 | } |
|
1107 | 1107 | |
|
1108 | 1108 | #content div.box div.message-error h6 |
|
1109 | 1109 | { |
|
1110 | 1110 | color: #860006; |
|
1111 | 1111 | } |
|
1112 | 1112 | |
|
1113 | 1113 | #content div.box div.message-warning |
|
1114 | 1114 | { |
|
1115 | 1115 | height: 1%; |
|
1116 | 1116 | clear: both; |
|
1117 | 1117 | overflow: hidden; |
|
1118 | 1118 | background: #FFF6BF; |
|
1119 | 1119 | border: 1px solid #FFD324; |
|
1120 | 1120 | color: #5f5200; |
|
1121 | 1121 | } |
|
1122 | 1122 | |
|
1123 | 1123 | #content div.box div.message-warning h6 |
|
1124 | 1124 | { |
|
1125 | 1125 | color: #5f5200; |
|
1126 | 1126 | } |
|
1127 | 1127 | |
|
1128 | 1128 | #content div.box div.message-notice |
|
1129 | 1129 | { |
|
1130 | 1130 | height: 1%; |
|
1131 | 1131 | clear: both; |
|
1132 | 1132 | overflow: hidden; |
|
1133 | 1133 | background: #8FBDE0; |
|
1134 | 1134 | border: 1px solid #6BACDE; |
|
1135 | 1135 | color: #003863; |
|
1136 | 1136 | } |
|
1137 | 1137 | |
|
1138 | 1138 | #content div.box div.message-notice h6 |
|
1139 | 1139 | { |
|
1140 | 1140 | color: #003863; |
|
1141 | 1141 | } |
|
1142 | 1142 | |
|
1143 | 1143 | #content div.box div.message-success |
|
1144 | 1144 | { |
|
1145 | 1145 | height: 1%; |
|
1146 | 1146 | clear: both; |
|
1147 | 1147 | overflow: hidden; |
|
1148 | 1148 | background: #E6EFC2; |
|
1149 | 1149 | border: 1px solid #C6D880; |
|
1150 | 1150 | color: #4e6100; |
|
1151 | 1151 | } |
|
1152 | 1152 | |
|
1153 | 1153 | #content div.box div.message-success h6 |
|
1154 | 1154 | { |
|
1155 | 1155 | color: #4e6100; |
|
1156 | 1156 | } |
|
1157 | 1157 | |
|
1158 | 1158 | /* ----------------------------------------------------------- |
|
1159 | 1159 | content -> right -> box / forms |
|
1160 | 1160 | ----------------------------------------------------------- */ |
|
1161 | 1161 | |
|
1162 | 1162 | #content div.box div.form |
|
1163 | 1163 | { |
|
1164 | 1164 | margin: 0; |
|
1165 | 1165 | padding: 0 20px 10px 20px; |
|
1166 | 1166 | clear: both; |
|
1167 | 1167 | overflow: hidden; |
|
1168 | 1168 | } |
|
1169 | 1169 | |
|
1170 | 1170 | #content div.box div.form div.fields |
|
1171 | 1171 | { |
|
1172 | 1172 | margin: 0; |
|
1173 | 1173 | padding: 0; |
|
1174 | 1174 | clear: both; |
|
1175 | 1175 | overflow: hidden; |
|
1176 | 1176 | } |
|
1177 | 1177 | |
|
1178 | 1178 | #content div.box div.form div.fields div.field |
|
1179 | 1179 | { |
|
1180 | 1180 | margin: 0; |
|
1181 | 1181 | padding: 10px 0 10px 0; |
|
1182 | 1182 | height: 1%; |
|
1183 | 1183 | border-bottom: 1px solid #DDDDDD; |
|
1184 | 1184 | clear: both; |
|
1185 | 1185 | overflow: hidden; |
|
1186 | 1186 | } |
|
1187 | 1187 | |
|
1188 | 1188 | #content div.box div.form div.fields div.field-first |
|
1189 | 1189 | { |
|
1190 | 1190 | padding: 0 0 10px 0; |
|
1191 | 1191 | } |
|
1192 | 1192 | |
|
1193 | 1193 | #content div.box div.form div.fields div.field span.error-message |
|
1194 | 1194 | { |
|
1195 | 1195 | margin: 8px 0 0 0; |
|
1196 | 1196 | padding: 0; |
|
1197 | 1197 | height: 1%; |
|
1198 | 1198 | display: block; |
|
1199 | 1199 | color: #FF0000; |
|
1200 | 1200 | } |
|
1201 | 1201 | |
|
1202 | 1202 | #content div.box div.form div.fields div.field span.success |
|
1203 | 1203 | { |
|
1204 | 1204 | margin: 8px 0 0 0; |
|
1205 | 1205 | padding: 0; |
|
1206 | 1206 | height: 1%; |
|
1207 | 1207 | display: block; |
|
1208 | 1208 | color: #316309; |
|
1209 | 1209 | } |
|
1210 | 1210 | |
|
1211 | 1211 | /* ----------------------------------------------------------- |
|
1212 | 1212 | content -> right -> forms -> labels |
|
1213 | 1213 | ----------------------------------------------------------- */ |
|
1214 | 1214 | |
|
1215 | 1215 | #content div.box div.form div.fields div.field div.label |
|
1216 | 1216 | { |
|
1217 | 1217 | left: 310px; |
|
1218 | 1218 | margin: 0; |
|
1219 | 1219 | padding: 8px 0 0 5px; |
|
1220 | 1220 | width: auto; |
|
1221 | 1221 | position: absolute; |
|
1222 | 1222 | } |
|
1223 | 1223 | |
|
1224 | 1224 | #content div.box-left div.form div.fields div.field div.label, |
|
1225 | 1225 | #content div.box-right div.form div.fields div.field div.label |
|
1226 | 1226 | { |
|
1227 | 1227 | left: 0; |
|
1228 | 1228 | margin: 0; |
|
1229 | 1229 | padding: 0 0 8px 0; |
|
1230 | 1230 | width: auto; |
|
1231 | 1231 | position: relative; |
|
1232 | 1232 | } |
|
1233 | 1233 | |
|
1234 | 1234 | /* ----------------------------------------------------------- |
|
1235 | 1235 | content -> right -> forms -> label (select) |
|
1236 | 1236 | ----------------------------------------------------------- */ |
|
1237 | 1237 | |
|
1238 | 1238 | #content div.box div.form div.fields div.field div.label-select |
|
1239 | 1239 | { |
|
1240 | 1240 | padding: 2px 0 0 5px; |
|
1241 | 1241 | } |
|
1242 | 1242 | |
|
1243 | 1243 | #content div.box-left div.form div.fields div.field div.label-select, |
|
1244 | 1244 | #content div.box-right div.form div.fields div.field div.label-select |
|
1245 | 1245 | { |
|
1246 | 1246 | padding: 0 0 8px 0; |
|
1247 | 1247 | } |
|
1248 | 1248 | |
|
1249 | 1249 | /* ----------------------------------------------------------- |
|
1250 | 1250 | content -> right -> forms -> label (checkbox) |
|
1251 | 1251 | ----------------------------------------------------------- */ |
|
1252 | 1252 | |
|
1253 | 1253 | #content div.box div.form div.fields div.field div.label-checkbox |
|
1254 | 1254 | { |
|
1255 | 1255 | padding:0 0 0 5px !important; |
|
1256 | 1256 | } |
|
1257 | 1257 | |
|
1258 | 1258 | /* ----------------------------------------------------------- |
|
1259 | 1259 | content -> right -> forms -> label (radio) |
|
1260 | 1260 | ----------------------------------------------------------- */ |
|
1261 | 1261 | |
|
1262 | 1262 | #content div.box div.form div.fields div.field div.label-radio |
|
1263 | 1263 | { |
|
1264 | 1264 | padding:0 0 0 5px !important; |
|
1265 | 1265 | } |
|
1266 | 1266 | |
|
1267 | 1267 | /* ----------------------------------------------------------- |
|
1268 | 1268 | content -> right -> forms -> label (textarea) |
|
1269 | 1269 | ----------------------------------------------------------- */ |
|
1270 | 1270 | |
|
1271 | 1271 | #content div.box div.form div.fields div.field div.label-textarea |
|
1272 | 1272 | { |
|
1273 | 1273 | padding:0 0 0 5px !important; |
|
1274 | 1274 | } |
|
1275 | 1275 | |
|
1276 | 1276 | #content div.box-left div.form div.fields div.field div.label-textarea, |
|
1277 | 1277 | #content div.box-right div.form div.fields div.field div.label-textarea |
|
1278 | 1278 | { |
|
1279 | 1279 | padding: 0 0 8px 0 !important; |
|
1280 | 1280 | } |
|
1281 | 1281 | |
|
1282 | 1282 | /* ----------------------------------------------------------- |
|
1283 | 1283 | content -> right -> forms -> labels (label) |
|
1284 | 1284 | ----------------------------------------------------------- */ |
|
1285 | 1285 | |
|
1286 | 1286 | #content div.box div.form div.fields div.field div.label label |
|
1287 | 1287 | { |
|
1288 | 1288 | color: #393939; |
|
1289 | 1289 | font-weight: bold; |
|
1290 | 1290 | } |
|
1291 | 1291 | |
|
1292 | 1292 | #content div.box div.form div.fields div.field div.label span |
|
1293 | 1293 | { |
|
1294 | 1294 | margin: 0; |
|
1295 | 1295 | padding: 2px 0 0 0; |
|
1296 | 1296 | height: 1%; |
|
1297 | 1297 | display: block; |
|
1298 | 1298 | color: #363636; |
|
1299 | 1299 | } |
|
1300 | 1300 | |
|
1301 | 1301 | /* ----------------------------------------------------------- |
|
1302 | 1302 | content -> right -> forms -> input |
|
1303 | 1303 | ----------------------------------------------------------- */ |
|
1304 | 1304 | |
|
1305 | 1305 | #content div.box div.form div.fields div.field div.input |
|
1306 | 1306 | { |
|
1307 | 1307 | margin: 0 0 0 200px; |
|
1308 | 1308 | padding: 0; |
|
1309 | 1309 | } |
|
1310 | 1310 | |
|
1311 | 1311 | #content div.box-left div.form div.fields div.field div.input, |
|
1312 | 1312 | #content div.box-right div.form div.fields div.field div.input |
|
1313 | 1313 | { |
|
1314 | 1314 | margin: 0; |
|
1315 | 1315 | padding: 7px 7px 6px 7px; |
|
1316 | 1316 | border-top: 1px solid #b3b3b3; |
|
1317 | 1317 | border-left: 1px solid #b3b3b3; |
|
1318 | 1318 | border-right: 1px solid #eaeaea; |
|
1319 | 1319 | border-bottom: 1px solid #eaeaea; |
|
1320 | 1320 | } |
|
1321 | 1321 | |
|
1322 | 1322 | #content div.box div.form div.fields div.field div.input input |
|
1323 | 1323 | { |
|
1324 | 1324 | margin: 0; |
|
1325 | 1325 | padding: 7px 7px 6px 7px; |
|
1326 | 1326 | background: #FFFFFF; |
|
1327 | 1327 | border-top: 1px solid #b3b3b3; |
|
1328 | 1328 | border-left: 1px solid #b3b3b3; |
|
1329 | 1329 | border-right: 1px solid #eaeaea; |
|
1330 | 1330 | border-bottom: 1px solid #eaeaea; |
|
1331 | 1331 | color: #000000; |
|
1332 | 1332 | font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif; |
|
1333 | 1333 | font-size: 11px; |
|
1334 | float: left; | |
|
1334 | 1335 | } |
|
1335 | 1336 | |
|
1336 | 1337 | #content div.box-left div.form div.fields div.field div.input input, |
|
1337 | 1338 | #content div.box-right div.form div.fields div.field div.input input |
|
1338 | 1339 | { |
|
1339 | 1340 | width: 100%; |
|
1340 | 1341 | padding: 0; |
|
1341 | 1342 | border: none; |
|
1342 | 1343 | } |
|
1343 | 1344 | |
|
1344 | 1345 | #content div.box div.form div.fields div.field div.input input.small |
|
1345 | 1346 | { |
|
1346 | 1347 | width: 30%; |
|
1347 | 1348 | } |
|
1348 | 1349 | |
|
1349 | 1350 | #content div.box div.form div.fields div.field div.input input.medium |
|
1350 | 1351 | { |
|
1351 | 1352 | width: 55%; |
|
1352 | 1353 | } |
|
1353 | 1354 | |
|
1354 | 1355 | #content div.box div.form div.fields div.field div.input input.large |
|
1355 | 1356 | { |
|
1356 | 1357 | width: 85%; |
|
1357 | 1358 | } |
|
1358 | 1359 | |
|
1359 | 1360 | #content div.box div.form div.fields div.field div.input input.date |
|
1360 | 1361 | { |
|
1361 | 1362 | width: 177px; |
|
1362 | 1363 | } |
|
1363 | 1364 | |
|
1364 | 1365 | #content div.box div.form div.fields div.field div.input input.button |
|
1365 | 1366 | { |
|
1366 | 1367 | margin: 0; |
|
1367 | 1368 | padding: 4px 8px 4px 8px; |
|
1368 | 1369 | background: #D4D0C8; |
|
1369 | 1370 | border-top: 1px solid #FFFFFF; |
|
1370 | 1371 | border-left: 1px solid #FFFFFF; |
|
1371 | 1372 | border-right: 1px solid #404040; |
|
1372 | 1373 | border-bottom: 1px solid #404040; |
|
1373 | 1374 | color: #000000; |
|
1374 | 1375 | } |
|
1375 | 1376 | |
|
1376 | 1377 | #content div.box div.form div.fields div.field div.input input.error |
|
1377 | 1378 | { |
|
1378 | 1379 | background: #FBE3E4; |
|
1379 | 1380 | border-top: 1px solid #e1b2b3; |
|
1380 | 1381 | border-left: 1px solid #e1b2b3; |
|
1381 | 1382 | border-right: 1px solid #FBC2C4; |
|
1382 | 1383 | border-bottom: 1px solid #FBC2C4; |
|
1383 | 1384 | } |
|
1384 | 1385 | |
|
1385 | 1386 | #content div.box div.form div.fields div.field div.input input.success |
|
1386 | 1387 | { |
|
1387 | 1388 | background: #E6EFC2; |
|
1388 | 1389 | border-top: 1px solid #cebb98; |
|
1389 | 1390 | border-left: 1px solid #cebb98; |
|
1390 | 1391 | border-right: 1px solid #c6d880; |
|
1391 | 1392 | border-bottom: 1px solid #c6d880; |
|
1392 | 1393 | } |
|
1393 | 1394 | |
|
1394 | 1395 | #content div.box div.form div.fields div.field div.input img.ui-datepicker-trigger |
|
1395 | 1396 | { |
|
1396 | 1397 | margin: 0 0 0 6px; |
|
1397 | 1398 | } |
|
1398 | 1399 | |
|
1399 | 1400 | /* ----------------------------------------------------------- |
|
1400 | 1401 | content -> right -> forms -> input (file styling) |
|
1401 | 1402 | ----------------------------------------------------------- */ |
|
1402 | 1403 | |
|
1403 | 1404 | #content div.box div.form div.fields div.field div.input a.ui-input-file |
|
1404 | 1405 | { |
|
1405 | 1406 | margin: 0 0 0 6px; |
|
1406 | 1407 | padding: 0; |
|
1407 | 1408 | width: 28px; |
|
1408 | 1409 | height: 28px; |
|
1409 | 1410 | display: inline; |
|
1410 | 1411 | position: absolute; |
|
1411 | 1412 | overflow: hidden; |
|
1412 | 1413 | cursor: pointer; |
|
1413 | 1414 | background: #e5e3e3 url("../images/button_browse.png") no-repeat; |
|
1414 | 1415 | border: none; |
|
1415 | 1416 | text-decoration: none; |
|
1416 | 1417 | } |
|
1417 | 1418 | |
|
1418 | 1419 | #content div.box div.form div.fields div.field div.input a:hover.ui-input-file |
|
1419 | 1420 | { |
|
1420 | 1421 | background: #e5e3e3 url("../images/button_browse_selected.png") no-repeat; |
|
1421 | 1422 | } |
|
1422 | 1423 | |
|
1423 | 1424 | /* ----------------------------------------------------------- |
|
1424 | 1425 | content -> right -> forms -> textarea |
|
1425 | 1426 | ----------------------------------------------------------- */ |
|
1426 | 1427 | |
|
1427 | 1428 | #content div.box div.form div.fields div.field div.textarea |
|
1428 | 1429 | { |
|
1429 | 1430 | margin: 0 0 0 200px; |
|
1430 | 1431 | padding: 10px; |
|
1431 | 1432 | border-top: 1px solid #b3b3b3; |
|
1432 | 1433 | border-left: 1px solid #b3b3b3; |
|
1433 | 1434 | border-right: 1px solid #eaeaea; |
|
1434 | 1435 | border-bottom: 1px solid #eaeaea; |
|
1435 | 1436 | } |
|
1436 | 1437 | |
|
1437 | 1438 | #content div.box div.form div.fields div.field div.textarea-editor |
|
1438 | 1439 | { |
|
1439 | 1440 | padding: 0; |
|
1440 | 1441 | border: 1px solid #dddddd; |
|
1441 | 1442 | } |
|
1442 | 1443 | |
|
1443 | 1444 | #content div.box-left div.form div.fields div.field div.textarea, |
|
1444 | 1445 | #content div.box-right div.form div.fields div.field div.textarea |
|
1445 | 1446 | { |
|
1446 | 1447 | margin: 0; |
|
1447 | 1448 | } |
|
1448 | 1449 | |
|
1449 | 1450 | #content div.box div.form div.fields div.field div.textarea textarea |
|
1450 | 1451 | { |
|
1451 | 1452 | margin: 0; |
|
1452 | 1453 | padding: 0; |
|
1453 | 1454 | width: 100%; |
|
1454 | 1455 | height: 220px; |
|
1455 | 1456 | overflow: hidden; |
|
1456 | 1457 | background: #FFFFFF; |
|
1457 | 1458 | border-width: 0; |
|
1458 | 1459 | color: #000000; |
|
1459 | 1460 | font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif; |
|
1460 | 1461 | font-size: 11px; |
|
1461 | 1462 | outline: none; |
|
1462 | 1463 | } |
|
1463 | 1464 | |
|
1464 | 1465 | #content div.box-left div.form div.fields div.field div.textarea textarea, |
|
1465 | 1466 | #content div.box-right div.form div.fields div.field div.textarea textarea |
|
1466 | 1467 | { |
|
1467 | 1468 | width: 100%; |
|
1468 | 1469 | height: 100px; |
|
1469 | 1470 | } |
|
1470 | 1471 | |
|
1471 | 1472 | #content div.box div.form div.fields div.field div.textarea textarea.error |
|
1472 | 1473 | { |
|
1473 | 1474 | padding: 3px 10px 10px 23px; |
|
1474 | 1475 | background-color: #FBE3E4; |
|
1475 | 1476 | background-image: url("../../../resources/images/icons/exclamation.png"); |
|
1476 | 1477 | background-repeat: no-repeat; |
|
1477 | 1478 | background-position: 3px 3px; |
|
1478 | 1479 | border: 1px solid #FBC2C4; |
|
1479 | 1480 | } |
|
1480 | 1481 | |
|
1481 | 1482 | #content div.box div.form div.fields div.field div.textarea textarea.success |
|
1482 | 1483 | { |
|
1483 | 1484 | padding: 3px 10px 10px 23px; |
|
1484 | 1485 | background-color: #E6EFC2; |
|
1485 | 1486 | background-image: url("../../../resources/images/icons/accept.png"); |
|
1486 | 1487 | background-repeat: no-repeat; |
|
1487 | 1488 | background-position: 3px 3px; |
|
1488 | 1489 | border: 1px solid #C6D880; |
|
1489 | 1490 | } |
|
1490 | 1491 | |
|
1491 | 1492 | /* ----------------------------------------------------------- |
|
1492 | 1493 | content -> right -> forms -> textarea (tinymce editor) |
|
1493 | 1494 | ----------------------------------------------------------- */ |
|
1494 | 1495 | |
|
1495 | 1496 | #content div.box div.form div.fields div.field div.textarea table |
|
1496 | 1497 | { |
|
1497 | 1498 | margin: 0; |
|
1498 | 1499 | padding: 0; |
|
1499 | 1500 | width: 100%; |
|
1500 | 1501 | border: none; |
|
1501 | 1502 | } |
|
1502 | 1503 | |
|
1503 | 1504 | #content div.box div.form div.fields div.field div.textarea table td |
|
1504 | 1505 | { |
|
1505 | 1506 | padding: 0; |
|
1506 | 1507 | background: #DDDDDD; |
|
1507 | 1508 | border: none; |
|
1508 | 1509 | } |
|
1509 | 1510 | |
|
1510 | 1511 | #content div.box div.form div.fields div.field div.textarea table td table |
|
1511 | 1512 | { |
|
1512 | 1513 | margin: 0; |
|
1513 | 1514 | padding: 0; |
|
1514 | 1515 | width: auto; |
|
1515 | 1516 | border: none; |
|
1516 | 1517 | } |
|
1517 | 1518 | |
|
1518 | 1519 | #content div.box div.form div.fields div.field div.textarea table td table td |
|
1519 | 1520 | { |
|
1520 | 1521 | padding: 5px 5px 5px 0; |
|
1521 | 1522 | font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif; |
|
1522 | 1523 | font-size: 11px; |
|
1523 | 1524 | } |
|
1524 | 1525 | |
|
1525 | 1526 | #content div.box div.form div.fields div.field div.textarea table td table td a |
|
1526 | 1527 | { |
|
1527 | 1528 | border: none; |
|
1528 | 1529 | } |
|
1529 | 1530 | |
|
1530 | 1531 | #content div.box div.form div.fields div.field div.textarea table td table td a.mceButtonActive |
|
1531 | 1532 | { |
|
1532 | 1533 | background: #b1b1b1; |
|
1533 | 1534 | } |
|
1534 | 1535 | |
|
1535 | 1536 | /* ----------------------------------------------------------- |
|
1536 | 1537 | content -> right -> forms -> select |
|
1537 | 1538 | ----------------------------------------------------------- */ |
|
1538 | 1539 | |
|
1539 | 1540 | #content div.box div.form div.fields div.field div.select |
|
1540 | 1541 | { |
|
1541 | 1542 | margin: 0 0 0 200px; |
|
1542 | 1543 | padding: 0; |
|
1543 | 1544 | } |
|
1544 | 1545 | |
|
1545 | 1546 | #content div.box div.form div.fields div.field div.select a:hover |
|
1546 | 1547 | { |
|
1547 | 1548 | color: #000000; |
|
1548 | 1549 | text-decoration: none; |
|
1549 | 1550 | } |
|
1550 | 1551 | |
|
1551 | 1552 | #content div.box div.form div.fields div.field div.select select |
|
1552 | 1553 | { |
|
1553 | 1554 | margin: 0; |
|
1554 | 1555 | } |
|
1555 | 1556 | |
|
1556 | 1557 | /* ----------------------------------------------------------- |
|
1557 | 1558 | content -> right -> forms -> select (jquery styling) |
|
1558 | 1559 | ----------------------------------------------------------- */ |
|
1559 | 1560 | |
|
1560 | 1561 | #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus |
|
1561 | 1562 | { |
|
1562 | 1563 | border: 1px solid #666666; |
|
1563 | 1564 | } |
|
1564 | 1565 | |
|
1565 | 1566 | #content div.box div.form div.fields div.field div.select a.ui-selectmenu |
|
1566 | 1567 | { |
|
1567 | 1568 | color: #565656; |
|
1568 | 1569 | text-decoration: none; |
|
1569 | 1570 | } |
|
1570 | 1571 | |
|
1571 | 1572 | #content div.box div.form div.fields div.field div.select a.ui-selectmenu:hover |
|
1572 | 1573 | { |
|
1573 | 1574 | color: #000000; |
|
1574 | 1575 | text-decoration: none; |
|
1575 | 1576 | } |
|
1576 | 1577 | |
|
1577 | 1578 | #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus span.ui-icon |
|
1578 | 1579 | { |
|
1579 | 1580 | background-image: url(../images/ui/ui-icons_222222_256x240.png); |
|
1580 | 1581 | } |
|
1581 | 1582 | |
|
1582 | 1583 | /* ----------------------------------------------------------- |
|
1583 | 1584 | content -> right -> forms -> element focus |
|
1584 | 1585 | ----------------------------------------------------------- */ |
|
1585 | 1586 | |
|
1586 | 1587 | #content div.box div.form div.fields div.field input[type=text]:focus, |
|
1587 | 1588 | #content div.box div.form div.fields div.field input[type=password]:focus, |
|
1588 | 1589 | #content div.box div.form div.fields div.field input[type=file]:focus, |
|
1589 | 1590 | #content div.box div.form div.fields div.field textarea:focus, |
|
1590 | 1591 | #content div.box div.form div.fields div.field select:focus |
|
1591 | 1592 | { |
|
1592 | 1593 | background: #f6f6f6; |
|
1593 | 1594 | border-color: #666; |
|
1594 | 1595 | } |
|
1595 | 1596 | |
|
1596 | 1597 | /* ----------------------------------------------------------- |
|
1597 | 1598 | content -> right -> forms -> checkboxes |
|
1598 | 1599 | ----------------------------------------------------------- */ |
|
1599 | 1600 | |
|
1600 | 1601 | #content div.box div.form div.fields div.field div.checkboxes |
|
1601 | 1602 | { |
|
1602 | 1603 | margin: 0 0 0 200px; |
|
1603 | 1604 | padding: 0; |
|
1604 | 1605 | } |
|
1605 | 1606 | |
|
1606 | 1607 | #content div.box div.form div.fields div.field div.checkboxes div.checkbox |
|
1607 | 1608 | { |
|
1608 | 1609 | margin: 0; |
|
1609 | 1610 | padding: 2px 0 2px 0; |
|
1610 | 1611 | clear: both; |
|
1611 | 1612 | overflow: hidden; |
|
1612 | 1613 | } |
|
1613 | 1614 | |
|
1614 | 1615 | #content div.box div.form div.fields div.field div.checkboxes div.checkbox input |
|
1615 | 1616 | { |
|
1616 | 1617 | margin: 0; |
|
1617 | 1618 | float: left; |
|
1618 | 1619 | } |
|
1619 | 1620 | |
|
1620 | 1621 | #content div.box div.form div.fields div.field div.checkboxes div.checkbox label |
|
1621 | 1622 | { |
|
1622 | 1623 | margin: 3px 0 0 4px; |
|
1623 | 1624 | height: 1%; |
|
1624 | 1625 | display: block; |
|
1625 | 1626 | float: left; |
|
1626 | 1627 | } |
|
1627 | 1628 | |
|
1628 | 1629 | /* ----------------------------------------------------------- |
|
1629 | 1630 | content -> right -> forms -> radios |
|
1630 | 1631 | ----------------------------------------------------------- */ |
|
1631 | 1632 | |
|
1632 | 1633 | #content div.box div.form div.fields div.field div.radios |
|
1633 | 1634 | { |
|
1634 | 1635 | margin: 0 0 0 200px; |
|
1635 | 1636 | padding: 0; |
|
1636 | 1637 | } |
|
1637 | 1638 | |
|
1638 | 1639 | #content div.box div.form div.fields div.field div.radios div.radio |
|
1639 | 1640 | { |
|
1640 | 1641 | margin: 0; |
|
1641 | 1642 | padding: 2px 0 2px 0; |
|
1642 | 1643 | clear: both; |
|
1643 | 1644 | overflow: hidden; |
|
1644 | 1645 | } |
|
1645 | 1646 | |
|
1646 | 1647 | #content div.box div.form div.fields div.field div.radios div.radio input |
|
1647 | 1648 | { |
|
1648 | 1649 | margin: 0; |
|
1649 | 1650 | float: left; |
|
1650 | 1651 | } |
|
1651 | 1652 | |
|
1652 | 1653 | #content div.box div.form div.fields div.field div.radios div.radio label |
|
1653 | 1654 | { |
|
1654 | 1655 | margin: 3px 0 0 4px; |
|
1655 | 1656 | height: 1%; |
|
1656 | 1657 | display: block; |
|
1657 | 1658 | float: left; |
|
1658 | 1659 | } |
|
1660 | /* ----------------------------------------------------------- | |
|
1661 | content -> right -> forms -> button | |
|
1662 | ----------------------------------------------------------- */ | |
|
1663 | ||
|
1664 | div.form div.fields div.field div.button | |
|
1665 | { | |
|
1666 | margin: 0; | |
|
1667 | padding: 0 0 0 8px; | |
|
1668 | float: left; | |
|
1669 | } | |
|
1670 | ||
|
1671 | div.form div.fields div.field div.button input | |
|
1672 | { | |
|
1673 | margin: 0; | |
|
1674 | color: #000000; | |
|
1675 | font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif; | |
|
1676 | font-size: 11px; | |
|
1677 | font-weight: bold; | |
|
1678 | } | |
|
1679 | ||
|
1680 | div.form div.fields div.field div.button .ui-state-default | |
|
1681 | { | |
|
1682 | margin: 0; | |
|
1683 | padding: 6px 12px 6px 12px; | |
|
1684 | background: #e5e3e3 url("../images/button.png") repeat-x; | |
|
1685 | border-top: 1px solid #DDDDDD; | |
|
1686 | border-left: 1px solid #c6c6c6; | |
|
1687 | border-right: 1px solid #DDDDDD; | |
|
1688 | border-bottom: 1px solid #c6c6c6; | |
|
1689 | color: #515151; | |
|
1690 | outline: none; | |
|
1691 | } | |
|
1692 | ||
|
1693 | div.form div.fields div.field div.button .ui-state-hover | |
|
1694 | { | |
|
1695 | margin: 0; | |
|
1696 | padding: 6px 12px 6px 12px; | |
|
1697 | background: #b4b4b4 url("../images/button_selected.png") repeat-x; | |
|
1698 | border-top: 1px solid #cccccc; | |
|
1699 | border-left: 1px solid #bebebe; | |
|
1700 | border-right: 1px solid #b1b1b1; | |
|
1701 | border-bottom: 1px solid #afafaf; | |
|
1702 | color: #515151; | |
|
1703 | outline: none; | |
|
1704 | } | |
|
1705 | ||
|
1706 | div.form div.fields div.field div.highlight | |
|
1707 | { | |
|
1708 | display: inline; | |
|
1709 | } | |
|
1710 | ||
|
1711 | div.form div.fields div.field div.highlight .ui-state-default | |
|
1712 | { | |
|
1713 | margin: 0; | |
|
1714 | padding: 6px 12px 6px 12px; | |
|
1715 | background: #4e85bb url("../images/colors/blue/button_highlight.png") repeat-x; | |
|
1716 | border-top: 1px solid #5c91a4; | |
|
1717 | border-left: 1px solid #2a6f89; | |
|
1718 | border-right: 1px solid #2b7089; | |
|
1719 | border-bottom: 1px solid #1a6480; | |
|
1720 | color: #FFFFFF; | |
|
1721 | } | |
|
1722 | ||
|
1723 | div.form div.fields div.field div.highlight .ui-state-hover | |
|
1724 | { | |
|
1725 | margin: 0; | |
|
1726 | padding: 6px 12px 6px 12px; | |
|
1727 | background: #46a0c1 url("../images/colors/blue/button_highlight_selected.png") repeat-x; | |
|
1728 | border-top: 1px solid #78acbf; | |
|
1729 | border-left: 1px solid #34819e; | |
|
1730 | border-right: 1px solid #35829f; | |
|
1731 | border-bottom: 1px solid #257897; | |
|
1732 | color: #FFFFFF; | |
|
1733 | } | |
|
1734 | ||
|
1659 | 1735 | |
|
1660 | 1736 | /* ----------------------------------------------------------- |
|
1661 | 1737 | content -> right -> forms -> buttons |
|
1662 | 1738 | ----------------------------------------------------------- */ |
|
1663 | 1739 | |
|
1664 | 1740 | #content div.box div.form div.fields div.buttons |
|
1665 | 1741 | { |
|
1666 | 1742 | margin: 10px 0 0 200px; |
|
1667 | 1743 | padding: 0; |
|
1668 | 1744 | } |
|
1669 | 1745 | |
|
1670 | 1746 | #content div.box-left div.form div.fields div.buttons, |
|
1671 | 1747 | #content div.box-right div.form div.fields div.buttons |
|
1672 | 1748 | { |
|
1673 | 1749 | margin: 10px 0 0 0; |
|
1674 | 1750 | } |
|
1675 | 1751 | |
|
1676 | 1752 | #content div.box div.form div.fields div.buttons input |
|
1677 | 1753 | { |
|
1678 | 1754 | margin: 0; |
|
1679 | 1755 | color: #000000; |
|
1680 | 1756 | font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif; |
|
1681 | 1757 | font-size: 11px; |
|
1682 | 1758 | font-weight: bold; |
|
1683 | 1759 | } |
|
1760 | /* ----------------------------------------------------------- | |
|
1761 | content -> right -> forms -> buttons | |
|
1762 | ----------------------------------------------------------- */ | |
|
1763 | ||
|
1764 | div.form div.fields div.buttons | |
|
1765 | { | |
|
1766 | margin: 10px 0 0 200px; | |
|
1767 | padding: 0; | |
|
1768 | } | |
|
1769 | ||
|
1770 | div.box-left div.form div.fields div.buttons, | |
|
1771 | div.box-right div.form div.fields div.buttons | |
|
1772 | { | |
|
1773 | margin: 10px 0 0 0; | |
|
1774 | } | |
|
1775 | ||
|
1776 | div.form div.fields div.buttons input | |
|
1777 | { | |
|
1778 | margin: 0; | |
|
1779 | color: #000000; | |
|
1780 | font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif; | |
|
1781 | font-size: 11px; | |
|
1782 | font-weight: bold; | |
|
1783 | } | |
|
1684 | 1784 | |
|
1685 | 1785 | /* ----------------------------------------------------------- |
|
1686 | 1786 | content -> right -> forms -> buttons (jquery styling) |
|
1687 | 1787 | ----------------------------------------------------------- */ |
|
1688 | 1788 | |
|
1689 | 1789 | #content div.box div.form div.fields div.buttons input.ui-state-default |
|
1690 | 1790 | { |
|
1691 | 1791 | margin: 0; |
|
1692 | 1792 | padding: 6px 12px 6px 12px; |
|
1693 | 1793 | background: #e5e3e3 url("../images/button.png") repeat-x; |
|
1694 | 1794 | border-top: 1px solid #DDDDDD; |
|
1695 | 1795 | border-left: 1px solid #c6c6c6; |
|
1696 | 1796 | border-right: 1px solid #DDDDDD; |
|
1697 | 1797 | border-bottom: 1px solid #c6c6c6; |
|
1698 | 1798 | color: #515151; |
|
1699 | 1799 | outline: none; |
|
1700 | 1800 | } |
|
1701 | 1801 | |
|
1702 | 1802 | #content div.box div.form div.fields div.buttons input.ui-state-hover |
|
1703 | 1803 | { |
|
1704 | 1804 | margin: 0; |
|
1705 | 1805 | padding: 6px 12px 6px 12px; |
|
1706 | 1806 | background: #b4b4b4 url("../images/button_selected.png") repeat-x; |
|
1707 | 1807 | border-top: 1px solid #cccccc; |
|
1708 | 1808 | border-left: 1px solid #bebebe; |
|
1709 | 1809 | border-right: 1px solid #b1b1b1; |
|
1710 | 1810 | border-bottom: 1px solid #afafaf; |
|
1711 | 1811 | color: #515151; |
|
1712 | 1812 | outline: none; |
|
1713 | 1813 | } |
|
1714 | 1814 | |
|
1715 | 1815 | #content div.box div.form div.fields div.buttons div.highlight |
|
1716 | 1816 | { |
|
1717 | 1817 | display: inline; |
|
1718 | 1818 | } |
|
1719 | 1819 | |
|
1720 | 1820 | #content div.box div.form div.fields div.buttons div.highlight input.ui-state-default |
|
1721 | 1821 | { |
|
1722 | 1822 | margin: 0; |
|
1723 | 1823 | padding: 6px 12px 6px 12px; |
|
1724 | 1824 | background: #4e85bb url("../images/colors/blue/button_highlight.png") repeat-x; |
|
1725 | 1825 | border-top: 1px solid #5c91a4; |
|
1726 | 1826 | border-left: 1px solid #2a6f89; |
|
1727 | 1827 | border-right: 1px solid #2b7089; |
|
1728 | 1828 | border-bottom: 1px solid #1a6480; |
|
1729 | 1829 | color: #FFFFFF; |
|
1730 | 1830 | } |
|
1731 | 1831 | |
|
1732 | 1832 | #content div.box div.form div.fields div.buttons div.highlight input.ui-state-hover |
|
1733 | 1833 | { |
|
1734 | 1834 | margin: 0; |
|
1735 | 1835 | padding: 6px 12px 6px 12px; |
|
1736 | 1836 | background: #46a0c1 url("../images/colors/blue/button_highlight_selected.png") repeat-x; |
|
1737 | 1837 | border-top: 1px solid #78acbf; |
|
1738 | 1838 | border-left: 1px solid #34819e; |
|
1739 | 1839 | border-right: 1px solid #35829f; |
|
1740 | 1840 | border-bottom: 1px solid #257897; |
|
1741 | 1841 | color: #FFFFFF; |
|
1742 | 1842 | } |
|
1743 | 1843 | |
|
1744 | 1844 | /* ----------------------------------------------------------- |
|
1745 | 1845 | content -> right -> box / tables |
|
1746 | 1846 | ----------------------------------------------------------- */ |
|
1747 | 1847 | |
|
1748 | 1848 | #content div.box div.table |
|
1749 | 1849 | { |
|
1750 | 1850 | margin: 0; |
|
1751 | 1851 | padding: 0 20px 10px 20px; |
|
1752 | 1852 | clear: both; |
|
1753 | 1853 | overflow: hidden; |
|
1754 | 1854 | } |
|
1755 | 1855 | |
|
1756 | 1856 | #content div.box table |
|
1757 | 1857 | { |
|
1758 | 1858 | margin: 0; |
|
1759 | 1859 | padding: 0; |
|
1760 | 1860 | width: 100%; |
|
1761 | 1861 | border-collapse: collapse; |
|
1762 | 1862 | } |
|
1763 | 1863 | |
|
1764 | 1864 | #content div.box table th |
|
1765 | 1865 | { |
|
1766 | 1866 | padding: 10px; |
|
1767 | 1867 | background: #eeeeee; |
|
1768 | 1868 | border-bottom: 1px solid #dddddd; |
|
1769 | 1869 | } |
|
1770 | 1870 | |
|
1771 | 1871 | #content div.box table th.left |
|
1772 | 1872 | { |
|
1773 | 1873 | text-align: left; |
|
1774 | 1874 | } |
|
1775 | 1875 | |
|
1776 | 1876 | #content div.box table th.right |
|
1777 | 1877 | { |
|
1778 | 1878 | text-align: right; |
|
1779 | 1879 | } |
|
1780 | 1880 | |
|
1781 | 1881 | #content div.box table th.center |
|
1782 | 1882 | { |
|
1783 | 1883 | text-align: center; |
|
1784 | 1884 | } |
|
1785 | 1885 | |
|
1786 | 1886 | #content div.box table th.selected |
|
1787 | 1887 | { |
|
1788 | 1888 | padding: 0; |
|
1789 | 1889 | vertical-align: middle; |
|
1790 | 1890 | } |
|
1791 | 1891 | |
|
1792 | 1892 | #content div.box table th.selected input |
|
1793 | 1893 | { |
|
1794 | 1894 | margin: 0; |
|
1795 | 1895 | } |
|
1796 | 1896 | |
|
1797 | 1897 | #content div.box table td |
|
1798 | 1898 | { |
|
1799 | 1899 | padding: 5px; |
|
1800 | 1900 | background: #ffffff; |
|
1801 | 1901 | border-bottom: 1px solid #cdcdcd; |
|
1802 | 1902 | } |
|
1803 | 1903 | |
|
1804 | 1904 | #content div.box table tr.selected td |
|
1805 | 1905 | { |
|
1806 | 1906 | background: #FFFFCC; |
|
1807 | 1907 | } |
|
1808 | 1908 | |
|
1809 | 1909 | #content div.box table td.selected |
|
1810 | 1910 | { |
|
1811 | 1911 | padding: 0; |
|
1812 | 1912 | width: 3%; |
|
1813 | 1913 | text-align: center; |
|
1814 | 1914 | vertical-align: middle; |
|
1815 | 1915 | } |
|
1816 | 1916 | |
|
1817 | 1917 | #content div.box table td.selected input |
|
1818 | 1918 | { |
|
1819 | 1919 | margin: 0; |
|
1820 | 1920 | } |
|
1821 | 1921 | |
|
1822 | 1922 | #content div.box table td.action |
|
1823 | 1923 | { |
|
1824 | 1924 | width: 45%; |
|
1825 | 1925 | text-align: left; |
|
1826 | 1926 | } |
|
1827 | 1927 | |
|
1828 | 1928 | #content div.box table td.user |
|
1829 | 1929 | { |
|
1830 | 1930 | width: 10%; |
|
1831 | 1931 | text-align: center; |
|
1832 | 1932 | } |
|
1833 | 1933 | |
|
1834 | 1934 | #content div.box table td.date |
|
1835 | 1935 | { |
|
1836 | 1936 | width: 33%; |
|
1837 | 1937 | text-align: center; |
|
1838 | 1938 | } |
|
1839 | 1939 | |
|
1840 | 1940 | #content div.box table td.address |
|
1841 | 1941 | { |
|
1842 | 1942 | width: 10%; |
|
1843 | 1943 | text-align: center; |
|
1844 | 1944 | } |
|
1845 | 1945 | |
|
1846 | 1946 | /* ----------------------------------------------------------- |
|
1847 | 1947 | content -> right -> box / table action |
|
1848 | 1948 | ----------------------------------------------------------- */ |
|
1849 | 1949 | |
|
1850 | 1950 | #content div.box div.action |
|
1851 | 1951 | { |
|
1852 | 1952 | margin: 10px 0 0 0; |
|
1853 | 1953 | padding: 0; |
|
1854 | 1954 | float: right; |
|
1855 | 1955 | background: #FFFFFF; |
|
1856 | 1956 | text-align: right; |
|
1857 | 1957 | } |
|
1858 | 1958 | |
|
1859 | 1959 | #content div.box div.action a:hover |
|
1860 | 1960 | { |
|
1861 | 1961 | color: #000000; |
|
1862 | 1962 | text-decoration: none; |
|
1863 | 1963 | } |
|
1864 | 1964 | |
|
1865 | 1965 | #content div.box div.action select |
|
1866 | 1966 | { |
|
1867 | 1967 | margin: 0; |
|
1868 | 1968 | font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif; |
|
1869 | 1969 | font-size: 11px; |
|
1870 | 1970 | } |
|
1871 | 1971 | |
|
1872 | 1972 | #content div.box div.action div.button |
|
1873 | 1973 | { |
|
1874 | 1974 | margin: 6px 0 0 0; |
|
1875 | 1975 | padding: 0; |
|
1876 | 1976 | text-align: right; |
|
1877 | 1977 | } |
|
1878 | 1978 | |
|
1879 | 1979 | #content div.box div.action div.button input |
|
1880 | 1980 | { |
|
1881 | 1981 | margin: 0; |
|
1882 | 1982 | color: #000000; |
|
1883 | 1983 | font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif; |
|
1884 | 1984 | font-size: 11px; |
|
1885 | 1985 | font-weight: bold; |
|
1886 | 1986 | } |
|
1887 | 1987 | |
|
1888 | 1988 | #content div.box div.action div.button input.ui-state-default |
|
1889 | 1989 | { |
|
1890 | 1990 | margin: 0; |
|
1891 | 1991 | padding: 6px 12px 6px 12px; |
|
1892 | 1992 | background: #e5e3e3 url("../images/button.png") repeat-x; |
|
1893 | 1993 | border-top: 1px solid #DDDDDD; |
|
1894 | 1994 | border-left: 1px solid #c6c6c6; |
|
1895 | 1995 | border-right: 1px solid #DDDDDD; |
|
1896 | 1996 | border-bottom: 1px solid #c6c6c6; |
|
1897 | 1997 | color: #515151; |
|
1898 | 1998 | } |
|
1899 | 1999 | |
|
1900 | 2000 | #content div.box div.action div.button input.ui-state-hover |
|
1901 | 2001 | { |
|
1902 | 2002 | margin: 0; |
|
1903 | 2003 | padding: 6px 12px 6px 12px; |
|
1904 | 2004 | background: #b4b4b4 url("../images/button_selected.png") repeat-x; |
|
1905 | 2005 | border-top: 1px solid #cccccc; |
|
1906 | 2006 | border-left: 1px solid #bebebe; |
|
1907 | 2007 | border-right: 1px solid #b1b1b1; |
|
1908 | 2008 | border-bottom: 1px solid #afafaf; |
|
1909 | 2009 | color: #515151; |
|
1910 | 2010 | } |
|
1911 | 2011 | |
|
1912 | 2012 | #content div.box div.action .ui-selectmenu |
|
1913 | 2013 | { |
|
1914 | 2014 | margin: 0; |
|
1915 | 2015 | padding: 0; |
|
1916 | 2016 | } |
|
1917 | 2017 | |
|
1918 | 2018 | #content div.box div.action a.ui-selectmenu-focus |
|
1919 | 2019 | { |
|
1920 | 2020 | border: 1px solid #666666; |
|
1921 | 2021 | } |
|
1922 | 2022 | |
|
1923 | 2023 | #content div.box div.action a.ui-selectmenu-focus span.ui-icon |
|
1924 | 2024 | { |
|
1925 | 2025 | background-image: url(../images/ui/ui-icons_222222_256x240.png); |
|
1926 | 2026 | } |
|
1927 | 2027 | |
|
1928 | 2028 | /* ----------------------------------------------------------- |
|
1929 | 2029 | content -> right -> pagination |
|
1930 | 2030 | ----------------------------------------------------------- */ |
|
1931 | 2031 | |
|
1932 | 2032 | #content div.box div.pagination |
|
1933 | 2033 | { |
|
1934 | 2034 | margin: 10px 0 0 0; |
|
1935 | 2035 | padding: 0; |
|
1936 | 2036 | height: 1%; |
|
1937 | 2037 | clear: both; |
|
1938 | 2038 | overflow: hidden; |
|
1939 | 2039 | } |
|
1940 | 2040 | |
|
1941 | 2041 | #content div.box div.pagination div.results |
|
1942 | 2042 | { |
|
1943 | 2043 | margin: 0; |
|
1944 | 2044 | padding: 0; |
|
1945 | 2045 | text-align: left; |
|
1946 | 2046 | float: left |
|
1947 | 2047 | } |
|
1948 | 2048 | |
|
1949 | 2049 | #content div.box div.pagination div.results span |
|
1950 | 2050 | { |
|
1951 | 2051 | margin: 0; |
|
1952 | 2052 | padding: 6px 8px 6px 8px; |
|
1953 | 2053 | height: 1%; |
|
1954 | 2054 | display: block; |
|
1955 | 2055 | float: left; |
|
1956 | 2056 | background: #ebebeb url("../images/pager.png") repeat-x; |
|
1957 | 2057 | border-top: 1px solid #dedede; |
|
1958 | 2058 | border-left: 1px solid #cfcfcf; |
|
1959 | 2059 | border-right: 1px solid #c4c4c4; |
|
1960 | 2060 | border-bottom: 1px solid #c4c4c4; |
|
1961 | 2061 | color: #4A4A4A; |
|
1962 | 2062 | font-weight: bold; |
|
1963 | 2063 | } |
|
1964 | 2064 | |
|
1965 | 2065 | #content div.box div.pagination ul.pager |
|
1966 | 2066 | { |
|
1967 | 2067 | margin: 0; |
|
1968 | 2068 | padding: 0; |
|
1969 | 2069 | float: right; |
|
1970 | 2070 | text-align: right; |
|
1971 | 2071 | } |
|
1972 | 2072 | |
|
1973 | 2073 | #content div.box div.pagination ul.pager li |
|
1974 | 2074 | { |
|
1975 | 2075 | margin: 0 0 0 4px; |
|
1976 | 2076 | padding: 0; |
|
1977 | 2077 | height: 1%; |
|
1978 | 2078 | float: left; |
|
1979 | 2079 | list-style: none; |
|
1980 | 2080 | background: #ebebeb url("../images/pager.png") repeat-x; |
|
1981 | 2081 | border-top: 1px solid #dedede; |
|
1982 | 2082 | border-left: 1px solid #cfcfcf; |
|
1983 | 2083 | border-right: 1px solid #c4c4c4; |
|
1984 | 2084 | border-bottom: 1px solid #c4c4c4; |
|
1985 | 2085 | color: #4A4A4A; |
|
1986 | 2086 | font-weight: bold; |
|
1987 | 2087 | } |
|
1988 | 2088 | |
|
1989 | 2089 | #content div.box div.pagination ul.pager li.separator |
|
1990 | 2090 | { |
|
1991 | 2091 | padding: 6px; |
|
1992 | 2092 | } |
|
1993 | 2093 | |
|
1994 | 2094 | #content div.box div.pagination ul.pager li.current |
|
1995 | 2095 | { |
|
1996 | 2096 | padding: 6px; |
|
1997 | 2097 | background: #b4b4b4 url("../images/pager_selected.png") repeat-x; |
|
1998 | 2098 | border-top: 1px solid #cccccc; |
|
1999 | 2099 | border-left: 1px solid #bebebe; |
|
2000 | 2100 | border-right: 1px solid #b1b1b1; |
|
2001 | 2101 | border-bottom: 1px solid #afafaf; |
|
2002 | 2102 | color: #515151; |
|
2003 | 2103 | } |
|
2004 | 2104 | |
|
2005 | 2105 | #content div.box div.pagination ul.pager li.disabled |
|
2006 | 2106 | { |
|
2007 | 2107 | padding: 6px; |
|
2008 | 2108 | color: #B4B4B4; |
|
2009 | 2109 | } |
|
2010 | 2110 | |
|
2011 | 2111 | #content div.box div.pagination ul.pager li a |
|
2012 | 2112 | { |
|
2013 | 2113 | margin: 0; |
|
2014 | 2114 | padding: 6px; |
|
2015 | 2115 | height: 1%; |
|
2016 | 2116 | display: block; |
|
2017 | 2117 | float: left; |
|
2018 | 2118 | color: #515151; |
|
2019 | 2119 | text-decoration: none; |
|
2020 | 2120 | } |
|
2021 | 2121 | |
|
2022 | 2122 | #content div.box div.pagination ul.pager li a:hover, |
|
2023 | 2123 | #content div.box div.pagination ul.pager li a:active |
|
2024 | 2124 | { |
|
2025 | 2125 | margin: -1px; |
|
2026 | 2126 | background: #b4b4b4 url("../images/pager_selected.png") repeat-x; |
|
2027 | 2127 | border-top: 1px solid #cccccc; |
|
2028 | 2128 | border-left: 1px solid #bebebe; |
|
2029 | 2129 | border-right: 1px solid #b1b1b1; |
|
2030 | 2130 | border-bottom: 1px solid #afafaf; |
|
2031 | 2131 | } |
|
2032 | 2132 | |
|
2033 | 2133 | /* ----------------------------------------------------------- |
|
2034 | 2134 | content -> webhelpers pagination |
|
2035 | 2135 | ----------------------------------------------------------- */ |
|
2036 | 2136 | |
|
2037 | 2137 | #content div.box div.pagination-wh |
|
2038 | 2138 | { |
|
2039 | 2139 | margin: 10px 0 0 0; |
|
2040 | 2140 | padding: 0; |
|
2041 | 2141 | height: 1%; |
|
2042 | 2142 | clear: both; |
|
2043 | 2143 | overflow: hidden; |
|
2044 | 2144 | text-align: right; |
|
2045 | 2145 | } |
|
2046 | 2146 | |
|
2047 | 2147 | #content div.box div.pagination-wh div.results |
|
2048 | 2148 | { |
|
2049 | 2149 | margin: 0; |
|
2050 | 2150 | padding: 0; |
|
2051 | 2151 | text-align: left; |
|
2052 | 2152 | float: left |
|
2053 | 2153 | } |
|
2054 | 2154 | |
|
2055 | 2155 | #content div.box div.pagination-wh div.results span |
|
2056 | 2156 | { |
|
2057 | 2157 | margin: 0; |
|
2058 | 2158 | padding: 6px 8px 6px 8px; |
|
2059 | 2159 | height: 1%; |
|
2060 | 2160 | display: block; |
|
2061 | 2161 | float: left; |
|
2062 | 2162 | background: #ebebeb url("../images/pager.png") repeat-x; |
|
2063 | 2163 | border-top: 1px solid #dedede; |
|
2064 | 2164 | border-left: 1px solid #cfcfcf; |
|
2065 | 2165 | border-right: 1px solid #c4c4c4; |
|
2066 | 2166 | border-bottom: 1px solid #c4c4c4; |
|
2067 | 2167 | color: #4A4A4A; |
|
2068 | 2168 | font-weight: bold; |
|
2069 | 2169 | } |
|
2070 | 2170 | |
|
2071 | 2171 | #content div.box div.pagination-left{ |
|
2072 | 2172 | float:left; |
|
2073 | 2173 | } |
|
2074 | 2174 | #content div.box div.pagination-right{ |
|
2075 | 2175 | float:right; |
|
2076 | 2176 | } |
|
2077 | 2177 | |
|
2078 | 2178 | #content div.box div.pagination-wh a, |
|
2079 | 2179 | #content div.box div.pagination-wh span.pager_dotdot |
|
2080 | 2180 | { |
|
2081 | 2181 | margin: 0 0 0 4px; |
|
2082 | 2182 | padding: 6px; |
|
2083 | 2183 | height: 1%; |
|
2084 | 2184 | float: left; |
|
2085 | 2185 | background: #ebebeb url("../images/pager.png") repeat-x; |
|
2086 | 2186 | border-top: 1px solid #dedede; |
|
2087 | 2187 | border-left: 1px solid #cfcfcf; |
|
2088 | 2188 | border-right: 1px solid #c4c4c4; |
|
2089 | 2189 | border-bottom: 1px solid #c4c4c4; |
|
2090 | 2190 | color: #4A4A4A; |
|
2091 | 2191 | font-weight: bold; |
|
2092 | 2192 | } |
|
2093 | 2193 | #content div.box div.pagination-wh span.pager_curpage |
|
2094 | 2194 | { |
|
2095 | 2195 | margin: 0 0 0 4px; |
|
2096 | 2196 | padding: 6px; |
|
2097 | 2197 | height: 1%; |
|
2098 | 2198 | float: left; |
|
2099 | 2199 | background: #b4b4b4 url("../images/pager_selected.png") repeat-x; |
|
2100 | 2200 | border-top: 1px solid #cccccc; |
|
2101 | 2201 | border-left: 1px solid #bebebe; |
|
2102 | 2202 | border-right: 1px solid #b1b1b1; |
|
2103 | 2203 | border-bottom: 1px solid #afafaf; |
|
2104 | 2204 | color: #515151; |
|
2105 | 2205 | font-weight: bold; |
|
2106 | 2206 | } |
|
2107 | 2207 | |
|
2108 | 2208 | #content div.box div.pagination-wh a.disabled |
|
2109 | 2209 | { |
|
2110 | 2210 | padding: 6px; |
|
2111 | 2211 | color: #B4B4B4; |
|
2112 | 2212 | } |
|
2113 | 2213 | |
|
2114 | 2214 | |
|
2115 | 2215 | #content div.box div.pagination-wh a:hover, |
|
2116 | 2216 | #content div.box div.pagination-wh a:active |
|
2117 | 2217 | { |
|
2118 | 2218 | background: #b4b4b4 url("../images/pager_selected.png") repeat-x; |
|
2119 | 2219 | border-top: 1px solid #cccccc; |
|
2120 | 2220 | border-left: 1px solid #bebebe; |
|
2121 | 2221 | border-right: 1px solid #b1b1b1; |
|
2122 | 2222 | border-bottom: 1px solid #afafaf; |
|
2123 | 2223 | text-decoration: none; |
|
2124 | 2224 | } |
|
2125 | 2225 | |
|
2126 | 2226 | |
|
2127 | 2227 | /* ----------------------------------------------------------- |
|
2128 | 2228 | content -> right -> traffic chart |
|
2129 | 2229 | ----------------------------------------------------------- */ |
|
2130 | 2230 | |
|
2131 | 2231 | #content div.box div.traffic |
|
2132 | 2232 | { |
|
2133 | 2233 | margin: 0; |
|
2134 | 2234 | padding: 0 20px 10px 20px; |
|
2135 | 2235 | clear: both; |
|
2136 | 2236 | overflow: hidden; |
|
2137 | 2237 | } |
|
2138 | 2238 | |
|
2139 | 2239 | #content div.box div.traffic div.legend |
|
2140 | 2240 | { |
|
2141 | 2241 | margin: 0 0 10px 0; |
|
2142 | 2242 | padding: 0 0 10px 0; |
|
2143 | 2243 | clear: both; |
|
2144 | 2244 | overflow: hidden; |
|
2145 | 2245 | border-bottom: 1px solid #dddddd; |
|
2146 | 2246 | } |
|
2147 | 2247 | |
|
2148 | 2248 | #content div.box div.traffic div.legend h6 |
|
2149 | 2249 | { |
|
2150 | 2250 | margin: 0; |
|
2151 | 2251 | padding: 0; |
|
2152 | 2252 | float: left; |
|
2153 | 2253 | border: none; |
|
2154 | 2254 | } |
|
2155 | 2255 | |
|
2156 | 2256 | #content div.box div.traffic div.legend ul |
|
2157 | 2257 | { |
|
2158 | 2258 | margin: 0; |
|
2159 | 2259 | padding: 0; |
|
2160 | 2260 | float: right; |
|
2161 | 2261 | } |
|
2162 | 2262 | |
|
2163 | 2263 | #content div.box div.traffic div.legend li |
|
2164 | 2264 | { |
|
2165 | 2265 | margin: 0; |
|
2166 | 2266 | padding: 0 8px 0 4px; |
|
2167 | 2267 | list-style: none; |
|
2168 | 2268 | float: left; |
|
2169 | 2269 | font-size: 11px; |
|
2170 | 2270 | } |
|
2171 | 2271 | |
|
2172 | 2272 | #content div.box div.traffic div.legend li.visits |
|
2173 | 2273 | { |
|
2174 | 2274 | border-left: 12px solid #edc240; |
|
2175 | 2275 | } |
|
2176 | 2276 | |
|
2177 | 2277 | #content div.box div.traffic div.legend li.pageviews |
|
2178 | 2278 | { |
|
2179 | 2279 | border-left: 12px solid #afd8f8; |
|
2180 | 2280 | } |
|
2181 | 2281 | |
|
2182 | 2282 | #content div.box div.traffic table |
|
2183 | 2283 | { |
|
2184 | 2284 | width: auto; |
|
2185 | 2285 | } |
|
2186 | 2286 | |
|
2187 | 2287 | #content div.box div.traffic table td |
|
2188 | 2288 | { |
|
2189 | 2289 | padding: 2px 3px 3px 3px; |
|
2190 | 2290 | background: transparent; |
|
2191 | 2291 | border: none; |
|
2192 | 2292 | } |
|
2193 | 2293 | |
|
2194 | 2294 | #content div.box div.traffic table td.legendLabel |
|
2195 | 2295 | { |
|
2196 | 2296 | padding: 0 3px 2px 3px; |
|
2197 | 2297 | } |
|
2198 | 2298 | |
|
2199 | 2299 | /* ----------------------------------------------------------- |
|
2200 | 2300 | footer |
|
2201 | 2301 | ----------------------------------------------------------- */ |
|
2202 | 2302 | |
|
2203 | 2303 | #footer |
|
2204 | 2304 | { |
|
2205 | 2305 | margin: 0; |
|
2206 | 2306 | padding: 5px 0 5px 0; |
|
2207 | 2307 | clear: both; |
|
2208 | 2308 | overflow: hidden; |
|
2209 | 2309 | background: #2a2a2a; |
|
2210 | 2310 | text-align: right; |
|
2211 | 2311 | } |
|
2212 | 2312 | |
|
2213 | 2313 | #footer p |
|
2214 | 2314 | { |
|
2215 | 2315 | margin: 0 80px 0 80px; |
|
2216 | 2316 | padding: 10px 0 10px 0; |
|
2217 | 2317 | color: #ffffff; |
|
2218 | 2318 | } |
|
2219 | 2319 | |
|
2220 | 2320 | /* ----------------------------------------------------------- |
|
2221 | 2321 | login |
|
2222 | 2322 | ----------------------------------------------------------- */ |
|
2223 | 2323 | |
|
2224 | 2324 | #login |
|
2225 | 2325 | { |
|
2226 | 2326 | margin: 10% auto 0 auto; |
|
2227 | 2327 | padding: 0; |
|
2228 | 2328 | width: 420px; |
|
2229 | 2329 | } |
|
2230 | 2330 | |
|
2231 | 2331 | /* ----------------------------------------------------------- |
|
2232 | 2332 | login -> colors |
|
2233 | 2333 | ----------------------------------------------------------- */ |
|
2234 | 2334 | |
|
2235 | 2335 | #login div.color |
|
2236 | 2336 | { |
|
2237 | 2337 | margin: 10px auto 0 auto; |
|
2238 | 2338 | padding: 3px 3px 3px 0; |
|
2239 | 2339 | clear: both; |
|
2240 | 2340 | overflow: hidden; |
|
2241 | 2341 | background: #FFFFFF; |
|
2242 | 2342 | } |
|
2243 | 2343 | |
|
2244 | 2344 | #login div.color a |
|
2245 | 2345 | { |
|
2246 | 2346 | margin: 0 0 0 3px; |
|
2247 | 2347 | padding: 0; |
|
2248 | 2348 | width: 20px; |
|
2249 | 2349 | height: 20px; |
|
2250 | 2350 | display: block; |
|
2251 | 2351 | float: left; |
|
2252 | 2352 | } |
|
2253 | 2353 | |
|
2254 | 2354 | /* ----------------------------------------------------------- |
|
2255 | 2355 | login -> title |
|
2256 | 2356 | ----------------------------------------------------------- */ |
|
2257 | 2357 | |
|
2258 | 2358 | #login div.title |
|
2259 | 2359 | { |
|
2260 | 2360 | margin: 0 auto; |
|
2261 | 2361 | padding: 0; |
|
2262 | 2362 | width: 420px; |
|
2263 | 2363 | clear: both; |
|
2264 | 2364 | overflow: hidden; |
|
2265 | 2365 | position: relative; |
|
2266 | 2366 | background: #003367 url("../images/colors/blue/header_inner.png") repeat-x; |
|
2267 | 2367 | } |
|
2268 | 2368 | |
|
2269 | 2369 | #login div.title h5 |
|
2270 | 2370 | { |
|
2271 | 2371 | margin: 10px; |
|
2272 | 2372 | padding: 0; |
|
2273 | 2373 | color: #ffffff; |
|
2274 | 2374 | } |
|
2275 | 2375 | |
|
2276 | 2376 | /* ----------------------------------------------------------- |
|
2277 | 2377 | login -> title / corners |
|
2278 | 2378 | ----------------------------------------------------------- */ |
|
2279 | 2379 | |
|
2280 | 2380 | #login div.title div.corner |
|
2281 | 2381 | { |
|
2282 | 2382 | height: 6px; |
|
2283 | 2383 | width: 6px; |
|
2284 | 2384 | position: absolute; |
|
2285 | 2385 | background: url("../images/colors/blue/login_corners.png") no-repeat; |
|
2286 | 2386 | } |
|
2287 | 2387 | |
|
2288 | 2388 | #login div.title div.tl |
|
2289 | 2389 | { |
|
2290 | 2390 | top: 0; |
|
2291 | 2391 | left: 0; |
|
2292 | 2392 | background-position: 0 0; |
|
2293 | 2393 | } |
|
2294 | 2394 | |
|
2295 | 2395 | #login div.title div.tr |
|
2296 | 2396 | { |
|
2297 | 2397 | top: 0; |
|
2298 | 2398 | right: 0; |
|
2299 | 2399 | background-position: -6px 0; |
|
2300 | 2400 | } |
|
2301 | 2401 | |
|
2302 | 2402 | #login div.inner |
|
2303 | 2403 | { |
|
2304 | 2404 | margin: 0 auto; |
|
2305 | 2405 | padding: 20px; |
|
2306 | 2406 | width: 380px; |
|
2307 | 2407 | background: #FFFFFF url("../images/login.png") no-repeat top left; |
|
2308 | 2408 | border-top: none; |
|
2309 | 2409 | border-bottom: none; |
|
2310 | 2410 | } |
|
2311 | 2411 | |
|
2312 | 2412 | /* ----------------------------------------------------------- |
|
2313 | 2413 | login -> form |
|
2314 | 2414 | ----------------------------------------------------------- */ |
|
2315 | 2415 | |
|
2316 | 2416 | #login div.form |
|
2317 | 2417 | { |
|
2318 | 2418 | margin: 0; |
|
2319 | 2419 | padding: 0; |
|
2320 | 2420 | clear: both; |
|
2321 | 2421 | overflow: hidden; |
|
2322 | 2422 | } |
|
2323 | 2423 | |
|
2324 | 2424 | #login div.form div.fields |
|
2325 | 2425 | { |
|
2326 | 2426 | margin: 0; |
|
2327 | 2427 | padding: 0; |
|
2328 | 2428 | clear: both; |
|
2329 | 2429 | overflow: hidden; |
|
2330 | 2430 | } |
|
2331 | 2431 | |
|
2332 | 2432 | #login div.form div.fields div.field |
|
2333 | 2433 | { |
|
2334 | 2434 | margin: 0; |
|
2335 | 2435 | padding: 0 0 10px 0; |
|
2336 | 2436 | clear: both; |
|
2337 | 2437 | overflow: hidden; |
|
2338 | 2438 | } |
|
2339 | 2439 | |
|
2340 | 2440 | #login div.form div.fields div.field span.error-message |
|
2341 | 2441 | { |
|
2342 | 2442 | margin: 8px 0 0 0; |
|
2343 | 2443 | padding: 0; |
|
2344 | 2444 | height: 1%; |
|
2345 | 2445 | display: block; |
|
2346 | 2446 | color: #FF0000; |
|
2347 | 2447 | } |
|
2348 | 2448 | |
|
2349 | 2449 | #login div.form div.fields div.field div.label |
|
2350 | 2450 | { |
|
2351 | 2451 | margin: 2px 10px 0 0; |
|
2352 | 2452 | padding: 5px 0 0 5px; |
|
2353 | 2453 | width: 173px; |
|
2354 | 2454 | float: left; |
|
2355 | 2455 | text-align: right; |
|
2356 | 2456 | } |
|
2357 | 2457 | |
|
2358 | 2458 | #login div.form div.fields div.field div.label label |
|
2359 | 2459 | { |
|
2360 | 2460 | color: #000000; |
|
2361 | 2461 | font-weight: bold; |
|
2362 | 2462 | } |
|
2363 | 2463 | |
|
2364 | 2464 | #login div.form div.fields div.field div.label span |
|
2365 | 2465 | { |
|
2366 | 2466 | margin: 0; |
|
2367 | 2467 | padding: 2px 0 0 0; |
|
2368 | 2468 | height: 1%; |
|
2369 | 2469 | display: block; |
|
2370 | 2470 | color: #363636; |
|
2371 | 2471 | } |
|
2372 | 2472 | |
|
2373 | 2473 | #login div.form div.fields div.field div.input |
|
2374 | 2474 | { |
|
2375 | 2475 | margin: 0; |
|
2376 | 2476 | padding: 0; |
|
2377 | 2477 | float: left; |
|
2378 | 2478 | } |
|
2379 | 2479 | |
|
2380 | 2480 | #login div.form div.fields div.field div.input input |
|
2381 | 2481 | { |
|
2382 | 2482 | margin: 0; |
|
2383 | 2483 | padding: 7px 7px 6px 7px; |
|
2384 | 2484 | width: 176px; |
|
2385 | 2485 | background: #FFFFFF; |
|
2386 | 2486 | border-top: 1px solid #b3b3b3; |
|
2387 | 2487 | border-left: 1px solid #b3b3b3; |
|
2388 | 2488 | border-right: 1px solid #eaeaea; |
|
2389 | 2489 | border-bottom: 1px solid #eaeaea; |
|
2390 | 2490 | color: #000000; |
|
2391 | 2491 | font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif; |
|
2392 | 2492 | font-size: 11px; |
|
2393 | 2493 | } |
|
2394 | 2494 | |
|
2395 | 2495 | #login div.form div.fields div.field div.input input.error |
|
2396 | 2496 | { |
|
2397 | 2497 | background: #FBE3E4; |
|
2398 | 2498 | border-top: 1px solid #e1b2b3; |
|
2399 | 2499 | border-left: 1px solid #e1b2b3; |
|
2400 | 2500 | border-right: 1px solid #FBC2C4; |
|
2401 | 2501 | border-bottom: 1px solid #FBC2C4; |
|
2402 | 2502 | } |
|
2403 | 2503 | |
|
2404 | 2504 | #login div.form div.fields div.field div.input input.success |
|
2405 | 2505 | { |
|
2406 | 2506 | background: #E6EFC2; |
|
2407 | 2507 | border-top: 1px solid #cebb98; |
|
2408 | 2508 | border-left: 1px solid #cebb98; |
|
2409 | 2509 | border-right: 1px solid #c6d880; |
|
2410 | 2510 | border-bottom: 1px solid #c6d880; |
|
2411 | 2511 | } |
|
2412 | 2512 | |
|
2413 | 2513 | #login div.form div.fields div.field div.input div.link |
|
2414 | 2514 | { |
|
2415 | 2515 | margin: 6px 0 0 0; |
|
2416 | 2516 | padding: 0; |
|
2417 | 2517 | text-align: right; |
|
2418 | 2518 | } |
|
2419 | 2519 | |
|
2420 | 2520 | #login div.form div.fields div.field div.checkbox |
|
2421 | 2521 | { |
|
2422 | 2522 | margin: 0 0 0 184px; |
|
2423 | 2523 | padding: 0; |
|
2424 | 2524 | } |
|
2425 | 2525 | |
|
2426 | 2526 | #login div.form div.fields div.field div.checkbox label |
|
2427 | 2527 | { |
|
2428 | 2528 | color: #565656; |
|
2429 | 2529 | font-weight: bold; |
|
2430 | 2530 | } |
|
2431 | 2531 | |
|
2432 | 2532 | #login div.form div.fields div.buttons |
|
2433 | 2533 | { |
|
2434 | 2534 | margin: 0; |
|
2435 | 2535 | padding: 10px 0 0 0; |
|
2436 | 2536 | clear: both; |
|
2437 | 2537 | overflow: hidden; |
|
2438 | 2538 | border-top: 1px solid #DDDDDD; |
|
2439 | 2539 | text-align: right; |
|
2440 | 2540 | } |
|
2441 | 2541 | |
|
2442 | 2542 | #login div.form div.fields div.buttons input |
|
2443 | 2543 | { |
|
2444 | 2544 | margin: 0; |
|
2445 | 2545 | color: #000000; |
|
2446 | 2546 | font-size: 1.0em; |
|
2447 | 2547 | font-weight: bold; |
|
2448 | 2548 | font-family: Verdana, Helvetica, Sans-Serif; |
|
2449 | 2549 | } |
|
2450 | 2550 | |
|
2451 | 2551 | #login div.form div.fields div.buttons input.ui-state-default |
|
2452 | 2552 | { |
|
2453 | 2553 | margin: 0; |
|
2454 | 2554 | padding: 6px 12px 6px 12px; |
|
2455 | 2555 | background: #e5e3e3 url("../images/button.png") repeat-x; |
|
2456 | 2556 | border-top: 1px solid #DDDDDD; |
|
2457 | 2557 | border-left: 1px solid #c6c6c6; |
|
2458 | 2558 | border-right: 1px solid #DDDDDD; |
|
2459 | 2559 | border-bottom: 1px solid #c6c6c6; |
|
2460 | 2560 | color: #515151; |
|
2461 | 2561 | } |
|
2462 | 2562 | |
|
2463 | 2563 | #login div.form div.fields div.buttons input.ui-state-hover |
|
2464 | 2564 | { |
|
2465 | 2565 | margin: 0; |
|
2466 | 2566 | padding: 6px 12px 6px 12px; |
|
2467 | 2567 | background: #b4b4b4 url("../images/button_selected.png") repeat-x; |
|
2468 | 2568 | border-top: 1px solid #cccccc; |
|
2469 | 2569 | border-left: 1px solid #bebebe; |
|
2470 | 2570 | border-right: 1px solid #b1b1b1; |
|
2471 | 2571 | border-bottom: 1px solid #afafaf; |
|
2472 | 2572 | color: #515151; |
|
2473 | 2573 | } |
|
2474 | 2574 | |
|
2475 | 2575 | /* ----------------------------------------------------------- |
|
2476 | 2576 | login -> links |
|
2477 | 2577 | ----------------------------------------------------------- */ |
|
2478 | 2578 | |
|
2479 | 2579 | #login div.form div.links |
|
2480 | 2580 | { |
|
2481 | 2581 | margin: 10px 0 0 0; |
|
2482 | 2582 | padding: 0 0 2px 0; |
|
2483 | 2583 | clear: both; |
|
2484 | 2584 | overflow: hidden; |
|
2485 | 2585 | } |
|
2486 | 2586 | |
|
2487 | 2587 | /* ----------------------------------------------------------- |
|
2488 | 2588 | register |
|
2489 | 2589 | ----------------------------------------------------------- */ |
|
2490 | 2590 | |
|
2491 | 2591 | #register |
|
2492 | 2592 | { |
|
2493 | 2593 | margin: 10% auto 0 auto; |
|
2494 | 2594 | padding: 0; |
|
2495 | 2595 | width: 420px; |
|
2496 | 2596 | } |
|
2497 | 2597 | |
|
2498 | 2598 | /* ----------------------------------------------------------- |
|
2499 | 2599 | register -> colors |
|
2500 | 2600 | ----------------------------------------------------------- */ |
|
2501 | 2601 | |
|
2502 | 2602 | #register div.color |
|
2503 | 2603 | { |
|
2504 | 2604 | margin: 10px auto 0 auto; |
|
2505 | 2605 | padding: 3px 3px 3px 0; |
|
2506 | 2606 | clear: both; |
|
2507 | 2607 | overflow: hidden; |
|
2508 | 2608 | background: #FFFFFF; |
|
2509 | 2609 | } |
|
2510 | 2610 | |
|
2511 | 2611 | #register div.color a |
|
2512 | 2612 | { |
|
2513 | 2613 | margin: 0 0 0 3px; |
|
2514 | 2614 | padding: 0; |
|
2515 | 2615 | width: 20px; |
|
2516 | 2616 | height: 20px; |
|
2517 | 2617 | display: block; |
|
2518 | 2618 | float: left; |
|
2519 | 2619 | } |
|
2520 | 2620 | |
|
2521 | 2621 | /* ----------------------------------------------------------- |
|
2522 | 2622 | register -> title |
|
2523 | 2623 | ----------------------------------------------------------- */ |
|
2524 | 2624 | |
|
2525 | 2625 | #register div.title |
|
2526 | 2626 | { |
|
2527 | 2627 | margin: 0 auto; |
|
2528 | 2628 | padding: 0; |
|
2529 | 2629 | width: 420px; |
|
2530 | 2630 | clear: both; |
|
2531 | 2631 | overflow: hidden; |
|
2532 | 2632 | position: relative; |
|
2533 | 2633 | background: #003367 url("../images/colors/blue/header_inner.png") repeat-x; |
|
2534 | 2634 | } |
|
2535 | 2635 | |
|
2536 | 2636 | #register div.title h5 |
|
2537 | 2637 | { |
|
2538 | 2638 | margin: 10px; |
|
2539 | 2639 | padding: 0; |
|
2540 | 2640 | color: #ffffff; |
|
2541 | 2641 | } |
|
2542 | 2642 | |
|
2543 | 2643 | /* ----------------------------------------------------------- |
|
2544 | 2644 | register -> inner |
|
2545 | 2645 | ----------------------------------------------------------- */ |
|
2546 | 2646 | #register div.title div.corner |
|
2547 | 2647 | { |
|
2548 | 2648 | height: 6px; |
|
2549 | 2649 | width: 6px; |
|
2550 | 2650 | position: absolute; |
|
2551 | 2651 | background: url("../images/colors/blue/login_corners.png") no-repeat; |
|
2552 | 2652 | } |
|
2553 | 2653 | |
|
2554 | 2654 | #register div.title div.tl |
|
2555 | 2655 | { |
|
2556 | 2656 | top: 0; |
|
2557 | 2657 | left: 0; |
|
2558 | 2658 | background-position: 0 0; |
|
2559 | 2659 | } |
|
2560 | 2660 | |
|
2561 | 2661 | #register div.title div.tr |
|
2562 | 2662 | { |
|
2563 | 2663 | top: 0; |
|
2564 | 2664 | right: 0; |
|
2565 | 2665 | background-position: -6px 0; |
|
2566 | 2666 | |
|
2567 | 2667 | } |
|
2568 | 2668 | #register div.inner |
|
2569 | 2669 | { |
|
2570 | 2670 | margin: 0 auto; |
|
2571 | 2671 | padding: 20px; |
|
2572 | 2672 | width: 380px; |
|
2573 | 2673 | background: #FFFFFF; |
|
2574 | 2674 | border-top: none; |
|
2575 | 2675 | border-bottom: none; |
|
2576 | 2676 | } |
|
2577 | 2677 | |
|
2578 | 2678 | /* ----------------------------------------------------------- |
|
2579 | 2679 | register -> form |
|
2580 | 2680 | ----------------------------------------------------------- */ |
|
2581 | 2681 | |
|
2582 | 2682 | #register div.form |
|
2583 | 2683 | { |
|
2584 | 2684 | margin: 0; |
|
2585 | 2685 | padding: 0; |
|
2586 | 2686 | clear: both; |
|
2587 | 2687 | overflow: hidden; |
|
2588 | 2688 | } |
|
2589 | 2689 | |
|
2590 | 2690 | #register div.form div.fields |
|
2591 | 2691 | { |
|
2592 | 2692 | margin: 0; |
|
2593 | 2693 | padding: 0; |
|
2594 | 2694 | clear: both; |
|
2595 | 2695 | overflow: hidden; |
|
2596 | 2696 | } |
|
2597 | 2697 | |
|
2598 | 2698 | #register div.form div.fields div.field |
|
2599 | 2699 | { |
|
2600 | 2700 | margin: 0; |
|
2601 | 2701 | padding: 0 0 10px 0; |
|
2602 | 2702 | clear: both; |
|
2603 | 2703 | overflow: hidden; |
|
2604 | 2704 | } |
|
2605 | 2705 | |
|
2606 | 2706 | #register div.form div.fields div.field span.error-message |
|
2607 | 2707 | { |
|
2608 | 2708 | margin: 8px 0 0 0; |
|
2609 | 2709 | padding: 0; |
|
2610 | 2710 | height: 1%; |
|
2611 | 2711 | display: block; |
|
2612 | 2712 | color: #FF0000; |
|
2613 | 2713 | } |
|
2614 | 2714 | |
|
2615 | 2715 | #register div.form div.fields div.field div.label |
|
2616 | 2716 | { |
|
2617 | 2717 | margin: 2px 10px 0 0; |
|
2618 | 2718 | padding: 5px 0 0 5px; |
|
2619 | 2719 | width: 100px; |
|
2620 | 2720 | float: left; |
|
2621 | 2721 | text-align: right; |
|
2622 | 2722 | } |
|
2623 | 2723 | |
|
2624 | 2724 | #register div.form div.fields div.field div.label label |
|
2625 | 2725 | { |
|
2626 | 2726 | color: #000000; |
|
2627 | 2727 | font-weight: bold; |
|
2628 | 2728 | } |
|
2629 | 2729 | |
|
2630 | 2730 | #register div.form div.fields div.field div.label span |
|
2631 | 2731 | { |
|
2632 | 2732 | margin: 0; |
|
2633 | 2733 | padding: 2px 0 0 0; |
|
2634 | 2734 | height: 1%; |
|
2635 | 2735 | display: block; |
|
2636 | 2736 | color: #363636; |
|
2637 | 2737 | } |
|
2638 | 2738 | |
|
2639 | 2739 | #register div.form div.fields div.field div.input |
|
2640 | 2740 | { |
|
2641 | 2741 | margin: 0; |
|
2642 | 2742 | padding: 0; |
|
2643 | 2743 | float: left; |
|
2644 | 2744 | } |
|
2645 | 2745 | |
|
2646 | 2746 | #register div.form div.fields div.field div.input input |
|
2647 | 2747 | { |
|
2648 | 2748 | margin: 0; |
|
2649 | 2749 | padding: 7px 7px 6px 7px; |
|
2650 | 2750 | width: 245px; |
|
2651 | 2751 | background: #FFFFFF; |
|
2652 | 2752 | border-top: 1px solid #b3b3b3; |
|
2653 | 2753 | border-left: 1px solid #b3b3b3; |
|
2654 | 2754 | border-right: 1px solid #eaeaea; |
|
2655 | 2755 | border-bottom: 1px solid #eaeaea; |
|
2656 | 2756 | color: #000000; |
|
2657 | 2757 | font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif; |
|
2658 | 2758 | font-size: 11px; |
|
2659 | 2759 | } |
|
2660 | 2760 | |
|
2661 | 2761 | #register div.form div.fields div.field div.input input.error |
|
2662 | 2762 | { |
|
2663 | 2763 | background: #FBE3E4; |
|
2664 | 2764 | border-top: 1px solid #e1b2b3; |
|
2665 | 2765 | border-left: 1px solid #e1b2b3; |
|
2666 | 2766 | border-right: 1px solid #FBC2C4; |
|
2667 | 2767 | border-bottom: 1px solid #FBC2C4; |
|
2668 | 2768 | } |
|
2669 | 2769 | |
|
2670 | 2770 | #register div.form div.fields div.field div.input input.success |
|
2671 | 2771 | { |
|
2672 | 2772 | background: #E6EFC2; |
|
2673 | 2773 | border-top: 1px solid #cebb98; |
|
2674 | 2774 | border-left: 1px solid #cebb98; |
|
2675 | 2775 | border-right: 1px solid #c6d880; |
|
2676 | 2776 | border-bottom: 1px solid #c6d880; |
|
2677 | 2777 | } |
|
2678 | 2778 | |
|
2679 | 2779 | #register div.form div.fields div.field div.input div.link |
|
2680 | 2780 | { |
|
2681 | 2781 | margin: 6px 0 0 0; |
|
2682 | 2782 | padding: 0; |
|
2683 | 2783 | text-align: right; |
|
2684 | 2784 | } |
|
2685 | 2785 | |
|
2686 | 2786 | #register div.form div.fields div.field div.checkbox |
|
2687 | 2787 | { |
|
2688 | 2788 | margin: 0 0 0 184px; |
|
2689 | 2789 | padding: 0; |
|
2690 | 2790 | } |
|
2691 | 2791 | |
|
2692 | 2792 | #register div.form div.fields div.field div.checkbox label |
|
2693 | 2793 | { |
|
2694 | 2794 | color: #565656; |
|
2695 | 2795 | font-weight: bold; |
|
2696 | 2796 | } |
|
2697 | 2797 | |
|
2698 | 2798 | #register div.form div.fields div.buttons |
|
2699 | 2799 | { |
|
2700 | 2800 | margin: 0; |
|
2701 | 2801 | padding: 10px 0 0 97px; |
|
2702 | 2802 | clear: both; |
|
2703 | 2803 | overflow: hidden; |
|
2704 | 2804 | border-top: 1px solid #DDDDDD; |
|
2705 | 2805 | text-align: left; |
|
2706 | 2806 | } |
|
2707 | 2807 | |
|
2708 | 2808 | #register div.form div.fields div.buttons input |
|
2709 | 2809 | { |
|
2710 | 2810 | margin: 0; |
|
2711 | 2811 | color: #000000; |
|
2712 | 2812 | font-size: 1.0em; |
|
2713 | 2813 | font-weight: bold; |
|
2714 | 2814 | font-family: Verdana, Helvetica, Sans-Serif; |
|
2715 | 2815 | } |
|
2716 | 2816 | |
|
2717 | 2817 | #register div.form div.fields div.buttons input.ui-state-default |
|
2718 | 2818 | { |
|
2719 | 2819 | margin: 0; |
|
2720 | 2820 | padding: 6px 12px 6px 12px; |
|
2721 | 2821 | background: #e5e3e3 url("../images/button.png") repeat-x; |
|
2722 | 2822 | border-top: 1px solid #DDDDDD; |
|
2723 | 2823 | border-left: 1px solid #c6c6c6; |
|
2724 | 2824 | border-right: 1px solid #DDDDDD; |
|
2725 | 2825 | border-bottom: 1px solid #c6c6c6; |
|
2726 | 2826 | color: #515151; |
|
2727 | 2827 | } |
|
2728 | 2828 | #register div.form div.fields div.buttons div.highlight input.ui-state-default |
|
2729 | 2829 | { |
|
2730 | 2830 | background:url("../images/colors/blue/button_highlight.png") repeat-x scroll 0 0 #4E85BB; |
|
2731 | 2831 | border-color:#5C91A4 #2B7089 #1A6480 #2A6F89; |
|
2732 | 2832 | border-style:solid; |
|
2733 | 2833 | border-width:1px; |
|
2734 | 2834 | color:#FFFFFF; |
|
2735 | 2835 | } |
|
2736 | 2836 | |
|
2737 | 2837 | |
|
2738 | 2838 | |
|
2739 | 2839 | #register div.form div.fields div.buttons input.ui-state-hover |
|
2740 | 2840 | { |
|
2741 | 2841 | margin: 0; |
|
2742 | 2842 | padding: 6px 12px 6px 12px; |
|
2743 | 2843 | background: #b4b4b4 url("../images/button_selected.png") repeat-x; |
|
2744 | 2844 | border-top: 1px solid #cccccc; |
|
2745 | 2845 | border-left: 1px solid #bebebe; |
|
2746 | 2846 | border-right: 1px solid #b1b1b1; |
|
2747 | 2847 | border-bottom: 1px solid #afafaf; |
|
2748 | 2848 | color: #515151; |
|
2749 | 2849 | } |
|
2750 | 2850 | |
|
2751 | 2851 | |
|
2752 | 2852 | /* ----------------------------------------------------------- |
|
2753 | 2853 | CHANGESETS |
|
2754 | 2854 | ----------------------------------------------------------- */ |
|
2755 | 2855 | #changeset_content { |
|
2756 | 2856 | border:1px solid #CCCCCC; |
|
2757 | 2857 | padding:5px; |
|
2758 | 2858 | } |
|
2759 | 2859 | |
|
2760 | 2860 | #changeset_content .container .wrapper { |
|
2761 | 2861 | width: 600px; |
|
2762 | 2862 | } |
|
2763 | 2863 | |
|
2764 | 2864 | #changeset_content .container { |
|
2765 | 2865 | height: 120px; |
|
2766 | 2866 | } |
|
2767 | 2867 | |
|
2768 | 2868 | #changeset_content .container .left { |
|
2769 | 2869 | float: left; |
|
2770 | 2870 | width: 70%; |
|
2771 | 2871 | padding-left: 5px; |
|
2772 | 2872 | } |
|
2773 | 2873 | |
|
2774 | 2874 | #changeset_content .container .right { |
|
2775 | 2875 | float: right; |
|
2776 | 2876 | width: 25%; |
|
2777 | 2877 | text-align: right; |
|
2778 | 2878 | } |
|
2779 | 2879 | |
|
2780 | 2880 | #changeset_content .container .left .date { |
|
2781 | 2881 | font-weight: bold; |
|
2782 | 2882 | } |
|
2783 | 2883 | |
|
2784 | 2884 | #changeset_content .container .left .author { |
|
2785 | 2885 | |
|
2786 | 2886 | } |
|
2787 | 2887 | |
|
2788 | 2888 | #changeset_content .container .left .message { |
|
2789 | 2889 | font-style: italic; |
|
2790 | 2890 | color: #556CB5; |
|
2791 | 2891 | } |
|
2792 | 2892 | |
|
2793 | 2893 | .cs_files { |
|
2794 | 2894 | |
|
2795 | 2895 | } |
|
2796 | 2896 | |
|
2797 | 2897 | .cs_files .cs_added { |
|
2798 | 2898 | background: url("/images/icons/page_white_add.png") no-repeat scroll 3px; |
|
2799 | 2899 | /*background-color:#BBFFBB;*/ |
|
2800 | 2900 | height: 16px; |
|
2801 | 2901 | padding-left: 20px; |
|
2802 | 2902 | margin-top: 7px; |
|
2803 | 2903 | text-align: left; |
|
2804 | 2904 | } |
|
2805 | 2905 | |
|
2806 | 2906 | .cs_files .cs_changed { |
|
2807 | 2907 | background: url("/images/icons/page_white_edit.png") no-repeat scroll |
|
2808 | 2908 | 3px; |
|
2809 | 2909 | /*background-color: #FFDD88;*/ |
|
2810 | 2910 | height: 16px; |
|
2811 | 2911 | padding-left: 20px; |
|
2812 | 2912 | margin-top: 7px; |
|
2813 | 2913 | text-align: left; |
|
2814 | 2914 | } |
|
2815 | 2915 | |
|
2816 | 2916 | .cs_files .cs_removed { |
|
2817 | 2917 | background: url("/images/icons/page_white_delete.png") no-repeat scroll |
|
2818 | 2918 | 3px; |
|
2819 | 2919 | /*background-color: #FF8888;*/ |
|
2820 | 2920 | height: 16px; |
|
2821 | 2921 | padding-left: 20px; |
|
2822 | 2922 | margin-top: 7px; |
|
2823 | 2923 | text-align: left; |
|
2824 | 2924 | } |
|
2825 | 2925 | |
|
2826 | 2926 | |
|
2827 | 2927 | |
|
2828 | 2928 | /* ----------------------------------------------------------- |
|
2829 | 2929 | CHANGESETS - CANVAS |
|
2830 | 2930 | ----------------------------------------------------------- */ |
|
2831 | 2931 | |
|
2832 | 2932 | #graph { |
|
2833 | 2933 | overflow: hidden; |
|
2834 | 2934 | } |
|
2835 | 2935 | |
|
2836 | 2936 | #graph_nodes { |
|
2837 | 2937 | width: 160px; |
|
2838 | 2938 | float: left; |
|
2839 | 2939 | margin-left:-50px; |
|
2840 | 2940 | margin-top: 5px; |
|
2841 | 2941 | } |
|
2842 | 2942 | |
|
2843 | 2943 | #graph_content { |
|
2844 | 2944 | width: 800px; |
|
2845 | 2945 | float: left; |
|
2846 | 2946 | } |
|
2847 | 2947 | |
|
2848 | 2948 | #graph_content .container_header { |
|
2849 | 2949 | border: 1px solid #CCCCCC; |
|
2850 | 2950 | padding:10px; |
|
2851 | 2951 | } |
|
2852 | 2952 | |
|
2853 | 2953 | #graph_content .container .wrapper { |
|
2854 | 2954 | width: 600px; |
|
2855 | 2955 | } |
|
2856 | 2956 | |
|
2857 | 2957 | #graph_content .container { |
|
2858 | 2958 | border-bottom: 1px solid #CCCCCC; |
|
2859 | 2959 | border-left: 1px solid #CCCCCC; |
|
2860 | 2960 | border-right: 1px solid #CCCCCC; |
|
2861 | 2961 | min-height: 80px; |
|
2862 | 2962 | overflow: hidden; |
|
2863 | 2963 | } |
|
2864 | 2964 | |
|
2865 | 2965 | #graph_content .container .left { |
|
2866 | 2966 | float: left; |
|
2867 | 2967 | width: 70%; |
|
2868 | 2968 | padding-left: 5px; |
|
2869 | 2969 | } |
|
2870 | 2970 | |
|
2871 | 2971 | #graph_content .container .right { |
|
2872 | 2972 | float: right; |
|
2873 | 2973 | width: 25%; |
|
2874 | 2974 | text-align: right; |
|
2875 | 2975 | } |
|
2876 | 2976 | |
|
2877 | 2977 | #graph_content .container .left .date { |
|
2878 | 2978 | font-weight: bold; |
|
2879 | 2979 | } |
|
2880 | 2980 | |
|
2881 | 2981 | #graph_content .container .left .author { |
|
2882 | 2982 | |
|
2883 | 2983 | } |
|
2884 | 2984 | |
|
2885 | 2985 | #graph_content .container .left .message { |
|
2886 | 2986 | font-size: 100%; |
|
2887 | 2987 | } |
|
2888 | 2988 | |
|
2889 | 2989 | .right div { |
|
2890 | 2990 | clear: both; |
|
2891 | 2991 | } |
|
2892 | 2992 | |
|
2893 | 2993 | .right .changes .added,.changed,.removed { |
|
2894 | 2994 | border: 1px solid #DDDDDD; |
|
2895 | 2995 | display: block; |
|
2896 | 2996 | float: right; |
|
2897 | 2997 | font-size: 0.75em; |
|
2898 | 2998 | text-align: center; |
|
2899 | 2999 | min-width: 15px; |
|
2900 | 3000 | } |
|
2901 | 3001 | |
|
2902 | 3002 | .right .changes .added { |
|
2903 | 3003 | background: #BBFFBB; |
|
2904 | 3004 | } |
|
2905 | 3005 | |
|
2906 | 3006 | .right .changes .changed { |
|
2907 | 3007 | background: #FFDD88; |
|
2908 | 3008 | } |
|
2909 | 3009 | |
|
2910 | 3010 | .right .changes .removed { |
|
2911 | 3011 | background: #FF8888; |
|
2912 | 3012 | } |
|
2913 | 3013 | |
|
2914 | 3014 | .right .merge { |
|
2915 | 3015 | vertical-align: top; |
|
2916 | 3016 | font-size: 60%; |
|
2917 | 3017 | font-weight: bold; |
|
2918 | 3018 | } |
|
2919 | 3019 | |
|
2920 | 3020 | .right .merge img { |
|
2921 | 3021 | vertical-align: bottom; |
|
2922 | 3022 | } |
|
2923 | 3023 | |
|
2924 | 3024 | .right .parent { |
|
2925 | 3025 | font-size: 90%; |
|
2926 | 3026 | font-family: monospace; |
|
2927 | 3027 | } |
|
2928 | 3028 | |
|
2929 | 3029 | |
|
2930 | 3030 | |
|
2931 | 3031 | /* ----------------------------------------------------------- |
|
2932 | 3032 | FILE BROWSER |
|
2933 | 3033 | ----------------------------------------------------------- */ |
|
2934 | 3034 | div.browserblock { |
|
2935 | 3035 | overflow: hidden; |
|
2936 | 3036 | padding: 0px; |
|
2937 | 3037 | border: 1px solid #ccc; |
|
2938 | 3038 | background: #f8f8f8; |
|
2939 | 3039 | font-size: 100%; |
|
2940 | 3040 | line-height: 100%; |
|
2941 | 3041 | /* new */ |
|
2942 | 3042 | line-height: 125%; |
|
2943 | 3043 | } |
|
2944 | 3044 | |
|
2945 | 3045 | div.browserblock .browser-header { |
|
2946 | 3046 | border-bottom: 1px solid #CCCCCC; |
|
2947 | 3047 | background: #FFFFFF; |
|
2948 | 3048 | color: blue; |
|
2949 | 3049 | padding: 10px 0 10px 0; |
|
2950 | 3050 | } |
|
2951 | 3051 | |
|
2952 | 3052 | div.browserblock .browser-header span { |
|
2953 | 3053 | margin-left: 25px; |
|
2954 | 3054 | font-weight: bold; |
|
2955 | 3055 | } |
|
2956 | 3056 | |
|
2957 | 3057 | div.browserblock .browser-body { |
|
2958 | 3058 | background: #EEEEEE; |
|
2959 | 3059 | } |
|
2960 | 3060 | |
|
2961 | 3061 | table.code-browser { |
|
2962 | 3062 | border-collapse: collapse; |
|
2963 | 3063 | width: 100%; |
|
2964 | 3064 | } |
|
2965 | 3065 | |
|
2966 | 3066 | table.code-browser tr { |
|
2967 | 3067 | margin: 3px; |
|
2968 | 3068 | } |
|
2969 | 3069 | |
|
2970 | 3070 | table.code-browser thead th { |
|
2971 | 3071 | background-color: #EEEEEE; |
|
2972 | 3072 | height: 20px; |
|
2973 | 3073 | font-size: 1.1em; |
|
2974 | 3074 | font-weight: bold; |
|
2975 | 3075 | text-align: center; |
|
2976 | 3076 | text-align: left; |
|
2977 | 3077 | padding-left: 10px; |
|
2978 | 3078 | } |
|
2979 | 3079 | |
|
2980 | 3080 | table.code-browser tbody tr { |
|
2981 | 3081 | |
|
2982 | 3082 | } |
|
2983 | 3083 | |
|
2984 | 3084 | table.code-browser tbody td { |
|
2985 | 3085 | padding-left: 10px; |
|
2986 | 3086 | height: 20px; |
|
2987 | 3087 | } |
|
2988 | 3088 | table.code-browser .browser-file { |
|
2989 | 3089 | background: url("/images/icons/document_16.png") no-repeat scroll 3px; |
|
2990 | 3090 | height: 16px; |
|
2991 | 3091 | padding-left: 20px; |
|
2992 | 3092 | text-align: left; |
|
2993 | 3093 | } |
|
2994 | 3094 | |
|
2995 | 3095 | table.code-browser .browser-dir { |
|
2996 | 3096 | background: url("/images/icons/folder_16.png") no-repeat scroll 3px; |
|
2997 | 3097 | height: 16px; |
|
2998 | 3098 | padding-left: 20px; |
|
2999 | 3099 | text-align: left; |
|
3000 | 3100 | } |
|
3001 | 3101 | |
|
3002 | 3102 | |
|
3003 | 3103 | /* ----------------------------------------------------------- |
|
3004 | 3104 | INFOBOX |
|
3005 | 3105 | ----------------------------------------------------------- */ |
|
3006 | 3106 | .info_box *{ |
|
3007 | 3107 | background:url("../../images/pager.png") repeat-x scroll 0 0 #EBEBEB; |
|
3008 | 3108 | border-color:#DEDEDE #C4C4C4 #C4C4C4 #CFCFCF; |
|
3009 | 3109 | border-style:solid; |
|
3010 | 3110 | border-width:1px; |
|
3011 | 3111 | color:#4A4A4A; |
|
3012 | 3112 | display:block; |
|
3013 | 3113 | font-weight:bold; |
|
3014 | 3114 | height:1%; |
|
3015 | 3115 | padding:4px 6px; |
|
3016 | 3116 | display: inline; |
|
3017 | 3117 | } |
|
3018 | 3118 | .info_box span{ |
|
3019 | 3119 | margin-left:3px; |
|
3020 | 3120 | margin-righ:3px; |
|
3021 | 3121 | } |
|
3022 | 3122 | .info_box input#at_rev { |
|
3023 | 3123 | padding:1px 3px 3px 2px; |
|
3024 | 3124 | text-align:center; |
|
3025 | 3125 | } |
|
3026 | 3126 | .info_box input#view { |
|
3027 | 3127 | padding:0px 3px 2px 2px; |
|
3028 | 3128 | text-align:center; |
|
3029 | 3129 | } |
|
3030 | 3130 | /* ----------------------------------------------------------- |
|
3031 | 3131 | TOOLTIP |
|
3032 | 3132 | ----------------------------------------------------------- */ |
|
3033 | 3133 | .yui-overlay,.yui-panel-container { |
|
3034 | 3134 | visibility: hidden; |
|
3035 | 3135 | position: absolute; |
|
3036 | 3136 | z-index: 2; |
|
3037 | 3137 | } |
|
3038 | 3138 | |
|
3039 | 3139 | .yui-tt { |
|
3040 | 3140 | visibility: hidden; |
|
3041 | 3141 | position: absolute; |
|
3042 | 3142 | color: #666666; |
|
3043 | 3143 | background-color: #FFFFFF; |
|
3044 | 3144 | font-family: arial, helvetica, verdana, sans-serif; |
|
3045 | 3145 | padding: 8px; |
|
3046 | 3146 | border: 2px solid #556CB5; |
|
3047 | 3147 | font: 100% sans-serif; |
|
3048 | 3148 | width: auto; |
|
3049 | 3149 | opacity: 1.0; |
|
3050 | 3150 | } |
|
3051 | 3151 | |
|
3052 | 3152 | .yui-tt-shadow { |
|
3053 | 3153 | display: none; |
|
3054 | 3154 | } |
|
3055 | 3155 | |
|
3056 | 3156 | /* ----------------------------------------------------------- |
|
3057 | 3157 | AUTOCOMPLETE |
|
3058 | 3158 | ----------------------------------------------------------- */ |
|
3059 | 3159 | |
|
3060 | 3160 | .ac{ |
|
3061 | 3161 | vertical-align: top; |
|
3062 | 3162 | |
|
3063 | 3163 | } |
|
3064 | 3164 | .ac .match { |
|
3065 | 3165 | font-weight:bold; |
|
3066 | 3166 | } |
|
3067 | 3167 | |
|
3068 | 3168 | .ac .yui-ac { |
|
3069 | 3169 | position: relative; |
|
3070 | 3170 | font-family: arial; |
|
3071 | 3171 | font-size: 100%; |
|
3072 | 3172 | } |
|
3073 | 3173 | |
|
3074 | 3174 | .ac .perm_ac{ |
|
3075 | 3175 | width:15em; |
|
3076 | 3176 | } |
|
3077 | 3177 | /* styles for input field */ |
|
3078 | 3178 | .ac .yui-ac-input { |
|
3079 | 3179 | width: 100%; |
|
3080 | 3180 | } |
|
3081 | 3181 | |
|
3082 | 3182 | /* styles for results container */ |
|
3083 | 3183 | .ac .yui-ac-container { |
|
3084 | 3184 | position: absolute; |
|
3085 | 3185 | top: 1.6em; |
|
3086 | 3186 | width: 100%; |
|
3087 | 3187 | } |
|
3088 | 3188 | |
|
3089 | 3189 | /* styles for header/body/footer wrapper within container */ |
|
3090 | 3190 | .ac .yui-ac-content { |
|
3091 | 3191 | position: absolute; |
|
3092 | 3192 | width: 100%; |
|
3093 | 3193 | border: 1px solid #808080; |
|
3094 | 3194 | background: #fff; |
|
3095 | 3195 | overflow: hidden; |
|
3096 | 3196 | z-index: 9050; |
|
3097 | 3197 | } |
|
3098 | 3198 | |
|
3099 | 3199 | /* styles for container shadow */ |
|
3100 | 3200 | .ac .yui-ac-shadow { |
|
3101 | 3201 | position: absolute; |
|
3102 | 3202 | margin: .3em; |
|
3103 | 3203 | width: 100%; |
|
3104 | 3204 | background: #000; |
|
3105 | 3205 | -moz-opacity: 0.10; |
|
3106 | 3206 | opacity: .10; |
|
3107 | 3207 | filter: alpha(opacity = 10); |
|
3108 | 3208 | z-index: 9049; |
|
3109 | 3209 | } |
|
3110 | 3210 | |
|
3111 | 3211 | /* styles for results list */ |
|
3112 | 3212 | .ac .yui-ac-content ul { |
|
3113 | 3213 | margin: 0; |
|
3114 | 3214 | padding: 0; |
|
3115 | 3215 | width: 100%; |
|
3116 | 3216 | } |
|
3117 | 3217 | |
|
3118 | 3218 | /* styles for result item */ |
|
3119 | 3219 | .ac .yui-ac-content li { |
|
3120 | 3220 | margin: 0; |
|
3121 | 3221 | padding: 2px 5px; |
|
3122 | 3222 | cursor: default; |
|
3123 | 3223 | white-space: nowrap; |
|
3124 | 3224 | } |
|
3125 | 3225 | |
|
3126 | 3226 | /* styles for prehighlighted result item */ |
|
3127 | 3227 | .ac .yui-ac-content li.yui-ac-prehighlight { |
|
3128 | 3228 | background: #B3D4FF; |
|
3129 | 3229 | } |
|
3130 | 3230 | |
|
3131 | 3231 | /* styles for highlighted result item */ |
|
3132 | 3232 | .ac .yui-ac-content li.yui-ac-highlight { |
|
3133 | 3233 | background: #556CB5; |
|
3134 | 3234 | color: #FFF; |
|
3135 | 3235 | } |
|
3136 | 3236 | |
|
3137 | 3237 | |
|
3138 | 3238 | /* ----------------------------------------------------------- |
|
3139 | 3239 | ACTION ICONS |
|
3140 | 3240 | ----------------------------------------------------------- */ |
|
3141 | 3241 | .add_icon { |
|
3142 | 3242 | background: url("/images/icons/add.png") no-repeat scroll 3px ; |
|
3143 | 3243 | height: 16px; |
|
3144 | 3244 | padding-left: 20px; |
|
3145 | 3245 | padding-top: 1px; |
|
3146 | 3246 | text-align: left; |
|
3147 | 3247 | } |
|
3148 | 3248 | |
|
3149 | 3249 | .edit_icon { |
|
3150 | 3250 | background: url("/images/icons/folder_edit.png") no-repeat scroll 3px; |
|
3151 | 3251 | height: 16px; |
|
3152 | 3252 | padding-left: 20px; |
|
3153 | 3253 | padding-top: 1px; |
|
3154 | 3254 | text-align: left; |
|
3155 | 3255 | } |
|
3156 | 3256 | |
|
3157 | 3257 | .delete_icon { |
|
3158 | 3258 | background: url("/images/icons/delete.png") no-repeat scroll 3px; |
|
3159 | 3259 | height: 16px; |
|
3160 | 3260 | padding-left: 20px; |
|
3161 | 3261 | padding-top: 1px; |
|
3162 | 3262 | text-align: left; |
|
3163 | 3263 | } |
|
3164 | 3264 | |
|
3165 | 3265 | .rss_icon { |
|
3166 | 3266 | background: url("/images/icons/rss_16.png") no-repeat scroll 3px; |
|
3167 | 3267 | height: 16px; |
|
3168 | 3268 | padding-left: 20px; |
|
3169 | 3269 | padding-top: 1px; |
|
3170 | 3270 | text-align: left; |
|
3171 | 3271 | } |
|
3172 | 3272 | |
|
3173 | 3273 | .atom_icon { |
|
3174 | 3274 | background: url("/images/icons/atom.png") no-repeat scroll 3px; |
|
3175 | 3275 | height: 16px; |
|
3176 | 3276 | padding-left: 20px; |
|
3177 | 3277 | padding-top: 1px; |
|
3178 | 3278 | text-align: left; |
|
3179 | 3279 | } |
|
3180 | 3280 | |
|
3181 | 3281 | .archive_icon { |
|
3182 | 3282 | background: url("/images/icons/compress.png") no-repeat scroll 3px; |
|
3183 | 3283 | height: 16px; |
|
3184 | 3284 | padding-left: 20px; |
|
3185 | 3285 | text-align: left; |
|
3186 | 3286 | padding-top: 1px; |
|
3187 | 3287 | } |
|
3188 | 3288 | |
|
3189 | 3289 | |
|
3190 | 3290 | |
|
3191 | 3291 | |
|
3192 | 3292 | .action_button { |
|
3193 | 3293 | border: 0px; |
|
3194 | 3294 | display: block; |
|
3195 | 3295 | } |
|
3196 | 3296 | |
|
3197 | 3297 | .action_button:hover { |
|
3198 | 3298 | border: 0px; |
|
3199 | 3299 | font-style: italic; |
|
3200 | 3300 | cursor: pointer; |
|
3201 | 3301 | } |
|
3202 | 3302 | |
|
3203 | 3303 | /* ----------------------------------------------------------- |
|
3204 | 3304 | REPO SWITCHER |
|
3205 | 3305 | ----------------------------------------------------------- */ |
|
3206 | 3306 | |
|
3207 | 3307 | #switch_repos{ |
|
3208 | 3308 | position: absolute; |
|
3209 | 3309 | height: 25px; |
|
3210 | 3310 | z-index: 1; |
|
3211 | 3311 | } |
|
3212 | 3312 | /* ----------------------------------------------------------- |
|
3213 | 3313 | BREADCRUMBS |
|
3214 | 3314 | ----------------------------------------------------------- */ |
|
3215 | 3315 | |
|
3216 | 3316 | .breadcrumbs{ |
|
3217 | 3317 | border:medium none; |
|
3218 | 3318 | color:#FFFFFF; |
|
3219 | 3319 | float:left; |
|
3220 | 3320 | margin:0; |
|
3221 | 3321 | padding:11px 0 11px 10px; |
|
3222 | 3322 | text-transform:uppercase; |
|
3223 | 3323 | font-weight: bold; |
|
3224 | 3324 | font-size: 14px; |
|
3225 | 3325 | } |
|
3226 | 3326 | .breadcrumbs a{ |
|
3227 | 3327 | color: #FFFFFF; |
|
3228 | 3328 | } |
|
3229 | 3329 | |
|
3230 | 3330 | |
|
3231 | 3331 | /* ----------------------------------------------------------- |
|
3232 | 3332 | FLASH MSG |
|
3233 | 3333 | ----------------------------------------------------------- */ |
|
3234 | 3334 | .flash_msg ul { |
|
3235 | 3335 | margin: 0; |
|
3236 | 3336 | padding: 0px 0px 10px 0px; |
|
3237 | 3337 | } |
|
3238 | 3338 | |
|
3239 | 3339 | .error_msg { |
|
3240 | 3340 | background-color: #FFCFCF; |
|
3241 | 3341 | background-image: url("/images/icons/error_msg.png"); |
|
3242 | 3342 | border: 1px solid #FF9595; |
|
3243 | 3343 | color: #CC3300; |
|
3244 | 3344 | } |
|
3245 | 3345 | |
|
3246 | 3346 | .warning_msg { |
|
3247 | 3347 | background-color: #FFFBCC; |
|
3248 | 3348 | background-image: url("/images/icons/warning_msg.png"); |
|
3249 | 3349 | border: 1px solid #FFF35E; |
|
3250 | 3350 | color: #C69E00; |
|
3251 | 3351 | } |
|
3252 | 3352 | |
|
3253 | 3353 | .success_msg { |
|
3254 | 3354 | background-color: #D5FFCF; |
|
3255 | 3355 | background-image: url("/images/icons/success_msg.png"); |
|
3256 | 3356 | border: 1px solid #97FF88; |
|
3257 | 3357 | color: #009900; |
|
3258 | 3358 | } |
|
3259 | 3359 | |
|
3260 | 3360 | .notice_msg { |
|
3261 | 3361 | background-color: #DCE3FF; |
|
3262 | 3362 | background-image: url("/images/icons/notice_msg.png"); |
|
3263 | 3363 | border: 1px solid #93A8FF; |
|
3264 | 3364 | color: #556CB5; |
|
3265 | 3365 | } |
|
3266 | 3366 | |
|
3267 | 3367 | .success_msg,.error_msg,.notice_msg,.warning_msg { |
|
3268 | 3368 | background-position: 10px center; |
|
3269 | 3369 | background-repeat: no-repeat; |
|
3270 | 3370 | font-size: 12px; |
|
3271 | 3371 | font-weight: bold; |
|
3272 | 3372 | min-height: 14px; |
|
3273 | 3373 | line-height: 14px; |
|
3274 | 3374 | margin-bottom: 0px; |
|
3275 | 3375 | margin-top: 0px; |
|
3276 | 3376 | padding: 6px 10px 6px 40px; |
|
3277 | 3377 | display: block; |
|
3278 | 3378 | overflow: auto; |
|
3279 | 3379 | } |
|
3280 | 3380 | |
|
3281 | 3381 | #msg_close { |
|
3282 | 3382 | background: transparent url("icons/cross_grey_small.png") no-repeat |
|
3283 | 3383 | scroll 0 0; |
|
3284 | 3384 | cursor: pointer; |
|
3285 | 3385 | height: 16px; |
|
3286 | 3386 | position: absolute; |
|
3287 | 3387 | right: 5px; |
|
3288 | 3388 | top: 5px; |
|
3289 | 3389 | width: 16px; |
|
3290 | 3390 | } |
|
3291 | 3391 | /* ----------------------------------------------------------- |
|
3292 | 3392 | YUI FLOT |
|
3293 | 3393 | ----------------------------------------------------------- */ |
|
3294 | 3394 | |
|
3295 | 3395 | div#commit_history{ |
|
3296 | 3396 | float: left; |
|
3297 | 3397 | } |
|
3298 | 3398 | div#legend_data{ |
|
3299 | 3399 | float:left; |
|
3300 | 3400 | |
|
3301 | 3401 | } |
|
3302 | 3402 | div#legend_container { |
|
3303 | 3403 | float: left; |
|
3304 | 3404 | } |
|
3305 | 3405 | |
|
3306 | 3406 | div#legend_container table,div#legend_choices table{ |
|
3307 | 3407 | width:auto !important; |
|
3308 | 3408 | } |
|
3309 | 3409 | |
|
3310 | 3410 | div#legend_container table td{ |
|
3311 | 3411 | border: none !important; |
|
3312 | 3412 | padding: 2px !important; |
|
3313 | 3413 | } |
|
3314 | 3414 | |
|
3315 | 3415 | div#legend_choices table td{ |
|
3316 | 3416 | border: none !important; |
|
3317 | 3417 | padding: 0px !important; |
|
3318 | 3418 | } |
|
3319 | 3419 | |
|
3320 | 3420 | div#legend_choices{ |
|
3321 | 3421 | float:left; |
|
3322 | 3422 | } |
|
3323 | 3423 | |
|
3324 | 3424 | /* ----------------------------------------------------------- |
|
3325 | 3425 | PERMISSIONS TABLE |
|
3326 | 3426 | ----------------------------------------------------------- */ |
|
3327 | 3427 | table#permissions_manage{ |
|
3328 | 3428 | width: 0 !important; |
|
3329 | 3429 | |
|
3330 | 3430 | } |
|
3331 | 3431 | table#permissions_manage span.private_repo_msg{ |
|
3332 | 3432 | font-size: 0.8em; |
|
3333 | 3433 | opacity:0.6; |
|
3334 | 3434 | |
|
3335 | 3435 | } |
|
3336 | 3436 | table#permissions_manage td.private_repo_msg{ |
|
3337 | 3437 | font-size: 0.8em; |
|
3338 | 3438 | |
|
3339 | 3439 | } |
|
3340 | 3440 | table#permissions_manage tr#add_perm_input td{ |
|
3341 | 3441 | vertical-align:middle; |
|
3342 | 3442 | |
|
3343 | 3443 | } |
|
3344 | 3444 | |
|
3345 | 3445 | |
|
3346 | 3446 | /* ----------------------------------------------------------- |
|
3347 | 3447 | jquery ui |
|
3348 | 3448 | ----------------------------------------------------------- */ |
|
3349 | 3449 | |
|
3350 | 3450 | .ui-helper-hidden { display: none; } |
|
3351 | 3451 | .ui-helper-hidden-accessible { position: absolute; left: -99999999px; } |
|
3352 | 3452 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } |
|
3353 | 3453 | |
|
3354 | 3454 | /* ----------------------------------------------------------- |
|
3355 | 3455 | jquery ui -> icons |
|
3356 | 3456 | ----------------------------------------------------------- */ |
|
3357 | 3457 | |
|
3358 | 3458 | .ui-icon { width: 16px; height: 16px; background-image: url(../images/ui/ui-icons_222222_256x240.png); } |
|
3359 | 3459 | .ui-widget-content .ui-icon {background-image: url(../images/ui/ui-icons_222222_256x240.png); } |
|
3360 | 3460 | .ui-widget-header .ui-icon {background-image: url(../images/ui/ui-icons_222222_256x240.png); } |
|
3361 | 3461 | .ui-state-default .ui-icon { background-image: url(../images/ui/ui-icons_ef8c08_256x240.png); } |
|
3362 | 3462 | .ui-state-hover .ui-icon, .ui-state-focus .ui-icon { background-image: url(../images/ui/ui-icons_ef8c08_256x240.png); } |
|
3363 | 3463 | .ui-state-active .ui-icon {background-image: url(../images/ui/ui-icons_ef8c08_256x240.png); } |
|
3364 | 3464 | .ui-state-highlight .ui-icon {background-image: url(../images/ui/ui-icons_228ef1_256x240.png); } |
|
3365 | 3465 | .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(../images/ui/ui-icons_ffd27a_256x240.png); } |
|
3366 | 3466 | |
|
3367 | 3467 | /* ----------------------------------------------------------- |
|
3368 | 3468 | jquery ui -> icon positioning |
|
3369 | 3469 | ----------------------------------------------------------- */ |
|
3370 | 3470 | .ui-icon-carat-1-n { background-position: 0 0; } |
|
3371 | 3471 | .ui-icon-carat-1-ne { background-position: -16px 0; } |
|
3372 | 3472 | .ui-icon-carat-1-e { background-position: -32px 0; } |
|
3373 | 3473 | .ui-icon-carat-1-se { background-position: -48px 0; } |
|
3374 | 3474 | .ui-icon-carat-1-s { background-position: -64px 0; } |
|
3375 | 3475 | .ui-icon-carat-1-sw { background-position: -80px 0; } |
|
3376 | 3476 | .ui-icon-carat-1-w { background-position: -96px 0; } |
|
3377 | 3477 | .ui-icon-carat-1-nw { background-position: -112px 0; } |
|
3378 | 3478 | .ui-icon-carat-2-n-s { background-position: -128px 0; } |
|
3379 | 3479 | .ui-icon-carat-2-e-w { background-position: -144px 0; } |
|
3380 | 3480 | .ui-icon-triangle-1-n { background-position: 0 -16px; } |
|
3381 | 3481 | .ui-icon-triangle-1-ne { background-position: -16px -16px; } |
|
3382 | 3482 | .ui-icon-triangle-1-e { background-position: -32px -16px; } |
|
3383 | 3483 | .ui-icon-triangle-1-se { background-position: -48px -16px; } |
|
3384 | 3484 | .ui-icon-triangle-1-s { background-position: -64px -16px; } |
|
3385 | 3485 | .ui-icon-triangle-1-sw { background-position: -80px -16px; } |
|
3386 | 3486 | .ui-icon-triangle-1-w { background-position: -96px -16px; } |
|
3387 | 3487 | .ui-icon-triangle-1-nw { background-position: -112px -16px; } |
|
3388 | 3488 | .ui-icon-triangle-2-n-s { background-position: -128px -16px; } |
|
3389 | 3489 | .ui-icon-triangle-2-e-w { background-position: -144px -16px; } |
|
3390 | 3490 | .ui-icon-arrow-1-n { background-position: 0 -32px; } |
|
3391 | 3491 | .ui-icon-arrow-1-ne { background-position: -16px -32px; } |
|
3392 | 3492 | .ui-icon-arrow-1-e { background-position: -32px -32px; } |
|
3393 | 3493 | .ui-icon-arrow-1-se { background-position: -48px -32px; } |
|
3394 | 3494 | .ui-icon-arrow-1-s { background-position: -64px -32px; } |
|
3395 | 3495 | .ui-icon-arrow-1-sw { background-position: -80px -32px; } |
|
3396 | 3496 | .ui-icon-arrow-1-w { background-position: -96px -32px; } |
|
3397 | 3497 | .ui-icon-arrow-1-nw { background-position: -112px -32px; } |
|
3398 | 3498 | .ui-icon-arrow-2-n-s { background-position: -128px -32px; } |
|
3399 | 3499 | .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } |
|
3400 | 3500 | .ui-icon-arrow-2-e-w { background-position: -160px -32px; } |
|
3401 | 3501 | .ui-icon-arrow-2-se-nw { background-position: -176px -32px; } |
|
3402 | 3502 | .ui-icon-arrowstop-1-n { background-position: -192px -32px; } |
|
3403 | 3503 | .ui-icon-arrowstop-1-e { background-position: -208px -32px; } |
|
3404 | 3504 | .ui-icon-arrowstop-1-s { background-position: -224px -32px; } |
|
3405 | 3505 | .ui-icon-arrowstop-1-w { background-position: -240px -32px; } |
|
3406 | 3506 | .ui-icon-arrowthick-1-n { background-position: 0 -48px; } |
|
3407 | 3507 | .ui-icon-arrowthick-1-ne { background-position: -16px -48px; } |
|
3408 | 3508 | .ui-icon-arrowthick-1-e { background-position: -32px -48px; } |
|
3409 | 3509 | .ui-icon-arrowthick-1-se { background-position: -48px -48px; } |
|
3410 | 3510 | .ui-icon-arrowthick-1-s { background-position: -64px -48px; } |
|
3411 | 3511 | .ui-icon-arrowthick-1-sw { background-position: -80px -48px; } |
|
3412 | 3512 | .ui-icon-arrowthick-1-w { background-position: -96px -48px; } |
|
3413 | 3513 | .ui-icon-arrowthick-1-nw { background-position: -112px -48px; } |
|
3414 | 3514 | .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } |
|
3415 | 3515 | .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } |
|
3416 | 3516 | .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } |
|
3417 | 3517 | .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } |
|
3418 | 3518 | .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } |
|
3419 | 3519 | .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } |
|
3420 | 3520 | .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } |
|
3421 | 3521 | .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } |
|
3422 | 3522 | .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } |
|
3423 | 3523 | .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } |
|
3424 | 3524 | .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } |
|
3425 | 3525 | .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } |
|
3426 | 3526 | .ui-icon-arrowreturn-1-w { background-position: -64px -64px; } |
|
3427 | 3527 | .ui-icon-arrowreturn-1-n { background-position: -80px -64px; } |
|
3428 | 3528 | .ui-icon-arrowreturn-1-e { background-position: -96px -64px; } |
|
3429 | 3529 | .ui-icon-arrowreturn-1-s { background-position: -112px -64px; } |
|
3430 | 3530 | .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } |
|
3431 | 3531 | .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } |
|
3432 | 3532 | .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } |
|
3433 | 3533 | .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } |
|
3434 | 3534 | .ui-icon-arrow-4 { background-position: 0 -80px; } |
|
3435 | 3535 | .ui-icon-arrow-4-diag { background-position: -16px -80px; } |
|
3436 | 3536 | .ui-icon-extlink { background-position: -32px -80px; } |
|
3437 | 3537 | .ui-icon-newwin { background-position: -48px -80px; } |
|
3438 | 3538 | .ui-icon-refresh { background-position: -64px -80px; } |
|
3439 | 3539 | .ui-icon-shuffle { background-position: -80px -80px; } |
|
3440 | 3540 | .ui-icon-transfer-e-w { background-position: -96px -80px; } |
|
3441 | 3541 | .ui-icon-transferthick-e-w { background-position: -112px -80px; } |
|
3442 | 3542 | .ui-icon-folder-collapsed { background-position: 0 -96px; } |
|
3443 | 3543 | .ui-icon-folder-open { background-position: -16px -96px; } |
|
3444 | 3544 | .ui-icon-document { background-position: -32px -96px; } |
|
3445 | 3545 | .ui-icon-document-b { background-position: -48px -96px; } |
|
3446 | 3546 | .ui-icon-note { background-position: -64px -96px; } |
|
3447 | 3547 | .ui-icon-mail-closed { background-position: -80px -96px; } |
|
3448 | 3548 | .ui-icon-mail-open { background-position: -96px -96px; } |
|
3449 | 3549 | .ui-icon-suitcase { background-position: -112px -96px; } |
|
3450 | 3550 | .ui-icon-comment { background-position: -128px -96px; } |
|
3451 | 3551 | .ui-icon-person { background-position: -144px -96px; } |
|
3452 | 3552 | .ui-icon-print { background-position: -160px -96px; } |
|
3453 | 3553 | .ui-icon-trash { background-position: -176px -96px; } |
|
3454 | 3554 | .ui-icon-locked { background-position: -192px -96px; } |
|
3455 | 3555 | .ui-icon-unlocked { background-position: -208px -96px; } |
|
3456 | 3556 | .ui-icon-bookmark { background-position: -224px -96px; } |
|
3457 | 3557 | .ui-icon-tag { background-position: -240px -96px; } |
|
3458 | 3558 | .ui-icon-home { background-position: 0 -112px; } |
|
3459 | 3559 | .ui-icon-flag { background-position: -16px -112px; } |
|
3460 | 3560 | .ui-icon-calendar { background-position: -32px -112px; } |
|
3461 | 3561 | .ui-icon-cart { background-position: -48px -112px; } |
|
3462 | 3562 | .ui-icon-pencil { background-position: -64px -112px; } |
|
3463 | 3563 | .ui-icon-clock { background-position: -80px -112px; } |
|
3464 | 3564 | .ui-icon-disk { background-position: -96px -112px; } |
|
3465 | 3565 | .ui-icon-calculator { background-position: -112px -112px; } |
|
3466 | 3566 | .ui-icon-zoomin { background-position: -128px -112px; } |
|
3467 | 3567 | .ui-icon-zoomout { background-position: -144px -112px; } |
|
3468 | 3568 | .ui-icon-search { background-position: -160px -112px; } |
|
3469 | 3569 | .ui-icon-wrench { background-position: -176px -112px; } |
|
3470 | 3570 | .ui-icon-gear { background-position: -192px -112px; } |
|
3471 | 3571 | .ui-icon-heart { background-position: -208px -112px; } |
|
3472 | 3572 | .ui-icon-star { background-position: -224px -112px; } |
|
3473 | 3573 | .ui-icon-link { background-position: -240px -112px; } |
|
3474 | 3574 | .ui-icon-cancel { background-position: 0 -128px; } |
|
3475 | 3575 | .ui-icon-plus { background-position: -16px -128px; } |
|
3476 | 3576 | .ui-icon-plusthick { background-position: -32px -128px; } |
|
3477 | 3577 | .ui-icon-minus { background-position: -48px -128px; } |
|
3478 | 3578 | .ui-icon-minusthick { background-position: -64px -128px; } |
|
3479 | 3579 | .ui-icon-close { background-position: -80px -128px; } |
|
3480 | 3580 | .ui-icon-closethick { background-position: -96px -128px; } |
|
3481 | 3581 | .ui-icon-key { background-position: -112px -128px; } |
|
3482 | 3582 | .ui-icon-lightbulb { background-position: -128px -128px; } |
|
3483 | 3583 | .ui-icon-scissors { background-position: -144px -128px; } |
|
3484 | 3584 | .ui-icon-clipboard { background-position: -160px -128px; } |
|
3485 | 3585 | .ui-icon-copy { background-position: -176px -128px; } |
|
3486 | 3586 | .ui-icon-contact { background-position: -192px -128px; } |
|
3487 | 3587 | .ui-icon-image { background-position: -208px -128px; } |
|
3488 | 3588 | .ui-icon-video { background-position: -224px -128px; } |
|
3489 | 3589 | .ui-icon-script { background-position: -240px -128px; } |
|
3490 | 3590 | .ui-icon-alert { background-position: 0 -144px; } |
|
3491 | 3591 | .ui-icon-info { background-position: -16px -144px; } |
|
3492 | 3592 | .ui-icon-notice { background-position: -32px -144px; } |
|
3493 | 3593 | .ui-icon-help { background-position: -48px -144px; } |
|
3494 | 3594 | .ui-icon-check { background-position: -64px -144px; } |
|
3495 | 3595 | .ui-icon-bullet { background-position: -80px -144px; } |
|
3496 | 3596 | .ui-icon-radio-off { background-position: -96px -144px; } |
|
3497 | 3597 | .ui-icon-radio-on { background-position: -112px -144px; } |
|
3498 | 3598 | .ui-icon-pin-w { background-position: -128px -144px; } |
|
3499 | 3599 | .ui-icon-pin-s { background-position: -144px -144px; } |
|
3500 | 3600 | .ui-icon-play { background-position: 0 -160px; } |
|
3501 | 3601 | .ui-icon-pause { background-position: -16px -160px; } |
|
3502 | 3602 | .ui-icon-seek-next { background-position: -32px -160px; } |
|
3503 | 3603 | .ui-icon-seek-prev { background-position: -48px -160px; } |
|
3504 | 3604 | .ui-icon-seek-end { background-position: -64px -160px; } |
|
3505 | 3605 | .ui-icon-seek-start { background-position: -80px -160px; } |
|
3506 | 3606 | /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ |
|
3507 | 3607 | .ui-icon-seek-first { background-position: -80px -160px; } |
|
3508 | 3608 | .ui-icon-stop { background-position: -96px -160px; } |
|
3509 | 3609 | .ui-icon-eject { background-position: -112px -160px; } |
|
3510 | 3610 | .ui-icon-volume-off { background-position: -128px -160px; } |
|
3511 | 3611 | .ui-icon-volume-on { background-position: -144px -160px; } |
|
3512 | 3612 | .ui-icon-power { background-position: 0 -176px; } |
|
3513 | 3613 | .ui-icon-signal-diag { background-position: -16px -176px; } |
|
3514 | 3614 | .ui-icon-signal { background-position: -32px -176px; } |
|
3515 | 3615 | .ui-icon-battery-0 { background-position: -48px -176px; } |
|
3516 | 3616 | .ui-icon-battery-1 { background-position: -64px -176px; } |
|
3517 | 3617 | .ui-icon-battery-2 { background-position: -80px -176px; } |
|
3518 | 3618 | .ui-icon-battery-3 { background-position: -96px -176px; } |
|
3519 | 3619 | .ui-icon-circle-plus { background-position: 0 -192px; } |
|
3520 | 3620 | .ui-icon-circle-minus { background-position: -16px -192px; } |
|
3521 | 3621 | .ui-icon-circle-close { background-position: -32px -192px; } |
|
3522 | 3622 | .ui-icon-circle-triangle-e { background-position: -48px -192px; } |
|
3523 | 3623 | .ui-icon-circle-triangle-s { background-position: -64px -192px; } |
|
3524 | 3624 | .ui-icon-circle-triangle-w { background-position: -80px -192px; } |
|
3525 | 3625 | .ui-icon-circle-triangle-n { background-position: -96px -192px; } |
|
3526 | 3626 | .ui-icon-circle-arrow-e { background-position: -112px -192px; } |
|
3527 | 3627 | .ui-icon-circle-arrow-s { background-position: -128px -192px; } |
|
3528 | 3628 | .ui-icon-circle-arrow-w { background-position: -144px -192px; } |
|
3529 | 3629 | .ui-icon-circle-arrow-n { background-position: -160px -192px; } |
|
3530 | 3630 | .ui-icon-circle-zoomin { background-position: -176px -192px; } |
|
3531 | 3631 | .ui-icon-circle-zoomout { background-position: -192px -192px; } |
|
3532 | 3632 | .ui-icon-circle-check { background-position: -208px -192px; } |
|
3533 | 3633 | .ui-icon-circlesmall-plus { background-position: 0 -208px; } |
|
3534 | 3634 | .ui-icon-circlesmall-minus { background-position: -16px -208px; } |
|
3535 | 3635 | .ui-icon-circlesmall-close { background-position: -32px -208px; } |
|
3536 | 3636 | .ui-icon-squaresmall-plus { background-position: -48px -208px; } |
|
3537 | 3637 | .ui-icon-squaresmall-minus { background-position: -64px -208px; } |
|
3538 | 3638 | .ui-icon-squaresmall-close { background-position: -80px -208px; } |
|
3539 | 3639 | .ui-icon-grip-dotted-vertical { background-position: 0 -224px; } |
|
3540 | 3640 | .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } |
|
3541 | 3641 | .ui-icon-grip-solid-vertical { background-position: -32px -224px; } |
|
3542 | 3642 | .ui-icon-grip-solid-horizontal { background-position: -48px -224px; } |
|
3543 | 3643 | .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } |
|
3544 | 3644 | .ui-icon-grip-diagonal-se { background-position: -80px -224px; } |
|
3545 | 3645 | |
|
3546 | 3646 | /* ----------------------------------------------------------- |
|
3547 | 3647 | jquery ui -> tabs |
|
3548 | 3648 | ----------------------------------------------------------- */ |
|
3549 | 3649 | .ui-tabs .ui-tabs-hide { display: none; } |
|
3550 | 3650 | |
|
3551 | 3651 | /* ----------------------------------------------------------- |
|
3552 | 3652 | jquery ui -> datepicker |
|
3553 | 3653 | ----------------------------------------------------------- */ |
|
3554 | 3654 | .ui-datepicker { width: 17em; padding: .2em .2em 0; background: #FFFFFF; border: 1px solid #000000; border-top: none; } |
|
3555 | 3655 | .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; background: #F6F6F6; } |
|
3556 | 3656 | .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 1px; width: 1.8em; height: 1.8em; } |
|
3557 | 3657 | .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } |
|
3558 | 3658 | .ui-datepicker .ui-datepicker-prev { left: 0; } |
|
3559 | 3659 | .ui-datepicker .ui-datepicker-next { right: 0; } |
|
3560 | 3660 | .ui-datepicker .ui-datepicker-prev-hover { left: 0; } |
|
3561 | 3661 | .ui-datepicker .ui-datepicker-next-hover { right: 0; } |
|
3562 | 3662 | .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; } |
|
3563 | 3663 | .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } |
|
3564 | 3664 | .ui-datepicker .ui-datepicker-title select { margin:1px 0; } |
|
3565 | 3665 | .ui-datepicker select.ui-datepicker-month-year {width: 100%;} |
|
3566 | 3666 | .ui-datepicker select.ui-datepicker-month, |
|
3567 | 3667 | .ui-datepicker select.ui-datepicker-year { width: 49%;} |
|
3568 | 3668 | .ui-datepicker table {width: 100%; border-collapse: collapse; margin:0 0 .4em; } |
|
3569 | 3669 | .ui-datepicker th { padding: .7em .3em; text-align: center; border: 0; } |
|
3570 | 3670 | .ui-datepicker td { border: 0; padding: 1px; } |
|
3571 | 3671 | .ui-datepicker td span, .ui-datepicker td a { display: block; padding: 3px; text-align: center; text-decoration: none; } |
|
3572 | 3672 | .ui-datepicker td span, .ui-datepicker td a:hover { background: #376ea6; color: #ffffff; } |
|
3573 | 3673 | .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; } |
|
3574 | 3674 | .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } |
|
3575 | 3675 | .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } |
|
3576 | 3676 | .ui-datepicker td span, .ui-datepicker td.ui-datepicker-today a { background: #DDDDDD; color: #585858; } |
|
3577 | 3677 | .ui-datepicker td span, .ui-datepicker td.ui-datepicker-current-day a { background: #376ea6; color: #ffffff; } |
|
3578 | 3678 | |
|
3579 | 3679 | /* ----------------------------------------------------------- |
|
3580 | 3680 | jquery ui -> datepicker / multiple calenders |
|
3581 | 3681 | ----------------------------------------------------------- */ |
|
3582 | 3682 | .ui-datepicker.ui-datepicker-multi { width:auto; } |
|
3583 | 3683 | .ui-datepicker-multi .ui-datepicker-group { float:left; } |
|
3584 | 3684 | .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } |
|
3585 | 3685 | .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } |
|
3586 | 3686 | .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } |
|
3587 | 3687 | .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } |
|
3588 | 3688 | .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } |
|
3589 | 3689 | .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } |
|
3590 | 3690 | .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } |
|
3591 | 3691 | .ui-datepicker-row-break { clear:both; width:100%; } |
|
3592 | 3692 | |
|
3593 | 3693 | /* ----------------------------------------------------------- |
|
3594 | 3694 | jquery ui -> datepicker / rtl support |
|
3595 | 3695 | ----------------------------------------------------------- */ |
|
3596 | 3696 | .ui-datepicker-rtl { direction: rtl; } |
|
3597 | 3697 | .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } |
|
3598 | 3698 | .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } |
|
3599 | 3699 | .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } |
|
3600 | 3700 | .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } |
|
3601 | 3701 | .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } |
|
3602 | 3702 | .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } |
|
3603 | 3703 | .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } |
|
3604 | 3704 | .ui-datepicker-rtl .ui-datepicker-group { float:right; } |
|
3605 | 3705 | .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } |
|
3606 | 3706 | .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } |
|
3607 | 3707 | |
|
3608 | 3708 | /* ----------------------------------------------------------- |
|
3609 | 3709 | jquery ui -> select styling |
|
3610 | 3710 | ----------------------------------------------------------- */ |
|
3611 | 3711 | |
|
3612 | 3712 | .ui-selectmenu |
|
3613 | 3713 | { |
|
3614 | 3714 | display: block; |
|
3615 | 3715 | position: relative; |
|
3616 | 3716 | overflow: hidden; |
|
3617 | 3717 | background: #ffffff; |
|
3618 | 3718 | border-top: 1px solid #b3b3b3; |
|
3619 | 3719 | border-left: 1px solid #b3b3b3; |
|
3620 | 3720 | border-right: 1px solid #eaeaea; |
|
3621 | 3721 | border-bottom: 1px solid #eaeaea; |
|
3622 | 3722 | text-align: left; |
|
3623 | 3723 | text-decoration: none; |
|
3624 | 3724 | } |
|
3625 | 3725 | |
|
3626 | 3726 | .ui-selectmenu-icon { position:absolute; right:6px; margin-top:-8px; top: 50%; } |
|
3627 | 3727 | .ui-selectmenu-menu { padding:0; margin:0; list-style:none; position:absolute; top: 0; visibility: hidden; overflow: auto; } |
|
3628 | 3728 | .ui-selectmenu-open { background: #ffffff; border: 1px solid #666666; border-top: none; visibility: visible; } |
|
3629 | 3729 | .ui-selectmenu-menu-popup { margin-top: -1px; } |
|
3630 | 3730 | .ui-selectmenu-menu-dropdown { } |
|
3631 | 3731 | .ui-selectmenu-menu li { padding:0; margin:0; display: block; border-top: 1px dotted transparent; border-bottom: 1px dotted transparent; border-right-width: 0 !important; border-left-width: 0 !important; } |
|
3632 | 3732 | .ui-selectmenu-menu li a,.ui-selectmenu-status {line-height: 1.4em; display:block; padding: 5px 0 5px 8px; outline:none; text-decoration:none; color: #000000; } |
|
3633 | 3733 | .ui-selectmenu-menu li.ui-selectmenu-hasIcon a, |
|
3634 | 3734 | .ui-selectmenu-hasIcon .ui-selectmenu-status { margin-left: 5px; padding-left: 20px; position: relative; } |
|
3635 | 3735 | .ui-selectmenu-menu li .ui-icon, .ui-selectmenu-status .ui-icon { position: absolute; top: 1em; margin-top: -8px; left: 0; } |
|
3636 | 3736 | .ui-selectmenu-status { line-height: 1.4em; } |
|
3637 | 3737 | .ui-selectmenu-open li.ui-selectmenu-item-focus { background: #376ea6; } |
|
3638 | 3738 | .ui-selectmenu-open li.ui-selectmenu-item-focus a { color: #ffffff; } |
|
3639 | 3739 | .ui-selectmenu-open li.ui-selectmenu-item-selected { background: #dfdfdf; } |
|
3640 | 3740 | .ui-selectmenu-open li.ui-selectmenu-item-selected a { color: #000000; } |
|
3641 | 3741 | .ui-selectmenu-menu li span,.ui-selectmenu-status span { display:block; margin-bottom: .2em; } |
|
3642 | 3742 | .ui-selectmenu-menu .ui-selectmenu-group .ui-selectmenu-group-label { line-height: 1.4em; display:block; padding:.6em .5em 0; } |
|
3643 | 3743 | .ui-selectmenu-menu .ui-selectmenu-group ul { margin: 0; padding: 0; } No newline at end of file |
General Comments 0
You need to be logged in to leave comments.
Login now