##// END OF EJS Templates
beatify alert messages, css fixes
marcink -
r1598:e9a19edf beta
parent child Browse files
Show More
This diff has been collapsed as it changes many lines, (527 lines changed) Show them Hide them
@@ -1,2756 +1,2969 b''
1 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
1 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td
2 {
2 3 border:0;
3 4 outline:0;
4 5 font-size:100%;
5 6 vertical-align:baseline;
6 7 background:transparent;
7 8 margin:0;
8 9 padding:0;
9 10 }
10 11
11 12 body {
12 13 line-height:1;
13 14 height:100%;
14 15 background:url("../images/background.png") repeat scroll 0 0 #B0B0B0;
15 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
16 font-size:12px;
16 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
17 Lucida Sans Unicode, Arial, sans-serif; font-size : 12px;
17 18 color:#000;
18 19 margin:0;
19 20 padding:0;
21 font-size: 12px;
20 22 }
21 23
22 24 ol,ul {
23 25 list-style:none;
24 26 }
25 27
26 28 blockquote,q {
27 29 quotes:none;
28 30 }
29 31
30 32 blockquote:before,blockquote:after,q:before,q:after {
31 33 content:none;
32 34 }
33 35
34 36 :focus {
35 37 outline:0;
36 38 }
37 39
38 40 del {
39 41 text-decoration:line-through;
40 42 }
41 43
42 44 table {
43 45 border-collapse:collapse;
44 46 border-spacing:0;
45 47 }
46 48
47 49 html {
48 50 height:100%;
49 51 }
50 52
51 53 a {
52 54 color:#003367;
53 55 text-decoration:none;
54 56 cursor:pointer;
55 57 }
56 58
57 59 a:hover {
58 60 color:#316293;
59 61 text-decoration:underline;
60 62 }
61 63
62 64 h1,h2,h3,h4,h5,h6 {
63 65 color:#292929;
64 66 font-weight:700;
65 67 }
66 68
67 69 h1 {
68 70 font-size:22px;
69 71 }
70 72
71 73 h2 {
72 74 font-size:20px;
73 75 }
74 76
75 77 h3 {
76 78 font-size:18px;
77 79 }
78 80
79 81 h4 {
80 82 font-size:16px;
81 83 }
82 84
83 85 h5 {
84 86 font-size:14px;
85 87 }
86 88
87 89 h6 {
88 90 font-size:11px;
89 91 }
90 92
91 93 ul.circle {
92 94 list-style-type:circle;
93 95 }
94 96
95 97 ul.disc {
96 98 list-style-type:disc;
97 99 }
98 100
99 101 ul.square {
100 102 list-style-type:square;
101 103 }
102 104
103 105 ol.lower-roman {
104 106 list-style-type:lower-roman;
105 107 }
106 108
107 109 ol.upper-roman {
108 110 list-style-type:upper-roman;
109 111 }
110 112
111 113 ol.lower-alpha {
112 114 list-style-type:lower-alpha;
113 115 }
114 116
115 117 ol.upper-alpha {
116 118 list-style-type:upper-alpha;
117 119 }
118 120
119 121 ol.decimal {
120 122 list-style-type:decimal;
121 123 }
122 124
123 125 div.color {
124 126 clear:both;
125 127 overflow:hidden;
126 128 position:absolute;
127 129 background:#FFF;
128 130 margin:7px 0 0 60px;
129 131 padding:1px 1px 1px 0;
130 132 }
131 133
132 134 div.color a {
133 135 width:15px;
134 136 height:15px;
135 137 display:block;
136 138 float:left;
137 139 margin:0 0 0 1px;
138 140 padding:0;
139 141 }
140 142
141 143 div.options {
142 144 clear:both;
143 145 overflow:hidden;
144 146 position:absolute;
145 147 background:#FFF;
146 148 margin:7px 0 0 162px;
147 149 padding:0;
148 150 }
149 151
150 152 div.options a {
151 153 height:1%;
152 154 display:block;
153 155 text-decoration:none;
154 156 margin:0;
155 157 padding:3px 8px;
156 158 }
157 159
158 160 .top-left-rounded-corner {
159 161 -webkit-border-top-left-radius: 8px;
160 162 -khtml-border-radius-topleft: 8px;
161 163 -moz-border-radius-topleft: 8px;
162 164 border-top-left-radius: 8px;
163 165 }
164 166
165 167 .top-right-rounded-corner {
166 168 -webkit-border-top-right-radius: 8px;
167 169 -khtml-border-radius-topright: 8px;
168 170 -moz-border-radius-topright: 8px;
169 171 border-top-right-radius: 8px;
170 172 }
171 173
172 174 .bottom-left-rounded-corner {
173 175 -webkit-border-bottom-left-radius: 8px;
174 176 -khtml-border-radius-bottomleft: 8px;
175 177 -moz-border-radius-bottomleft: 8px;
176 178 border-bottom-left-radius: 8px;
177 179 }
178 180
179 181 .bottom-right-rounded-corner {
180 182 -webkit-border-bottom-right-radius: 8px;
181 183 -khtml-border-radius-bottomright: 8px;
182 184 -moz-border-radius-bottomright: 8px;
183 185 border-bottom-right-radius: 8px;
184 186 }
185 187
186
187 188 #header {
188 189 margin:0;
189 190 padding:0 10px;
190 191 }
191 192
192
193 193 #header ul#logged-user{
194 194 margin-bottom:5px !important;
195 195 -webkit-border-radius: 0px 0px 8px 8px;
196 196 -khtml-border-radius: 0px 0px 8px 8px;
197 197 -moz-border-radius: 0px 0px 8px 8px;
198 198 border-radius: 0px 0px 8px 8px;
199 199 height:37px;
200 background:url("../images/header_inner.png") repeat-x scroll 0 0 #003367;
200 background: url("../images/header_inner.png") repeat-x scroll 0 0
201 #003367;
201 202 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
202 203 }
203 204
204 205 #header ul#logged-user li {
205 206 list-style:none;
206 207 float:left;
207 208 margin:8px 0 0;
208 209 padding:4px 12px;
209 210 border-left: 1px solid #316293;
210 211 }
211 212
212 213 #header ul#logged-user li.first {
213 214 border-left:none;
214 215 margin:4px;
215 216 }
216 217
217 218 #header ul#logged-user li.first div.gravatar {
218 219 margin-top:-2px;
219 220 }
220 221
221 222 #header ul#logged-user li.first div.account {
222 223 padding-top:4px;
223 224 float:left;
224 225 }
225 226
226 227 #header ul#logged-user li.last {
227 228 border-right:none;
228 229 }
229 230
230 231 #header ul#logged-user li a {
231 232 color:#fff;
232 233 font-weight:700;
233 234 text-decoration:none;
234 235 }
235 236
236 237 #header ul#logged-user li a:hover {
237 238 text-decoration:underline;
238 239 }
239 240
240 241 #header ul#logged-user li.highlight a {
241 242 color:#fff;
242 243 }
243 244
244 245 #header ul#logged-user li.highlight a:hover {
245 246 color:#FFF;
246 247 }
247 248
248 249 #header #header-inner {
249 250 min-height:40px;
250 251 clear:both;
251 252 position:relative;
252 253 background:#003367 url("../images/header_inner.png") repeat-x;
253 254 margin:0;
254 255 padding:0;
255 256 display:block;
256 257 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
257 258 -webkit-border-radius: 4px 4px 4px 4px;
258 259 -khtml-border-radius: 4px 4px 4px 4px;
259 260 -moz-border-radius: 4px 4px 4px 4px;
260 261 border-radius: 4px 4px 4px 4px;
261 262 }
262 263
263 264 #header #header-inner #home a {
264 265 height:40px;
265 266 width:46px;
266 267 display:block;
267 268 background:url("../images/button_home.png");
268 269 background-position:0 0;
269 270 margin:0;
270 271 padding:0;
271 272 }
272 273
273 274 #header #header-inner #home a:hover {
274 275 background-position:0 -40px;
275 276 }
277
276 278 #header #header-inner #logo {
277 279 float: left;
278 280 position: absolute;
279 281 }
282
280 283 #header #header-inner #logo h1 {
281 284 color:#FFF;
282 285 font-size:18px;
283 286 margin:10px 0 0 13px;
284 287 padding:0;
285 288 }
286 289
287 290 #header #header-inner #logo a {
288 291 color:#fff;
289 292 text-decoration:none;
290 293 }
291 294
292 295 #header #header-inner #logo a:hover {
293 296 color:#bfe3ff;
294 297 }
295 298
296 299 #header #header-inner #quick,#header #header-inner #quick ul {
297 300 position:relative;
298 301 float:right;
299 302 list-style-type:none;
300 303 list-style-position:outside;
301 304 margin:6px 5px 0 0;
302 305 padding:0;
303 306 }
304 307
305 308 #header #header-inner #quick li {
306 309 position:relative;
307 310 float:left;
308 311 margin:0 5px 0 0;
309 312 padding:0;
310 313 }
311 314
312 315 #header #header-inner #quick li a {
313 316 top:0;
314 317 left:0;
315 318 height:1%;
316 319 display:block;
317 320 clear:both;
318 321 overflow:hidden;
319 322 color:#FFF;
320 323 font-weight:700;
321 324 text-decoration:none;
322 325 background:#369;
323 326 padding:0;
324 327 -webkit-border-radius: 4px 4px 4px 4px;
325 328 -khtml-border-radius: 4px 4px 4px 4px;
326 329 -moz-border-radius: 4px 4px 4px 4px;
327 330 border-radius: 4px 4px 4px 4px;
328 331 }
329 332
330 333 #header #header-inner #quick li span.short {
331 334 padding:9px 6px 8px 6px;
332 335 }
333 336
334 337 #header #header-inner #quick li span {
335 338 top:0;
336 339 right:0;
337 340 height:1%;
338 341 display:block;
339 342 float:left;
340 343 border-left:1px solid #3f6f9f;
341 344 margin:0;
342 345 padding:10px 12px 8px 10px;
343 346 }
344 347
345 348 #header #header-inner #quick li span.normal {
346 349 border:none;
347 350 padding:10px 12px 8px;
348 351 }
349 352
350 353 #header #header-inner #quick li span.icon {
351 354 top:0;
352 355 left:0;
353 356 border-left:none;
354 357 border-right:1px solid #2e5c89;
355 358 padding:8px 6px 4px;
356 359 }
357 360
358 361 #header #header-inner #quick li span.icon_short {
359 362 top:0;
360 363 left:0;
361 364 border-left:none;
362 365 border-right:1px solid #2e5c89;
363 366 padding:8px 6px 4px;
364 367 }
365 #header #header-inner #quick li span.icon img, #header #header-inner #quick li span.icon_short img {
368
369 #header #header-inner #quick li span.icon img,#header #header-inner #quick li span.icon_short img
370 {
366 371 margin: 0px -2px 0px 0px;
367 372 }
368 373
369 374 #header #header-inner #quick li a:hover {
370 375 background:#4e4e4e no-repeat top left;
371 376 }
372 377
373 378 #header #header-inner #quick li a:hover span {
374 379 border-left:1px solid #545454;
375 380 }
376 381
377 #header #header-inner #quick li a:hover span.icon,#header #header-inner #quick li a:hover span.icon_short {
382 #header #header-inner #quick li a:hover span.icon,#header #header-inner #quick li a:hover span.icon_short
383 {
378 384 border-left:none;
379 385 border-right:1px solid #464646;
380 386 }
381 387
382 388 #header #header-inner #quick ul {
383 389 top:29px;
384 390 right:0;
385 391 min-width:200px;
386 392 display:none;
387 393 position:absolute;
388 394 background:#FFF;
389 395 border:1px solid #666;
390 396 border-top:1px solid #003367;
391 397 z-index:100;
392 398 margin:0;
393 399 padding:0;
394 400 }
395 401
396 402 #header #header-inner #quick ul.repo_switcher {
397 403 max-height:275px;
398 404 overflow-x:hidden;
399 405 overflow-y:auto;
400 406 }
407
401 408 #header #header-inner #quick ul.repo_switcher li.qfilter_rs {
402 409 float:none;
403 410 margin:0;
404 411 border-bottom:2px solid #003367;
405 412 }
406 413
407
408 414 #header #header-inner #quick .repo_switcher_type{
409 415 position:absolute;
410 416 left:0;
411 417 top:9px;
412
413 }
418 }
419
414 420 #header #header-inner #quick li ul li {
415 421 border-bottom:1px solid #ddd;
416 422 }
417 423
418 424 #header #header-inner #quick li ul li a {
419 425 width:182px;
420 426 height:auto;
421 427 display:block;
422 428 float:left;
423 429 background:#FFF;
424 430 color:#003367;
425 431 font-weight:400;
426 432 margin:0;
427 433 padding:7px 9px;
428 434 }
429 435
430 436 #header #header-inner #quick li ul li a:hover {
431 437 color:#000;
432 438 background:#FFF;
433 439 }
434 440
435 441 #header #header-inner #quick ul ul {
436 442 top:auto;
437 443 }
438 444
439 445 #header #header-inner #quick li ul ul {
440 446 right:200px;
441 447 max-height:275px;
442 448 overflow:auto;
443 449 overflow-x:hidden;
444 450 white-space:normal;
445 451 }
446 452
447 #header #header-inner #quick li ul li a.journal,#header #header-inner #quick li ul li a.journal:hover {
448 background:url("../images/icons/book.png") no-repeat scroll 4px 9px #FFF;
453 #header #header-inner #quick li ul li a.journal,#header #header-inner #quick li ul li a.journal:hover
454 {
455 background: url("../images/icons/book.png") no-repeat scroll 4px 9px
456 #FFF;
449 457 width:167px;
450 458 margin:0;
451 459 padding:12px 9px 7px 24px;
452 460 }
453 461
454 #header #header-inner #quick li ul li a.private_repo,#header #header-inner #quick li ul li a.private_repo:hover {
455 background:url("../images/icons/lock.png") no-repeat scroll 4px 9px #FFF;
462 #header #header-inner #quick li ul li a.private_repo,#header #header-inner #quick li ul li a.private_repo:hover
463 {
464 background: url("../images/icons/lock.png") no-repeat scroll 4px 9px
465 #FFF;
456 466 min-width:167px;
457 467 margin:0;
458 468 padding:12px 9px 7px 24px;
459 469 }
460 470
461 #header #header-inner #quick li ul li a.public_repo,#header #header-inner #quick li ul li a.public_repo:hover {
462 background:url("../images/icons/lock_open.png") no-repeat scroll 4px 9px #FFF;
471 #header #header-inner #quick li ul li a.public_repo,#header #header-inner #quick li ul li a.public_repo:hover
472 {
473 background: url("../images/icons/lock_open.png") no-repeat scroll 4px
474 9px #FFF;
463 475 min-width:167px;
464 476 margin:0;
465 477 padding:12px 9px 7px 24px;
466 478 }
467 479
468 #header #header-inner #quick li ul li a.hg,#header #header-inner #quick li ul li a.hg:hover {
469 background:url("../images/icons/hgicon.png") no-repeat scroll 4px 9px #FFF;
480 #header #header-inner #quick li ul li a.hg,#header #header-inner #quick li ul li a.hg:hover
481 {
482 background: url("../images/icons/hgicon.png") no-repeat scroll 4px 9px
483 #FFF;
470 484 min-width:167px;
471 485 margin:0 0 0 14px;
472 486 padding:12px 9px 7px 24px;
473 487 }
474 488
475 #header #header-inner #quick li ul li a.git,#header #header-inner #quick li ul li a.git:hover {
476 background:url("../images/icons/giticon.png") no-repeat scroll 4px 9px #FFF;
489 #header #header-inner #quick li ul li a.git,#header #header-inner #quick li ul li a.git:hover
490 {
491 background: url("../images/icons/giticon.png") no-repeat scroll 4px 9px
492 #FFF;
477 493 min-width:167px;
478 494 margin:0 0 0 14px;
479 495 padding:12px 9px 7px 24px;
480 496 }
481 497
482 #header #header-inner #quick li ul li a.repos,#header #header-inner #quick li ul li a.repos:hover {
483 background:url("../images/icons/database_edit.png") no-repeat scroll 4px 9px #FFF;
498 #header #header-inner #quick li ul li a.repos,#header #header-inner #quick li ul li a.repos:hover
499 {
500 background: url("../images/icons/database_edit.png") no-repeat scroll
501 4px 9px #FFF;
484 502 width:167px;
485 503 margin:0;
486 504 padding:12px 9px 7px 24px;
487 505 }
488 506
489 #header #header-inner #quick li ul li a.repos_groups,#header #header-inner #quick li ul li a.repos_groups:hover {
490 background:url("../images/icons/database_link.png") no-repeat scroll 4px 9px #FFF;
507 #header #header-inner #quick li ul li a.repos_groups,#header #header-inner #quick li ul li a.repos_groups:hover
508 {
509 background: url("../images/icons/database_link.png") no-repeat scroll
510 4px 9px #FFF;
491 511 width:167px;
492 512 margin:0;
493 513 padding:12px 9px 7px 24px;
494 514 }
495 515
496 #header #header-inner #quick li ul li a.users,#header #header-inner #quick li ul li a.users:hover {
516 #header #header-inner #quick li ul li a.users,#header #header-inner #quick li ul li a.users:hover
517 {
497 518 background:#FFF url("../images/icons/user_edit.png") no-repeat 4px 9px;
498 519 width:167px;
499 520 margin:0;
500 521 padding:12px 9px 7px 24px;
501 522 }
502 523
503 #header #header-inner #quick li ul li a.groups,#header #header-inner #quick li ul li a.groups:hover {
524 #header #header-inner #quick li ul li a.groups,#header #header-inner #quick li ul li a.groups:hover
525 {
504 526 background:#FFF url("../images/icons/group_edit.png") no-repeat 4px 9px;
505 527 width:167px;
506 528 margin:0;
507 529 padding:12px 9px 7px 24px;
508 530 }
509 531
510 #header #header-inner #quick li ul li a.settings,#header #header-inner #quick li ul li a.settings:hover {
532 #header #header-inner #quick li ul li a.settings,#header #header-inner #quick li ul li a.settings:hover
533 {
511 534 background:#FFF url("../images/icons/cog.png") no-repeat 4px 9px;
512 535 width:167px;
513 536 margin:0;
514 537 padding:12px 9px 7px 24px;
515 538 }
516 539
517 #header #header-inner #quick li ul li a.permissions,#header #header-inner #quick li ul li a.permissions:hover {
540 #header #header-inner #quick li ul li a.permissions,#header #header-inner #quick li ul li a.permissions:hover
541 {
518 542 background:#FFF url("../images/icons/key.png") no-repeat 4px 9px;
519 543 width:167px;
520 544 margin:0;
521 545 padding:12px 9px 7px 24px;
522 546 }
523 547
524 #header #header-inner #quick li ul li a.ldap,#header #header-inner #quick li ul li a.ldap:hover {
548 #header #header-inner #quick li ul li a.ldap,#header #header-inner #quick li ul li a.ldap:hover
549 {
525 550 background:#FFF url("../images/icons/server_key.png") no-repeat 4px 9px;
526 551 width:167px;
527 552 margin:0;
528 553 padding:12px 9px 7px 24px;
529 554 }
530 555
531 #header #header-inner #quick li ul li a.fork,#header #header-inner #quick li ul li a.fork:hover {
532 background:#FFF url("../images/icons/arrow_divide.png") no-repeat 4px 9px;
556 #header #header-inner #quick li ul li a.fork,#header #header-inner #quick li ul li a.fork:hover
557 {
558 background: #FFF url("../images/icons/arrow_divide.png") no-repeat 4px
559 9px;
533 560 width:167px;
534 561 margin:0;
535 562 padding:12px 9px 7px 24px;
536 563 }
537 564
538 #header #header-inner #quick li ul li a.search,#header #header-inner #quick li ul li a.search:hover {
565 #header #header-inner #quick li ul li a.search,#header #header-inner #quick li ul li a.search:hover
566 {
539 567 background:#FFF url("../images/icons/search_16.png") no-repeat 4px 9px;
540 568 width:167px;
541 569 margin:0;
542 570 padding:12px 9px 7px 24px;
543 571 }
544 572
545 #header #header-inner #quick li ul li a.delete,#header #header-inner #quick li ul li a.delete:hover {
573 #header #header-inner #quick li ul li a.delete,#header #header-inner #quick li ul li a.delete:hover
574 {
546 575 background:#FFF url("../images/icons/delete.png") no-repeat 4px 9px;
547 576 width:167px;
548 577 margin:0;
549 578 padding:12px 9px 7px 24px;
550 579 }
551 580
552 #header #header-inner #quick li ul li a.branches,#header #header-inner #quick li ul li a.branches:hover {
553 background:#FFF url("../images/icons/arrow_branch.png") no-repeat 4px 9px;
581 #header #header-inner #quick li ul li a.branches,#header #header-inner #quick li ul li a.branches:hover
582 {
583 background: #FFF url("../images/icons/arrow_branch.png") no-repeat 4px
584 9px;
554 585 width:167px;
555 586 margin:0;
556 587 padding:12px 9px 7px 24px;
557 588 }
558 589
559 #header #header-inner #quick li ul li a.tags,#header #header-inner #quick li ul li a.tags:hover {
590 #header #header-inner #quick li ul li a.tags,#header #header-inner #quick li ul li a.tags:hover
591 {
560 592 background:#FFF url("../images/icons/tag_blue.png") no-repeat 4px 9px;
561 593 width:167px;
562 594 margin:0;
563 595 padding:12px 9px 7px 24px;
564 596 }
565 597
566 #header #header-inner #quick li ul li a.admin,#header #header-inner #quick li ul li a.admin:hover {
598 #header #header-inner #quick li ul li a.admin,#header #header-inner #quick li ul li a.admin:hover
599 {
567 600 background:#FFF url("../images/icons/cog_edit.png") no-repeat 4px 9px;
568 601 width:167px;
569 602 margin:0;
570 603 padding:12px 9px 7px 24px;
571 604 }
572 605
573
574 606 .groups_breadcrumbs a {
575 607 color: #fff;
576 608 }
609
577 610 .groups_breadcrumbs a:hover {
578 611 color: #bfe3ff;
579 612 text-decoration: none;
580 613 }
581 614
582 615 .quick_repo_menu{
583 background: #FFF url("../images/vertical-indicator.png") 8px 50% no-repeat !important;
616 background: #FFF url("../images/vertical-indicator.png") 8px 50%
617 no-repeat !important;
584 618 cursor: pointer;
585 619 width: 8px;
586 620 }
621
587 622 .quick_repo_menu.active{
588 background: #FFF url("../images/horizontal-indicator.png") 4px 50% no-repeat !important;
623 background: #FFF url("../images/horizontal-indicator.png") 4px 50%
624 no-repeat !important;
589 625 cursor: pointer;
590 626 }
627
591 628 .quick_repo_menu .menu_items{
592 629 margin-top:6px;
593 630 width:150px;
594 631 position: absolute;
595 632 background-color:#FFF;
596 633 background: none repeat scroll 0 0 #FFFFFF;
597 634 border-color: #003367 #666666 #666666;
598 635 border-right: 1px solid #666666;
599 636 border-style: solid;
600 637 border-width: 1px;
601 638 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
602 639 }
640
603 641 .quick_repo_menu .menu_items li{
604 642 padding:0 !important;
605 643 }
644
606 645 .quick_repo_menu .menu_items a{
607 646 display: block;
608 647 padding: 4px 12px 4px 8px;
609 648 }
649
610 650 .quick_repo_menu .menu_items a:hover{
611 651 background-color: #EEE;
612 652 text-decoration: none;
613
614 }
653 }
654
615 655 .quick_repo_menu .menu_items .icon img{
616 656 margin-bottom:-2px;
617 657 }
658
618 659 .quick_repo_menu .menu_items.hidden{
619 660 display: none;
620 661 }
621 662
622 663 #content #left {
623 664 left:0;
624 665 width:280px;
625 666 position:absolute;
626 667 }
627 668
628 669 #content #right {
629 670 margin:0 60px 10px 290px;
630 671 }
631 672
632 673 #content div.box {
633 674 clear:both;
634 675 overflow:hidden;
635 676 background:#fff;
636 677 margin:0 0 10px;
637 678 padding:0 0 10px;
638 679 -webkit-border-radius: 4px 4px 4px 4px;
639 680 -khtml-border-radius: 4px 4px 4px 4px;
640 681 -moz-border-radius: 4px 4px 4px 4px;
641 682 border-radius: 4px 4px 4px 4px;
642 683 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
643
644 684 }
645 685
646 686 #content div.box-left {
647 687 width:49%;
648 688 clear:none;
649 689 float:left;
650 690 margin:0 0 10px;
651 691 }
652 692
653 693 #content div.box-right {
654 694 width:49%;
655 695 clear:none;
656 696 float:right;
657 697 margin:0 0 10px;
658 698 }
659 699
660 700 #content div.box div.title {
661 701 clear:both;
662 702 overflow:hidden;
663 background:#369 url("../images/header_inner.png") repeat-x;
703 background-color: #eedc94;
704 background-repeat: repeat-x;
705 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
706 to(#eedc94) );
707 background-image: -moz-linear-gradient(top, #003b76, #00376e);
708 background-image: -ms-linear-gradient(top, #003b76, #00376e);
709 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
710 color-stop(100%, #00376e) );
711 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
712 background-image: -o-linear-gradient(top, #003b76, #00376e) );
713 background-image: linear-gradient(top, #003b76, #00376e);
714 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
715 endColorstr='#00376e', GradientType=0 );
664 716 margin:0 0 20px;
665 717 padding:0;
666 718 }
667 719
668 720 #content div.box div.title h5 {
669 721 float:left;
670 722 border:none;
671 723 color:#fff;
672 724 text-transform:uppercase;
673 725 margin:0;
674 726 padding:11px 0 11px 10px;
675 727 }
676 728
677 729 #content div.box div.title ul.links li {
678 730 list-style:none;
679 731 float:left;
680 732 margin:0;
681 733 padding:0;
682 734 }
683 735
684 736 #content div.box div.title ul.links li a {
685 737 border-left: 1px solid #316293;
686 738 color: #FFFFFF;
687 739 display: block;
688 740 float: left;
689 741 font-size: 13px;
690 742 font-weight: 700;
691 743 height: 1%;
692 744 margin: 0;
693 745 padding: 11px 22px 12px;
694 746 text-decoration: none;
695 747 }
696 748
697 #content div.box h1,#content div.box h2,#content div.box h3,#content div.box h4,#content div.box h5,#content div.box h6 {
749 #content div.box h1,#content div.box h2,#content div.box h3,#content div.box h4,#content div.box h5,#content div.box h6
750 {
698 751 clear:both;
699 752 overflow:hidden;
700 753 border-bottom:1px solid #DDD;
701 754 margin:10px 20px;
702 755 padding:0 0 15px;
703 756 }
704 757
705 758 #content div.box p {
706 759 color:#5f5f5f;
707 760 font-size:12px;
708 761 line-height:150%;
709 762 margin:0 24px 10px;
710 763 padding:0;
711 764 }
712 765
713 766 #content div.box blockquote {
714 767 border-left:4px solid #DDD;
715 768 color:#5f5f5f;
716 769 font-size:11px;
717 770 line-height:150%;
718 771 margin:0 34px;
719 772 padding:0 0 0 14px;
720 773 }
721 774
722 775 #content div.box blockquote p {
723 776 margin:10px 0;
724 777 padding:0;
725 778 }
726 779
727 780 #content div.box dl {
728 781 margin:10px 24px;
729 782 }
730 783
731 784 #content div.box dt {
732 785 font-size:12px;
733 786 margin:0;
734 787 }
735 788
736 789 #content div.box dd {
737 790 font-size:12px;
738 791 margin:0;
739 792 padding:8px 0 8px 15px;
740 793 }
741 794
742 795 #content div.box li {
743 796 font-size:12px;
744 797 padding:4px 0;
745 798 }
746 799
747 800 #content div.box ul.disc,#content div.box ul.circle {
748 801 margin:10px 24px 10px 38px;
749 802 }
750 803
751 804 #content div.box ul.square {
752 805 margin:10px 24px 10px 40px;
753 806 }
754 807
755 808 #content div.box img.left {
756 809 border:none;
757 810 float:left;
758 811 margin:10px 10px 10px 0;
759 812 }
760 813
761 814 #content div.box img.right {
762 815 border:none;
763 816 float:right;
764 817 margin:10px 0 10px 10px;
765 818 }
766 819
767 820 #content div.box div.messages {
768 821 clear:both;
769 822 overflow:hidden;
770 823 margin:0 20px;
771 824 padding:0;
772 825 }
773 826
774 827 #content div.box div.message {
775 828 clear:both;
776 829 overflow:hidden;
777 830 margin:0;
778 831 padding:10px 0;
779 832 }
780 833
781 834 #content div.box div.message a {
782 835 font-weight:400 !important;
783 836 }
784 837
785 838 #content div.box div.message div.image {
786 839 float:left;
787 840 margin:9px 0 0 5px;
788 841 padding:6px;
789 842 }
790 843
791 844 #content div.box div.message div.image img {
792 845 vertical-align:middle;
793 846 margin:0;
794 847 }
795 848
796 849 #content div.box div.message div.text {
797 850 float:left;
798 851 margin:0;
799 852 padding:9px 6px;
800 853 }
801 854
802 855 #content div.box div.message div.dismiss a {
803 856 height:16px;
804 857 width:16px;
805 858 display:block;
806 859 background:url("../images/icons/cross.png") no-repeat;
807 860 margin:15px 14px 0 0;
808 861 padding:0;
809 862 }
810 863
811 #content div.box div.message div.text h1,#content div.box div.message div.text h2,#content div.box div.message div.text h3,#content div.box div.message div.text h4,#content div.box div.message div.text h5,#content div.box div.message div.text h6 {
864 #content div.box div.message div.text h1,#content div.box div.message div.text h2,#content div.box div.message div.text h3,#content div.box div.message div.text h4,#content div.box div.message div.text h5,#content div.box div.message div.text h6
865 {
812 866 border:none;
813 867 margin:0;
814 868 padding:0;
815 869 }
816 870
817 871 #content div.box div.message div.text span {
818 872 height:1%;
819 873 display:block;
820 874 margin:0;
821 875 padding:5px 0 0;
822 876 }
823 877
824 878 #content div.box div.message-error {
825 879 height:1%;
826 880 clear:both;
827 881 overflow:hidden;
828 882 background:#FBE3E4;
829 883 border:1px solid #FBC2C4;
830 884 color:#860006;
831 885 }
832 886
833 887 #content div.box div.message-error h6 {
834 888 color:#860006;
835 889 }
836 890
837 891 #content div.box div.message-warning {
838 892 height:1%;
839 893 clear:both;
840 894 overflow:hidden;
841 895 background:#FFF6BF;
842 896 border:1px solid #FFD324;
843 897 color:#5f5200;
844 898 }
845 899
846 900 #content div.box div.message-warning h6 {
847 901 color:#5f5200;
848 902 }
849 903
850 904 #content div.box div.message-notice {
851 905 height:1%;
852 906 clear:both;
853 907 overflow:hidden;
854 908 background:#8FBDE0;
855 909 border:1px solid #6BACDE;
856 910 color:#003863;
857 911 }
858 912
859 913 #content div.box div.message-notice h6 {
860 914 color:#003863;
861 915 }
862 916
863 917 #content div.box div.message-success {
864 918 height:1%;
865 919 clear:both;
866 920 overflow:hidden;
867 921 background:#E6EFC2;
868 922 border:1px solid #C6D880;
869 923 color:#4e6100;
870 924 }
871 925
872 926 #content div.box div.message-success h6 {
873 927 color:#4e6100;
874 928 }
875 929
876 930 #content div.box div.form div.fields div.field {
877 931 height:1%;
878 932 border-bottom:1px solid #DDD;
879 933 clear:both;
880 934 margin:0;
881 935 padding:10px 0;
882 936 }
883 937
884 938 #content div.box div.form div.fields div.field-first {
885 939 padding:0 0 10px;
886 940 }
887 941
888 942 #content div.box div.form div.fields div.field-noborder {
889 943 border-bottom:0 !important;
890 944 }
891 945
892 946 #content div.box div.form div.fields div.field span.error-message {
893 947 height:1%;
894 948 display:inline-block;
895 949 color:red;
896 950 margin:8px 0 0 4px;
897 951 padding:0;
898 952 }
899 953
900 954 #content div.box div.form div.fields div.field span.success {
901 955 height:1%;
902 956 display:block;
903 957 color:#316309;
904 958 margin:8px 0 0;
905 959 padding:0;
906 960 }
907 961
908 962 #content div.box div.form div.fields div.field div.label {
909 963 left:70px;
910 964 width:155px;
911 965 position:absolute;
912 966 margin:0;
913 967 padding:8px 0 0 5px;
914 968 }
915 969
916 #content div.box-left div.form div.fields div.field div.label,#content div.box-right div.form div.fields div.field div.label {
970 #content div.box-left div.form div.fields div.field div.label,#content div.box-right div.form div.fields div.field div.label
971 {
917 972 clear:both;
918 973 overflow:hidden;
919 974 left:0;
920 975 width:auto;
921 976 position:relative;
922 977 margin:0;
923 978 padding:0 0 8px;
924 979 }
925 980
926 981 #content div.box div.form div.fields div.field div.label-select {
927 982 padding:5px 0 0 5px;
928 983 }
929 984
930 #content div.box-left div.form div.fields div.field div.label-select,#content div.box-right div.form div.fields div.field div.label-select {
985 #content div.box-left div.form div.fields div.field div.label-select,#content div.box-right div.form div.fields div.field div.label-select
986 {
931 987 padding:0 0 8px;
932 988 }
933 989
934 #content div.box-left div.form div.fields div.field div.label-textarea,#content div.box-right div.form div.fields div.field div.label-textarea {
990 #content div.box-left div.form div.fields div.field div.label-textarea,#content div.box-right div.form div.fields div.field div.label-textarea
991 {
935 992 padding:0 0 8px !important;
936 993 }
937 994
938 #content div.box div.form div.fields div.field div.label label, div.label label{
995 #content div.box div.form div.fields div.field div.label label,div.label label
996 {
939 997 color:#393939;
940 998 font-weight:700;
941 999 }
942 1000
943 1001 #content div.box div.form div.fields div.field div.input {
944 1002 margin:0 0 0 200px;
945 1003 }
1004
946 1005 #content div.box div.form div.fields div.field div.file {
947 1006 margin:0 0 0 200px;
948 1007 }
949 #content div.box-left div.form div.fields div.field div.input,#content div.box-right div.form div.fields div.field div.input {
1008
1009 #content div.box-left div.form div.fields div.field div.input,#content div.box-right div.form div.fields div.field div.input
1010 {
950 1011 margin:0 0 0 0px;
951 1012 }
952 1013
953 1014 #content div.box div.form div.fields div.field div.input input {
954 1015 background:#FFF;
955 1016 border-top:1px solid #b3b3b3;
956 1017 border-left:1px solid #b3b3b3;
957 1018 border-right:1px solid #eaeaea;
958 1019 border-bottom:1px solid #eaeaea;
959 1020 color:#000;
960 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
961 1021 font-size:11px;
962 1022 margin:0;
963 1023 padding:7px 7px 6px;
964 1024 }
965 1025
966 1026 #content div.box div.form div.fields div.field div.file input {
967 1027 background: none repeat scroll 0 0 #FFFFFF;
968 1028 border-color: #B3B3B3 #EAEAEA #EAEAEA #B3B3B3;
969 1029 border-style: solid;
970 1030 border-width: 1px;
971 1031 color: #000000;
972 font-family: Lucida Grande,Verdana,Lucida Sans Regular,Lucida Sans Unicode,Arial,sans-serif;
973 1032 font-size: 11px;
974 1033 margin: 0;
975 1034 padding: 7px 7px 6px;
976 1035 }
977 1036
978
979 1037 #content div.box div.form div.fields div.field div.input input.small {
980 1038 width:30%;
981 1039 }
982 1040
983 1041 #content div.box div.form div.fields div.field div.input input.medium {
984 1042 width:55%;
985 1043 }
986 1044
987 1045 #content div.box div.form div.fields div.field div.input input.large {
988 1046 width:85%;
989 1047 }
990 1048
991 1049 #content div.box div.form div.fields div.field div.input input.date {
992 1050 width:177px;
993 1051 }
994 1052
995 1053 #content div.box div.form div.fields div.field div.input input.button {
996 1054 background:#D4D0C8;
997 1055 border-top:1px solid #FFF;
998 1056 border-left:1px solid #FFF;
999 1057 border-right:1px solid #404040;
1000 1058 border-bottom:1px solid #404040;
1001 1059 color:#000;
1002 1060 margin:0;
1003 1061 padding:4px 8px;
1004 1062 }
1005 1063
1006 1064 #content div.box div.form div.fields div.field div.textarea {
1007 1065 border-top:1px solid #b3b3b3;
1008 1066 border-left:1px solid #b3b3b3;
1009 1067 border-right:1px solid #eaeaea;
1010 1068 border-bottom:1px solid #eaeaea;
1011 1069 margin:0 0 0 200px;
1012 1070 padding:10px;
1013 1071 }
1014 1072
1015 1073 #content div.box div.form div.fields div.field div.textarea-editor {
1016 1074 border:1px solid #ddd;
1017 1075 padding:0;
1018 1076 }
1019 1077
1020 1078 #content div.box div.form div.fields div.field div.textarea textarea {
1021 1079 width:100%;
1022 1080 height:220px;
1023 1081 overflow:hidden;
1024 1082 background:#FFF;
1025 1083 color:#000;
1026 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1027 1084 font-size:11px;
1028 1085 outline:none;
1029 1086 border-width:0;
1030 1087 margin:0;
1031 1088 padding:0;
1032 1089 }
1033 1090
1034 #content div.box-left div.form div.fields div.field div.textarea textarea,#content div.box-right div.form div.fields div.field div.textarea textarea {
1091 #content div.box-left div.form div.fields div.field div.textarea textarea,#content div.box-right div.form div.fields div.field div.textarea textarea
1092 {
1035 1093 width:100%;
1036 1094 height:100px;
1037 1095 }
1038 1096
1039 1097 #content div.box div.form div.fields div.field div.textarea table {
1040 1098 width:100%;
1041 1099 border:none;
1042 1100 margin:0;
1043 1101 padding:0;
1044 1102 }
1045 1103
1046 1104 #content div.box div.form div.fields div.field div.textarea table td {
1047 1105 background:#DDD;
1048 1106 border:none;
1049 1107 padding:0;
1050 1108 }
1051 1109
1052 #content div.box div.form div.fields div.field div.textarea table td table {
1110 #content div.box div.form div.fields div.field div.textarea table td table
1111 {
1053 1112 width:auto;
1054 1113 border:none;
1055 1114 margin:0;
1056 1115 padding:0;
1057 1116 }
1058 1117
1059 #content div.box div.form div.fields div.field div.textarea table td table td {
1060 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1118 #content div.box div.form div.fields div.field div.textarea table td table td
1119 {
1061 1120 font-size:11px;
1062 1121 padding:5px 5px 5px 0;
1063 1122 }
1064 1123
1065 #content div.box div.form div.fields div.field input[type=text]:focus,#content div.box div.form div.fields div.field input[type=password]:focus,#content div.box div.form div.fields div.field input[type=file]:focus,#content div.box div.form div.fields div.field textarea:focus,#content div.box div.form div.fields div.field select:focus {
1124 #content div.box div.form div.fields div.field input[type=text]:focus,#content div.box div.form div.fields div.field input[type=password]:focus,#content div.box div.form div.fields div.field input[type=file]:focus,#content div.box div.form div.fields div.field textarea:focus,#content div.box div.form div.fields div.field select:focus
1125 {
1066 1126 background:#f6f6f6;
1067 1127 border-color:#666;
1068 1128 }
1069 1129
1070 1130 div.form div.fields div.field div.button {
1071 1131 margin:0;
1072 1132 padding:0 0 0 8px;
1073 1133 }
1074 1134
1075
1076 1135 #content div.box table {
1077 1136 width:100%;
1078 1137 border-collapse:collapse;
1079 1138 margin:0;
1080 1139 padding:0;
1081 1140 border: 1px solid #eee;
1082 1141 }
1083 1142
1084 1143 #content div.box table th {
1085 1144 background:#eee;
1086 1145 border-bottom:1px solid #ddd;
1087 1146 padding:5px 0px 5px 5px;
1088 1147 }
1089 1148
1090 1149 #content div.box table th.left {
1091 1150 text-align:left;
1092 1151 }
1093 1152
1094 1153 #content div.box table th.right {
1095 1154 text-align:right;
1096 1155 }
1097 1156
1098 1157 #content div.box table th.center {
1099 1158 text-align:center;
1100 1159 }
1101 1160
1102 1161 #content div.box table th.selected {
1103 1162 vertical-align:middle;
1104 1163 padding:0;
1105 1164 }
1106 1165
1107 1166 #content div.box table td {
1108 1167 background:#fff;
1109 1168 border-bottom:1px solid #cdcdcd;
1110 1169 vertical-align:middle;
1111 1170 padding:5px;
1112 1171 }
1113 1172
1114 1173 #content div.box table tr.selected td {
1115 1174 background:#FFC;
1116 1175 }
1117 1176
1118 1177 #content div.box table td.selected {
1119 1178 width:3%;
1120 1179 text-align:center;
1121 1180 vertical-align:middle;
1122 1181 padding:0;
1123 1182 }
1124 1183
1125 1184 #content div.box table td.action {
1126 1185 width:45%;
1127 1186 text-align:left;
1128 1187 }
1129 1188
1130 1189 #content div.box table td.date {
1131 1190 width:33%;
1132 1191 text-align:center;
1133 1192 }
1134 1193
1135 1194 #content div.box div.action {
1136 1195 float:right;
1137 1196 background:#FFF;
1138 1197 text-align:right;
1139 1198 margin:10px 0 0;
1140 1199 padding:0;
1141 1200 }
1142 1201
1143 1202 #content div.box div.action select {
1144 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1145 1203 font-size:11px;
1146 1204 margin:0;
1147 1205 }
1148 1206
1149 1207 #content div.box div.action .ui-selectmenu {
1150 1208 margin:0;
1151 1209 padding:0;
1152 1210 }
1153 1211
1154 1212 #content div.box div.pagination {
1155 1213 height:1%;
1156 1214 clear:both;
1157 1215 overflow:hidden;
1158 1216 margin:10px 0 0;
1159 1217 padding:0;
1160 1218 }
1161 1219
1162 1220 #content div.box div.pagination ul.pager {
1163 1221 float:right;
1164 1222 text-align:right;
1165 1223 margin:0;
1166 1224 padding:0;
1167 1225 }
1168 1226
1169 1227 #content div.box div.pagination ul.pager li {
1170 1228 height:1%;
1171 1229 float:left;
1172 1230 list-style:none;
1173 1231 background:#ebebeb url("../images/pager.png") repeat-x;
1174 1232 border-top:1px solid #dedede;
1175 1233 border-left:1px solid #cfcfcf;
1176 1234 border-right:1px solid #c4c4c4;
1177 1235 border-bottom:1px solid #c4c4c4;
1178 1236 color:#4A4A4A;
1179 1237 font-weight:700;
1180 1238 margin:0 0 0 4px;
1181 1239 padding:0;
1182 1240 }
1183 1241
1184 1242 #content div.box div.pagination ul.pager li.separator {
1185 1243 padding:6px;
1186 1244 }
1187 1245
1188 1246 #content div.box div.pagination ul.pager li.current {
1189 1247 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1190 1248 border-top:1px solid #ccc;
1191 1249 border-left:1px solid #bebebe;
1192 1250 border-right:1px solid #b1b1b1;
1193 1251 border-bottom:1px solid #afafaf;
1194 1252 color:#515151;
1195 1253 padding:6px;
1196 1254 }
1197 1255
1198 1256 #content div.box div.pagination ul.pager li a {
1199 1257 height:1%;
1200 1258 display:block;
1201 1259 float:left;
1202 1260 color:#515151;
1203 1261 text-decoration:none;
1204 1262 margin:0;
1205 1263 padding:6px;
1206 1264 }
1207 1265
1208 #content div.box div.pagination ul.pager li a:hover,#content div.box div.pagination ul.pager li a:active {
1266 #content div.box div.pagination ul.pager li a:hover,#content div.box div.pagination ul.pager li a:active
1267 {
1209 1268 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1210 1269 border-top:1px solid #ccc;
1211 1270 border-left:1px solid #bebebe;
1212 1271 border-right:1px solid #b1b1b1;
1213 1272 border-bottom:1px solid #afafaf;
1214 1273 margin:-1px;
1215 1274 }
1216 1275
1217 1276 #content div.box div.pagination-wh {
1218 1277 height:1%;
1219 1278 clear:both;
1220 1279 overflow:hidden;
1221 1280 text-align:right;
1222 1281 margin:10px 0 0;
1223 1282 padding:0;
1224 1283 }
1225 1284
1226 1285 #content div.box div.pagination-right {
1227 1286 float:right;
1228 1287 }
1229 1288
1230 #content div.box div.pagination-wh a,#content div.box div.pagination-wh span.pager_dotdot {
1289 #content div.box div.pagination-wh a,#content div.box div.pagination-wh span.pager_dotdot
1290 {
1231 1291 height:1%;
1232 1292 float:left;
1233 1293 background:#ebebeb url("../images/pager.png") repeat-x;
1234 1294 border-top:1px solid #dedede;
1235 1295 border-left:1px solid #cfcfcf;
1236 1296 border-right:1px solid #c4c4c4;
1237 1297 border-bottom:1px solid #c4c4c4;
1238 1298 color:#4A4A4A;
1239 1299 font-weight:700;
1240 1300 margin:0 0 0 4px;
1241 1301 padding:6px;
1242 1302 }
1243 1303
1244 1304 #content div.box div.pagination-wh span.pager_curpage {
1245 1305 height:1%;
1246 1306 float:left;
1247 1307 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1248 1308 border-top:1px solid #ccc;
1249 1309 border-left:1px solid #bebebe;
1250 1310 border-right:1px solid #b1b1b1;
1251 1311 border-bottom:1px solid #afafaf;
1252 1312 color:#515151;
1253 1313 font-weight:700;
1254 1314 margin:0 0 0 4px;
1255 1315 padding:6px;
1256 1316 }
1257 1317
1258 #content div.box div.pagination-wh a:hover,#content div.box div.pagination-wh a:active {
1318 #content div.box div.pagination-wh a:hover,#content div.box div.pagination-wh a:active
1319 {
1259 1320 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1260 1321 border-top:1px solid #ccc;
1261 1322 border-left:1px solid #bebebe;
1262 1323 border-right:1px solid #b1b1b1;
1263 1324 border-bottom:1px solid #afafaf;
1264 1325 text-decoration:none;
1265 1326 }
1266 1327
1267 1328 #content div.box div.traffic div.legend {
1268 1329 clear:both;
1269 1330 overflow:hidden;
1270 1331 border-bottom:1px solid #ddd;
1271 1332 margin:0 0 10px;
1272 1333 padding:0 0 10px;
1273 1334 }
1274 1335
1275 1336 #content div.box div.traffic div.legend h6 {
1276 1337 float:left;
1277 1338 border:none;
1278 1339 margin:0;
1279 1340 padding:0;
1280 1341 }
1281 1342
1282 1343 #content div.box div.traffic div.legend li {
1283 1344 list-style:none;
1284 1345 float:left;
1285 1346 font-size:11px;
1286 1347 margin:0;
1287 1348 padding:0 8px 0 4px;
1288 1349 }
1289 1350
1290 1351 #content div.box div.traffic div.legend li.visits {
1291 1352 border-left:12px solid #edc240;
1292 1353 }
1293 1354
1294 1355 #content div.box div.traffic div.legend li.pageviews {
1295 1356 border-left:12px solid #afd8f8;
1296 1357 }
1297 1358
1298 1359 #content div.box div.traffic table {
1299 1360 width:auto;
1300 1361 }
1301 1362
1302 1363 #content div.box div.traffic table td {
1303 1364 background:transparent;
1304 1365 border:none;
1305 1366 padding:2px 3px 3px;
1306 1367 }
1307 1368
1308 1369 #content div.box div.traffic table td.legendLabel {
1309 1370 padding:0 3px 2px;
1310 1371 }
1311 1372
1312 1373 #summary{
1313 1374
1314 1375 }
1315 1376
1316 1377 #summary .desc{
1317 1378 white-space: pre;
1318 1379 width: 100%;
1319 1380 }
1320 1381
1321 1382 #summary .repo_name{
1322 1383 font-size: 1.6em;
1323 1384 font-weight: bold;
1324 1385 vertical-align: baseline;
1325 1386 clear:right
1326 1387 }
1327 1388
1328
1329 1389 #footer {
1330 1390 clear:both;
1331 1391 overflow:hidden;
1332 1392 text-align:right;
1333 1393 margin:0;
1334 1394 padding:0 10px 4px;
1335 1395 margin:-10px 0 0;
1336 1396 }
1337 1397
1338 1398 #footer div#footer-inner {
1339 background:url("../images/header_inner.png") repeat-x scroll 0 0 #003367;
1399 background-color: #eedc94; background-repeat : repeat-x;
1400 background-image : -khtml-gradient( linear, left top, left bottom,
1401 from( #fceec1), to( #eedc94)); background-image : -moz-linear-gradient(
1402 top, #003b76, #00376e); background-image : -ms-linear-gradient( top,
1403 #003b76, #00376e); background-image : -webkit-gradient( linear, left
1404 top, left bottom, color-stop( 0%, #003b76), color-stop( 100%, #00376e));
1405 background-image : -webkit-linear-gradient( top, #003b76, #00376e));
1406 background-image : -o-linear-gradient( top, #003b76, #00376e));
1407 background-image : linear-gradient( top, #003b76, #00376e); filter :
1408 progid : DXImageTransform.Microsoft.gradient ( startColorstr =
1409 '#003b76', endColorstr = '#00376e', GradientType = 0);
1340 1410 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
1341 1411 -webkit-border-radius: 4px 4px 4px 4px;
1342 1412 -khtml-border-radius: 4px 4px 4px 4px;
1343 1413 -moz-border-radius: 4px 4px 4px 4px;
1344 1414 border-radius: 4px 4px 4px 4px;
1415 background-repeat: repeat-x;
1416 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
1417 to(#eedc94) );
1418 background-image: -moz-linear-gradient(top, #003b76, #00376e);
1419 background-image: -ms-linear-gradient(top, #003b76, #00376e);
1420 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
1421 color-stop(100%, #00376e) );
1422 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
1423 background-image: -o-linear-gradient(top, #003b76, #00376e) );
1424 background-image: linear-gradient(top, #003b76, #00376e);
1425 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
1426 endColorstr='#00376e', GradientType=0 );
1345 1427 }
1346 1428
1347 1429 #footer div#footer-inner p {
1348 1430 padding:15px 25px 15px 0;
1349 1431 color:#FFF;
1350 1432 font-weight:700;
1351 1433 }
1434
1352 1435 #footer div#footer-inner .footer-link {
1353 1436 float:left;
1354 1437 padding-left:10px;
1355 1438 }
1356 #footer div#footer-inner .footer-link a,#footer div#footer-inner .footer-link-right a {
1439
1440 #footer div#footer-inner .footer-link a,#footer div#footer-inner .footer-link-right a
1441 {
1357 1442 color:#FFF;
1358 1443 }
1359 1444
1360 1445 #login div.title {
1361 1446 width:420px;
1362 1447 clear:both;
1363 1448 overflow:hidden;
1364 1449 position:relative;
1365 background:#003367 url("../images/header_inner.png") repeat-x;
1450 background-color: #eedc94; background-repeat : repeat-x;
1451 background-image : -khtml-gradient( linear, left top, left bottom,
1452 from( #fceec1), to( #eedc94)); background-image : -moz-linear-gradient(
1453 top, #003b76, #00376e); background-image : -ms-linear-gradient( top,
1454 #003b76, #00376e); background-image : -webkit-gradient( linear, left
1455 top, left bottom, color-stop( 0%, #003b76), color-stop( 100%, #00376e));
1456 background-image : -webkit-linear-gradient( top, #003b76, #00376e));
1457 background-image : -o-linear-gradient( top, #003b76, #00376e));
1458 background-image : linear-gradient( top, #003b76, #00376e); filter :
1459 progid : DXImageTransform.Microsoft.gradient ( startColorstr =
1460 '#003b76', endColorstr = '#00376e', GradientType = 0);
1366 1461 margin:0 auto;
1367 1462 padding:0;
1463 background-repeat: repeat-x;
1464 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
1465 to(#eedc94) );
1466 background-image: -moz-linear-gradient(top, #003b76, #00376e);
1467 background-image: -ms-linear-gradient(top, #003b76, #00376e);
1468 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
1469 color-stop(100%, #00376e) );
1470 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
1471 background-image: -o-linear-gradient(top, #003b76, #00376e) );
1472 background-image: linear-gradient(top, #003b76, #00376e);
1473 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
1474 endColorstr='#00376e', GradientType=0 );
1368 1475 }
1369 1476
1370 1477 #login div.inner {
1371 1478 width:380px;
1372 1479 background:#FFF url("../images/login.png") no-repeat top left;
1373 1480 border-top:none;
1374 1481 border-bottom:none;
1375 1482 margin:0 auto;
1376 1483 padding:20px;
1377 1484 }
1378 1485
1379 1486 #login div.form div.fields div.field div.label {
1380 1487 width:173px;
1381 1488 float:left;
1382 1489 text-align:right;
1383 1490 margin:2px 10px 0 0;
1384 1491 padding:5px 0 0 5px;
1385 1492 }
1386 1493
1387 1494 #login div.form div.fields div.field div.input input {
1388 1495 width:176px;
1389 1496 background:#FFF;
1390 1497 border-top:1px solid #b3b3b3;
1391 1498 border-left:1px solid #b3b3b3;
1392 1499 border-right:1px solid #eaeaea;
1393 1500 border-bottom:1px solid #eaeaea;
1394 1501 color:#000;
1395 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1396 1502 font-size:11px;
1397 1503 margin:0;
1398 1504 padding:7px 7px 6px;
1399 1505 }
1400 1506
1401 1507 #login div.form div.fields div.buttons {
1402 1508 clear:both;
1403 1509 overflow:hidden;
1404 1510 border-top:1px solid #DDD;
1405 1511 text-align:right;
1406 1512 margin:0;
1407 1513 padding:10px 0 0;
1408 1514 }
1409 1515
1410 1516 #login div.form div.links {
1411 1517 clear:both;
1412 1518 overflow:hidden;
1413 1519 margin:10px 0 0;
1414 1520 padding:0 0 2px;
1415 1521 }
1416 1522
1417 1523 #quick_login{
1418 1524 top: 31px;
1419 1525 background-color: rgb(0, 51, 103);
1420 1526 z-index: 999;
1421 1527 height: 150px;
1422 1528 position: absolute;
1423 1529 margin-left: -16px;
1424 1530 width: 281px;
1425 1531 -webkit-border-radius: 0px 0px 4px 4px;
1426 1532 -khtml-border-radius: 0px 0px 4px 4px;
1427 1533 -moz-border-radius: 0px 0px 4px 4px;
1428 1534 border-radius: 0px 0px 4px 4px;
1429
1430 1535 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
1431 1536 }
1432 1537
1433 1538 #quick_login .password_forgoten{
1434 1539 padding-right:10px;
1435 1540 padding-top:0px;
1436 1541 float:left;
1437 1542 }
1543
1438 1544 #quick_login .password_forgoten a{
1439 1545 font-size: 10px
1440 1546 }
1441 1547
1442 1548 #quick_login .register{
1443 1549 padding-right:10px;
1444 1550 padding-top:5px;
1445 1551 float:left;
1446 1552 }
1447 1553
1448 1554 #quick_login .register a{
1449 1555 font-size: 10px
1450 1556 }
1557
1451 1558 #quick_login div.form div.fields{
1452 1559 padding-top: 2px;
1453 1560 padding-left:10px;
1454 1561 }
1455 1562
1456 1563 #quick_login div.form div.fields div.field{
1457 1564 padding: 5px;
1458 1565 }
1459 1566
1460 1567 #quick_login div.form div.fields div.field div.label label{
1461 1568 color:#fff;
1462 1569 padding-bottom: 3px;
1463 1570 }
1464 1571
1465 1572 #quick_login div.form div.fields div.field div.input input {
1466 1573 width:236px;
1467 1574 background:#FFF;
1468 1575 border-top:1px solid #b3b3b3;
1469 1576 border-left:1px solid #b3b3b3;
1470 1577 border-right:1px solid #eaeaea;
1471 1578 border-bottom:1px solid #eaeaea;
1472 1579 color:#000;
1473 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1474 1580 font-size:11px;
1475 1581 margin:0;
1476 1582 padding:5px 7px 4px;
1477 1583 }
1478 1584
1479 1585 #quick_login div.form div.fields div.buttons {
1480 1586 clear:both;
1481 1587 overflow:hidden;
1482 1588 text-align:right;
1483 1589 margin:0;
1484 1590 padding:10px 14px 0px 5px;
1485 1591 }
1486 1592
1487 1593 #quick_login div.form div.links {
1488 1594 clear:both;
1489 1595 overflow:hidden;
1490 1596 margin:10px 0 0;
1491 1597 padding:0 0 2px;
1492 1598 }
1493 1599
1494 1600 #register div.title {
1495 1601 clear:both;
1496 1602 overflow:hidden;
1497 1603 position:relative;
1498 1604 background:#003367 url("../images/header_inner.png") repeat-x;
1499 1605 margin:0 auto;
1500 1606 padding:0;
1501 1607 }
1502 1608
1503 1609 #register div.inner {
1504 1610 background:#FFF;
1505 1611 border-top:none;
1506 1612 border-bottom:none;
1507 1613 margin:0 auto;
1508 1614 padding:20px;
1509 1615 }
1510 1616
1511 1617 #register div.form div.fields div.field div.label {
1512 1618 width:135px;
1513 1619 float:left;
1514 1620 text-align:right;
1515 1621 margin:2px 10px 0 0;
1516 1622 padding:5px 0 0 5px;
1517 1623 }
1518 1624
1519 1625 #register div.form div.fields div.field div.input input {
1520 1626 width:300px;
1521 1627 background:#FFF;
1522 1628 border-top:1px solid #b3b3b3;
1523 1629 border-left:1px solid #b3b3b3;
1524 1630 border-right:1px solid #eaeaea;
1525 1631 border-bottom:1px solid #eaeaea;
1526 1632 color:#000;
1527 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1528 1633 font-size:11px;
1529 1634 margin:0;
1530 1635 padding:7px 7px 6px;
1531 1636 }
1532 1637
1533 1638 #register div.form div.fields div.buttons {
1534 1639 clear:both;
1535 1640 overflow:hidden;
1536 1641 border-top:1px solid #DDD;
1537 1642 text-align:left;
1538 1643 margin:0;
1539 1644 padding:10px 0 0 150px;
1540 1645 }
1541 1646
1542
1543 1647 #register div.form div.activation_msg {
1544 1648 padding-top:4px;
1545 1649 padding-bottom:4px;
1546 1650 }
1547 1651
1548 1652 #journal .journal_day{
1549 1653 font-size:20px;
1550 1654 padding:10px 0px;
1551 1655 border-bottom:2px solid #DDD;
1552 1656 margin-left:10px;
1553 1657 margin-right:10px;
1554 1658 }
1555 1659
1556 1660 #journal .journal_container{
1557 1661 padding:5px;
1558 1662 clear:both;
1559 1663 margin:0px 5px 0px 10px;
1560 1664 }
1561 1665
1562 1666 #journal .journal_action_container{
1563 1667 padding-left:38px;
1564 1668 }
1565 1669
1566 1670 #journal .journal_user{
1567 1671 color: #747474;
1568 1672 font-size: 14px;
1569 1673 font-weight: bold;
1570 1674 height: 30px;
1571 1675 }
1676
1572 1677 #journal .journal_icon{
1573 1678 clear: both;
1574 1679 float: left;
1575 1680 padding-right: 4px;
1576 1681 padding-top: 3px;
1577 1682 }
1683
1578 1684 #journal .journal_action{
1579 1685 padding-top:4px;
1580 1686 min-height:2px;
1581 1687 float:left
1582 1688 }
1689
1583 1690 #journal .journal_action_params{
1584 1691 clear: left;
1585 1692 padding-left: 22px;
1586 1693 }
1694
1587 1695 #journal .journal_repo{
1588 1696 float: left;
1589 1697 margin-left: 6px;
1590 1698 padding-top: 3px;
1591 1699 }
1700
1592 1701 #journal .date{
1593 1702 clear: both;
1594 1703 color: #777777;
1595 1704 font-size: 11px;
1596 1705 padding-left: 22px;
1597 1706 }
1707
1598 1708 #journal .journal_repo .journal_repo_name{
1599 1709 font-weight: bold;
1600 1710 font-size: 1.1em;
1601 1711 }
1712
1602 1713 #journal .compare_view{
1603 1714 padding: 5px 0px 5px 0px;
1604 1715 width: 95px;
1605 1716 }
1717
1606 1718 .journal_highlight{
1607 1719 font-weight: bold;
1608 1720 padding: 0 2px;
1609 1721 vertical-align: bottom;
1610 1722 }
1723
1611 1724 .trending_language_tbl,.trending_language_tbl td {
1612 1725 border:0 !important;
1613 1726 margin:0 !important;
1614 1727 padding:0 !important;
1615 1728 }
1616 1729
1617 1730 .trending_language {
1618 1731 background-color:#003367;
1619 1732 color:#FFF;
1620 1733 display:block;
1621 1734 min-width:20px;
1622 1735 text-decoration:none;
1623 1736 height:12px;
1624 1737 margin-bottom:4px;
1625 1738 margin-left:5px;
1626 1739 white-space:pre;
1627 1740 padding:3px;
1628 1741 }
1629 1742
1630 1743 h3.files_location {
1631 1744 font-size:1.8em;
1632 1745 font-weight:700;
1633 1746 border-bottom:none !important;
1634 1747 margin:10px 0 !important;
1635 1748 }
1636 1749
1637 1750 #files_data dl dt {
1638 1751 float:left;
1639 1752 width:115px;
1640 1753 margin:0 !important;
1641 1754 padding:5px;
1642 1755 }
1643 1756
1644 1757 #files_data dl dd {
1645 1758 margin:0 !important;
1646 1759 padding:5px !important;
1647 1760 }
1648 1761
1649 1762 #changeset_content {
1650 1763 border:1px solid #CCC;
1651 1764 padding:5px;
1652 1765 }
1766
1653 1767 #changeset_compare_view_content{
1654 1768 border:1px solid #CCC;
1655 1769 padding:5px;
1656 1770 }
1657 1771
1658 1772 #changeset_content .container {
1659 1773 min-height:120px;
1660 1774 font-size:1.2em;
1661 1775 overflow:hidden;
1662 1776 }
1663 1777
1664 1778 #changeset_compare_view_content .compare_view_commits{
1665 1779 width: auto !important;
1666 1780 }
1667 1781
1668 1782 #changeset_compare_view_content .compare_view_commits td{
1669 1783 padding:0px 0px 0px 12px !important;
1670 1784 }
1671 1785
1672 1786 #changeset_content .container .right {
1673 1787 float:right;
1674 1788 width:25%;
1675 1789 text-align:right;
1676 1790 }
1677 1791
1678 1792 #changeset_content .container .left .message {
1679 1793 font-style:italic;
1680 1794 color:#556CB5;
1681 1795 white-space:pre-wrap;
1682 1796 }
1683 1797
1684 1798 .cs_files .cur_cs{
1685 1799 margin:10px 2px;
1686 1800 font-weight: bold;
1687 1801 }
1688 1802
1689 1803 .cs_files .node{
1690 1804 float: left;
1691 1805 }
1806
1692 1807 .cs_files .changes{
1693 1808 float: right;
1694 1809 }
1810
1695 1811 .cs_files .changes .added{
1696 1812 background-color: #BBFFBB;
1697 1813 float: left;
1698 1814 text-align: center;
1699 1815 font-size: 90%;
1700 1816 }
1817
1701 1818 .cs_files .changes .deleted{
1702 1819 background-color: #FF8888;
1703 1820 float: left;
1704 1821 text-align: center;
1705 1822 font-size: 90%;
1706 1823 }
1824
1707 1825 .cs_files .cs_added {
1708 background:url("../images/icons/page_white_add.png") no-repeat scroll 3px;
1826 background: url("../images/icons/page_white_add.png") no-repeat scroll
1827 3px;
1709 1828 height:16px;
1710 1829 padding-left:20px;
1711 1830 margin-top:7px;
1712 1831 text-align:left;
1713 1832 }
1714 1833
1715 1834 .cs_files .cs_changed {
1716 background:url("../images/icons/page_white_edit.png") no-repeat scroll 3px;
1835 background: url("../images/icons/page_white_edit.png") no-repeat scroll
1836 3px;
1717 1837 height:16px;
1718 1838 padding-left:20px;
1719 1839 margin-top:7px;
1720 1840 text-align:left;
1721 1841 }
1722 1842
1723 1843 .cs_files .cs_removed {
1724 background:url("../images/icons/page_white_delete.png") no-repeat scroll 3px;
1844 background: url("../images/icons/page_white_delete.png") no-repeat
1845 scroll 3px;
1725 1846 height:16px;
1726 1847 padding-left:20px;
1727 1848 margin-top:7px;
1728 1849 text-align:left;
1729 1850 }
1730 1851
1731 1852 #graph {
1732 1853 overflow:hidden;
1733 1854 }
1734 1855
1735 1856 #graph_nodes {
1736 1857 float: left;
1737 1858 margin-right: -6px;
1738 1859 margin-top: -4px;
1739 1860 }
1740 1861
1741 1862 #graph_content {
1742 1863 width:800px;
1743 1864 float:left;
1744
1745 1865 }
1746 1866
1747 1867 #graph_content .container_header {
1748 1868 border:1px solid #CCC;
1749 1869 padding:10px;
1750 1870 }
1871
1751 1872 #graph_content #rev_range_container{
1752 1873 padding:10px 0px;
1753 1874 }
1875
1754 1876 #graph_content .container {
1755 1877 border-bottom:1px solid #CCC;
1756 1878 border-left:1px solid #CCC;
1757 1879 border-right:1px solid #CCC;
1758 1880 min-height:70px;
1759 1881 overflow:hidden;
1760 1882 font-size:1.2em;
1761 1883 }
1762 1884
1763 1885 #graph_content .container .right {
1764 1886 float:right;
1765 1887 width:28%;
1766 1888 text-align:right;
1767 1889 padding-bottom:5px;
1768 1890 }
1769 1891
1770 1892 #graph_content .container .left .date {
1771 1893 font-weight:700;
1772 1894 padding-bottom:5px;
1773 1895 }
1896
1774 1897 #graph_content .container .left .date span{
1775 1898 vertical-align: text-top;
1776 1899 }
1777 1900
1778 1901 #graph_content .container .left .author{
1779 1902 height: 22px;
1780 1903 }
1904
1781 1905 #graph_content .container .left .author .user{
1782 1906 color: #444444;
1783 1907 float: left;
1784 1908 font-size: 12px;
1785 1909 margin-left: -4px;
1786 1910 margin-top: 4px;
1787 1911 }
1788 1912
1789 1913 #graph_content .container .left .message {
1790 1914 font-size:100%;
1791 1915 padding-top:3px;
1792 1916 white-space:pre-wrap;
1793 1917 }
1794 1918
1795 1919 .right div {
1796 1920 clear:both;
1797 1921 }
1798 1922
1799 1923 .right .changes .changed_total{
1800 1924 border:1px solid #DDD;
1801 1925 display:block;
1802 1926 float:right;
1803 1927 text-align:center;
1804 1928 min-width:45px;
1805 1929 cursor: pointer;
1806 1930 background:#FD8;
1807 1931 font-weight: bold;
1808 1932 }
1933
1809 1934 .right .changes .added,.changed,.removed {
1810 1935 border:1px solid #DDD;
1811 1936 display:block;
1812 1937 float:right;
1813 1938 text-align:center;
1814 1939 min-width:15px;
1815 1940 cursor: help;
1816 1941 }
1942
1817 1943 .right .changes .large {
1818 1944 border:1px solid #DDD;
1819 1945 display:block;
1820 1946 float:right;
1821 1947 text-align:center;
1822 1948 min-width:45px;
1823 1949 cursor: help;
1824 1950 background: #54A9F7;
1825 1951 }
1826 1952
1827 1953 .right .changes .added {
1828 1954 background:#BFB;
1829 1955 }
1830 1956
1831 1957 .right .changes .changed {
1832 1958 background:#FD8;
1833 1959 }
1834 1960
1835 1961 .right .changes .removed {
1836 1962 background:#F88;
1837 1963 }
1838 1964
1839 1965 .right .merge {
1840 1966 vertical-align:top;
1841 1967 font-size:0.75em;
1842 1968 font-weight:700;
1843 1969 }
1844 1970
1845 1971 .right .parent {
1846 1972 font-size:90%;
1847 1973 font-family:monospace;
1848 1974 }
1849 1975
1850 1976 .right .logtags .branchtag {
1851 background:#FFF url("../images/icons/arrow_branch.png") no-repeat right 6px;
1977 background: #FFF url("../images/icons/arrow_branch.png") no-repeat right
1978 6px;
1852 1979 display:block;
1853 1980 font-size:0.8em;
1854 1981 padding:11px 16px 0 0;
1855 1982 }
1856 1983
1857 1984 .right .logtags .tagtag {
1858 1985 background:#FFF url("../images/icons/tag_blue.png") no-repeat right 6px;
1859 1986 display:block;
1860 1987 font-size:0.8em;
1861 1988 padding:11px 16px 0 0;
1862 1989 }
1863 1990
1864 1991 div.browserblock {
1865 1992 overflow:hidden;
1866 1993 border:1px solid #ccc;
1867 1994 background:#f8f8f8;
1868 1995 font-size:100%;
1869 1996 line-height:125%;
1870 1997 padding:0;
1871 1998 }
1872 1999
1873 2000 div.browserblock .browser-header {
1874 2001 background:#FFF;
1875 2002 padding:10px 0px 15px 0px;
1876 2003 width: 100%;
1877 2004 }
2005
1878 2006 div.browserblock .browser-nav {
1879 2007 float:left
1880 2008 }
1881 2009
1882 2010 div.browserblock .browser-branch {
1883 2011 float:left;
1884 2012 }
1885 2013
1886 2014 div.browserblock .browser-branch label {
1887 2015 color:#4A4A4A;
1888 2016 vertical-align:text-top;
1889 2017 }
1890 2018
1891 2019 div.browserblock .browser-header span {
1892 2020 margin-left:5px;
1893 2021 font-weight:700;
1894 2022 }
1895 2023
1896 2024 div.browserblock .browser-search{
1897 2025 clear:both;
1898 2026 padding:8px 8px 0px 5px;
1899 2027 height: 20px;
1900 2028 }
2029
1901 2030 div.browserblock #node_filter_box {
2031
1902 2032 }
1903 2033
1904 2034 div.browserblock .search_activate{
1905 2035 float: left
1906 2036 }
1907 2037
1908 2038 div.browserblock .add_node{
1909 2039 float: left;
1910 2040 padding-left: 5px;
1911 2041 }
1912 2042
1913 div.browserblock .search_activate a:hover,div.browserblock .add_node a:hover{
2043 div.browserblock .search_activate a:hover,div.browserblock .add_node a:hover
2044 {
1914 2045 text-decoration: none !important;
1915 2046 }
1916 2047
1917 2048 div.browserblock .browser-body {
1918 2049 background:#EEE;
1919 2050 border-top:1px solid #CCC;
1920 2051 }
1921 2052
1922 2053 table.code-browser {
1923 2054 border-collapse:collapse;
1924 2055 width:100%;
1925 2056 }
1926 2057
1927 2058 table.code-browser tr {
1928 2059 margin:3px;
1929 2060 }
1930 2061
1931 2062 table.code-browser thead th {
1932 2063 background-color:#EEE;
1933 2064 height:20px;
1934 2065 font-size:1.1em;
1935 2066 font-weight:700;
1936 2067 text-align:left;
1937 2068 padding-left:10px;
1938 2069 }
1939 2070
1940 2071 table.code-browser tbody td {
1941 2072 padding-left:10px;
1942 2073 height:20px;
1943 2074 }
1944 2075
1945 2076 table.code-browser .browser-file {
1946 2077 background:url("../images/icons/document_16.png") no-repeat scroll 3px;
1947 2078 height:16px;
1948 2079 padding-left:20px;
1949 2080 text-align:left;
1950 2081 }
2082
1951 2083 .diffblock .changeset_file{
1952 2084 background:url("../images/icons/file.png") no-repeat scroll 3px;
1953 2085 height:16px;
1954 2086 padding-left:22px;
1955 2087 text-align:left;
1956 2088 font-size: 14px;
1957 2089 }
1958 2090
1959 2091 .diffblock .changeset_header{
1960 2092 margin-left: 6px !important;
1961 2093 }
1962 2094
1963 2095 table.code-browser .browser-dir {
1964 2096 background:url("../images/icons/folder_16.png") no-repeat scroll 3px;
1965 2097 height:16px;
1966 2098 padding-left:20px;
1967 2099 text-align:left;
1968 2100 }
1969 2101
1970 2102 .box .search {
1971 2103 clear:both;
1972 2104 overflow:hidden;
1973 2105 margin:0;
1974 2106 padding:0 20px 10px;
1975 2107 }
1976 2108
1977 2109 .box .search div.search_path {
1978 2110 background:none repeat scroll 0 0 #EEE;
1979 2111 border:1px solid #CCC;
1980 2112 color:blue;
1981 2113 margin-bottom:10px;
1982 2114 padding:10px 0;
1983 2115 }
1984 2116
1985 2117 .box .search div.search_path div.link {
1986 2118 font-weight:700;
1987 2119 margin-left:25px;
1988 2120 }
1989 2121
1990 2122 .box .search div.search_path div.link a {
1991 2123 color:#003367;
1992 2124 cursor:pointer;
1993 2125 text-decoration:none;
1994 2126 }
1995 2127
1996 2128 #path_unlock {
1997 2129 color:red;
1998 2130 font-size:1.2em;
1999 2131 padding-left:4px;
2000 2132 }
2001 2133
2002 2134 .info_box span {
2003 2135 margin-left:3px;
2004 2136 margin-right:3px;
2005 2137 }
2006 2138
2007 2139 .info_box .rev {
2008 2140 color: #003367;
2009 2141 font-size: 1.6em;
2010 2142 font-weight: bold;
2011 2143 vertical-align: sub;
2012 2144 }
2013 2145
2014
2015 2146 .info_box input#at_rev,.info_box input#size {
2016 2147 background:#FFF;
2017 2148 border-top:1px solid #b3b3b3;
2018 2149 border-left:1px solid #b3b3b3;
2019 2150 border-right:1px solid #eaeaea;
2020 2151 border-bottom:1px solid #eaeaea;
2021 2152 color:#000;
2022 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
2023 2153 font-size:12px;
2024 2154 margin:0;
2025 2155 padding:1px 5px 1px;
2026 2156 }
2027 2157
2028 2158 .info_box input#view {
2029 2159 text-align:center;
2030 2160 padding:4px 3px 2px 2px;
2031 2161 }
2032 2162
2033 2163 .yui-overlay,.yui-panel-container {
2034 2164 visibility:hidden;
2035 2165 position:absolute;
2036 2166 z-index:2;
2037 2167 }
2038 2168
2039 2169 .yui-tt {
2040 2170 visibility:hidden;
2041 2171 position:absolute;
2042 2172 color:#666;
2043 2173 background-color:#FFF;
2044 font-family:arial, helvetica, verdana, sans-serif;
2045 2174 border:2px solid #003367;
2046 2175 font:100% sans-serif;
2047 2176 width:auto;
2048 2177 opacity:1px;
2049 2178 padding:8px;
2050 2179 white-space: pre-wrap;
2051 2180 -webkit-border-radius: 8px 8px 8px 8px;
2052 2181 -khtml-border-radius: 8px 8px 8px 8px;
2053 2182 -moz-border-radius: 8px 8px 8px 8px;
2054 2183 border-radius: 8px 8px 8px 8px;
2055 2184 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
2056 2185 }
2057 2186
2058 2187 .ac {
2059 2188 vertical-align:top;
2060 2189 }
2061 2190
2062 2191 .ac .yui-ac {
2063 2192 position:relative;
2064 font-family:arial;
2065 2193 font-size:100%;
2066 2194 }
2067 2195
2068 2196 .ac .perm_ac {
2069 2197 width:15em;
2070 2198 }
2071 2199
2072 2200 .ac .yui-ac-input {
2073 2201 width:100%;
2074 2202 }
2075 2203
2076 2204 .ac .yui-ac-container {
2077 2205 position:absolute;
2078 2206 top:1.6em;
2079 2207 width:100%;
2080 2208 }
2081 2209
2082 2210 .ac .yui-ac-content {
2083 2211 position:absolute;
2084 2212 width:100%;
2085 2213 border:1px solid gray;
2086 2214 background:#fff;
2087 2215 overflow:hidden;
2088 2216 z-index:9050;
2089 2217 }
2090 2218
2091 2219 .ac .yui-ac-shadow {
2092 2220 position:absolute;
2093 2221 width:100%;
2094 2222 background:#000;
2095 2223 -moz-opacity:0.1px;
2096 2224 opacity:.10;
2097 2225 filter:alpha(opacity = 10);
2098 2226 z-index:9049;
2099 2227 margin:.3em;
2100 2228 }
2101 2229
2102 2230 .ac .yui-ac-content ul {
2103 2231 width:100%;
2104 2232 margin:0;
2105 2233 padding:0;
2106 2234 }
2107 2235
2108 2236 .ac .yui-ac-content li {
2109 2237 cursor:default;
2110 2238 white-space:nowrap;
2111 2239 margin:0;
2112 2240 padding:2px 5px;
2113 2241 }
2114 2242
2115 2243 .ac .yui-ac-content li.yui-ac-prehighlight {
2116 2244 background:#B3D4FF;
2117 2245 }
2118 2246
2119 2247 .ac .yui-ac-content li.yui-ac-highlight {
2120 2248 background:#556CB5;
2121 2249 color:#FFF;
2122 2250 }
2123 2251
2124
2125 2252 .follow{
2126 2253 background:url("../images/icons/heart_add.png") no-repeat scroll 3px;
2127 2254 height: 16px;
2128 2255 width: 20px;
2129 2256 cursor: pointer;
2130 2257 display: block;
2131 2258 float: right;
2132 2259 margin-top: 2px;
2133 2260 }
2134 2261
2135 2262 .following{
2136 2263 background:url("../images/icons/heart_delete.png") no-repeat scroll 3px;
2137 2264 height: 16px;
2138 2265 width: 20px;
2139 2266 cursor: pointer;
2140 2267 display: block;
2141 2268 float: right;
2142 2269 margin-top: 2px;
2143 2270 }
2144 2271
2145 2272 .currently_following{
2146 2273 padding-left: 10px;
2147 2274 padding-bottom:5px;
2148 2275 }
2149 2276
2150 2277 .add_icon {
2151 2278 background:url("../images/icons/add.png") no-repeat scroll 3px;
2152 2279 padding-left:20px;
2153 2280 padding-top:0px;
2154 2281 text-align:left;
2155 2282 }
2156 2283
2157 2284 .edit_icon {
2158 2285 background:url("../images/icons/folder_edit.png") no-repeat scroll 3px;
2159 2286 padding-left:20px;
2160 2287 padding-top:0px;
2161 2288 text-align:left;
2162 2289 }
2163 2290
2164 2291 .delete_icon {
2165 2292 background:url("../images/icons/delete.png") no-repeat scroll 3px;
2166 2293 padding-left:20px;
2167 2294 padding-top:0px;
2168 2295 text-align:left;
2169 2296 }
2170 2297
2171 2298 .refresh_icon {
2172 background:url("../images/icons/arrow_refresh.png") no-repeat scroll 3px;
2299 background: url("../images/icons/arrow_refresh.png") no-repeat scroll
2300 3px;
2173 2301 padding-left:20px;
2174 2302 padding-top:0px;
2175 2303 text-align:left;
2176 2304 }
2177 2305
2178 2306 .pull_icon {
2179 2307 background:url("../images/icons/connect.png") no-repeat scroll 3px;
2180 2308 padding-left:20px;
2181 2309 padding-top:0px;
2182 2310 text-align:left;
2183 2311 }
2184 2312
2185 2313 .rss_icon {
2186 2314 background:url("../images/icons/rss_16.png") no-repeat scroll 3px;
2187 2315 padding-left:20px;
2188 2316 padding-top:0px;
2189 2317 text-align:left;
2190 2318 }
2191 2319
2192 2320 .atom_icon {
2193 2321 background:url("../images/icons/atom.png") no-repeat scroll 3px;
2194 2322 padding-left:20px;
2195 2323 padding-top:0px;
2196 2324 text-align:left;
2197 2325 }
2198 2326
2199 2327 .archive_icon {
2200 2328 background:url("../images/icons/compress.png") no-repeat scroll 3px;
2201 2329 padding-left:20px;
2202 2330 text-align:left;
2203 2331 padding-top:1px;
2204 2332 }
2205 2333
2206 2334 .start_following_icon {
2207 2335 background:url("../images/icons/heart_add.png") no-repeat scroll 3px;
2208 2336 padding-left:20px;
2209 2337 text-align:left;
2210 2338 padding-top:0px;
2211 2339 }
2212 2340
2213 2341 .stop_following_icon {
2214 2342 background:url("../images/icons/heart_delete.png") no-repeat scroll 3px;
2215 2343 padding-left:20px;
2216 2344 text-align:left;
2217 2345 padding-top:0px;
2218 2346 }
2219 2347
2220 2348 .action_button {
2221 2349 border:0;
2222 2350 display:inline;
2223 2351 }
2224 2352
2225 2353 .action_button:hover {
2226 2354 border:0;
2227 2355 text-decoration:underline;
2228 2356 cursor:pointer;
2229 2357 }
2230 2358
2231 2359 #switch_repos {
2232 2360 position:absolute;
2233 2361 height:25px;
2234 2362 z-index:1;
2235 2363 }
2236 2364
2237 2365 #switch_repos select {
2238 2366 min-width:150px;
2239 2367 max-height:250px;
2240 2368 z-index:1;
2241 2369 }
2242 2370
2243 2371 .breadcrumbs {
2244 2372 border:medium none;
2245 2373 color:#FFF;
2246 2374 float:left;
2247 2375 text-transform:uppercase;
2248 2376 font-weight:700;
2249 2377 font-size:14px;
2250 2378 margin:0;
2251 2379 padding:11px 0 11px 10px;
2252 2380 }
2253 2381
2254 2382 .breadcrumbs a {
2255 2383 color:#FFF;
2256 2384 }
2257 2385
2386 .flash_msg {
2387
2388 }
2389
2258 2390 .flash_msg ul {
2259 margin:0;
2260 padding:0 0 10px;
2391
2261 2392 }
2262 2393
2263 2394 .error_msg {
2264 background-color:#FFCFCF;
2265 background-image:url("../images/icons/error_msg.png");
2266 border:1px solid #FF9595;
2267 color:#C30;
2395 background-color: #c43c35;
2396 background-repeat: repeat-x;
2397 background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b),
2398 to(#c43c35) );
2399 background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
2400 background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
2401 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b),
2402 color-stop(100%, #c43c35) );
2403 background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
2404 background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
2405 background-image: linear-gradient(top, #ee5f5b, #c43c35);
2406 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b',
2407 endColorstr='#c43c35', GradientType=0 );
2408 border-color: #c43c35 #c43c35 #882a25;
2268 2409 }
2269 2410
2270 2411 .warning_msg {
2271 background-color:#FFFBCC;
2272 background-image:url("../images/icons/warning_msg.png");
2273 border:1px solid #FFF35E;
2274 color:#C69E00;
2412 color: #404040 !important;
2413 background-color: #eedc94;
2414 background-repeat: repeat-x;
2415 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
2416 to(#eedc94) );
2417 background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
2418 background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
2419 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1),
2420 color-stop(100%, #eedc94) );
2421 background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
2422 background-image: -o-linear-gradient(top, #fceec1, #eedc94);
2423 background-image: linear-gradient(top, #fceec1, #eedc94);
2424 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1',
2425 endColorstr='#eedc94', GradientType=0 );
2426 border-color: #eedc94 #eedc94 #e4c652;
2275 2427 }
2276 2428
2277 2429 .success_msg {
2278 background-color:#D5FFCF;
2279 background-image:url("../images/icons/success_msg.png");
2280 border:1px solid #97FF88;
2281 color:#090;
2430 background-color: #57a957;
2431 background-repeat: repeat-x !important;
2432 background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462),
2433 to(#57a957) );
2434 background-image: -moz-linear-gradient(top, #62c462, #57a957);
2435 background-image: -ms-linear-gradient(top, #62c462, #57a957);
2436 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462),
2437 color-stop(100%, #57a957) );
2438 background-image: -webkit-linear-gradient(top, #62c462, #57a957);
2439 background-image: -o-linear-gradient(top, #62c462, #57a957);
2440 background-image: linear-gradient(top, #62c462, #57a957);
2441 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462',
2442 endColorstr='#57a957', GradientType=0 );
2443 border-color: #57a957 #57a957 #3d773d;
2282 2444 }
2283 2445
2284 2446 .notice_msg {
2285 background-color:#DCE3FF;
2286 background-image:url("../images/icons/notice_msg.png");
2287 border:1px solid #93A8FF;
2288 color:#556CB5;
2447 background-color: #339bb9;
2448 background-repeat: repeat-x;
2449 background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de),
2450 to(#339bb9) );
2451 background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
2452 background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
2453 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de),
2454 color-stop(100%, #339bb9) );
2455 background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
2456 background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
2457 background-image: linear-gradient(top, #5bc0de, #339bb9);
2458 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de',
2459 endColorstr='#339bb9', GradientType=0 );
2460 border-color: #339bb9 #339bb9 #22697d;
2289 2461 }
2290 2462
2291 2463 .success_msg,.error_msg,.notice_msg,.warning_msg {
2292 background-position:10px center;
2293 background-repeat:no-repeat;
2294 2464 font-size:12px;
2295 2465 font-weight:700;
2296 2466 min-height:14px;
2297 2467 line-height:14px;
2298 margin-bottom:0;
2468 margin-bottom: 10px;
2299 2469 margin-top:0;
2300 2470 display:block;
2301 2471 overflow:auto;
2302 padding:6px 10px 6px 40px;
2472 padding: 6px 10px 6px 10px;
2473 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2474 position: relative;
2475 color: #FFF;
2476 border-width: 1px;
2477 border-style: solid;
2478 -webkit-border-radius: 4px;
2479 -moz-border-radius: 4px;
2480 border-radius: 4px;
2481 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2482 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2483 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2303 2484 }
2304 2485
2305 2486 #msg_close {
2306 background:transparent url("../icons/cross_grey_small.png") no-repeat scroll 0 0;
2487 background: transparent url("../icons/cross_grey_small.png") no-repeat
2488 scroll 0 0;
2307 2489 cursor:pointer;
2308 2490 height:16px;
2309 2491 position:absolute;
2310 2492 right:5px;
2311 2493 top:5px;
2312 2494 width:16px;
2313 2495 }
2314 2496
2315 2497 div#legend_container table,div#legend_choices table {
2316 2498 width:auto !important;
2317 2499 }
2318 2500
2319 2501 table#permissions_manage {
2320 2502 width:0 !important;
2321 2503 }
2322 2504
2323 2505 table#permissions_manage span.private_repo_msg {
2324 2506 font-size:0.8em;
2325 2507 opacity:0.6px;
2326 2508 }
2327 2509
2328 2510 table#permissions_manage td.private_repo_msg {
2329 2511 font-size:0.8em;
2330 2512 }
2331 2513
2332 2514 table#permissions_manage tr#add_perm_input td {
2333 2515 vertical-align:middle;
2334 2516 }
2335 2517
2336 2518 div.gravatar {
2337 2519 background-color:#FFF;
2338 2520 border:1px solid #D0D0D0;
2339 2521 float:left;
2340 2522 margin-right:0.7em;
2341 2523 padding:2px 2px 0;
2342
2343 2524 -webkit-border-radius: 6px;
2344 2525 -khtml-border-radius: 6px;
2345 2526 -moz-border-radius: 6px;
2346 2527 border-radius: 6px;
2347
2348 2528 }
2349 2529
2350 2530 div.gravatar img {
2351 2531 -webkit-border-radius: 4px;
2352 2532 -khtml-border-radius: 4px;
2353 2533 -moz-border-radius: 4px;
2354 2534 border-radius: 4px;
2355 2535 }
2356 2536
2357 2537 #header,#content,#footer {
2358 2538 min-width:978px;
2359 2539 }
2360 2540
2361 2541 #content {
2362 2542 clear:both;
2363 2543 overflow:hidden;
2364 2544 padding:14px 10px;
2365 2545 }
2366 2546
2367 2547 #content div.box div.title div.search {
2368 2548 background:url("../images/title_link.png") no-repeat top left;
2369 2549 border-left:1px solid #316293;
2370 2550 }
2371 2551
2372 2552 #content div.box div.title div.search div.input input {
2373 2553 border:1px solid #316293;
2374 2554 }
2375 2555
2376 2556 .ui-button-small a:hover {
2377 2557
2378 2558 }
2559
2379 2560 input.ui-button-small,.ui-button-small {
2380 2561 background:#e5e3e3 url("../images/button.png") repeat-x !important;
2381 2562 border-top:1px solid #DDD !important;
2382 2563 border-left:1px solid #c6c6c6 !important;
2383 2564 border-right:1px solid #DDD !important;
2384 2565 border-bottom:1px solid #c6c6c6 !important;
2385 2566 color:#515151 !important;
2386 2567 outline:none !important;
2387 2568 margin:0 !important;
2388 2569 -webkit-border-radius: 4px 4px 4px 4px !important;
2389 2570 -khtml-border-radius: 4px 4px 4px 4px !important;
2390 2571 -moz-border-radius: 4px 4px 4px 4px !important;
2391 2572 border-radius: 4px 4px 4px 4px !important;
2392 2573 box-shadow: 0 1px 0 #ececec !important;
2393 2574 cursor: pointer !important;
2394 2575 padding:0px 2px 1px 2px;
2395 2576 }
2396 2577
2397 2578 input.ui-button-small:hover,.ui-button-small:hover {
2398 background:#b4b4b4 url("../images/button_selected.png") repeat-x !important;
2579 background: #b4b4b4 url("../images/button_selected.png") repeat-x
2580 !important;
2399 2581 border-top:1px solid #ccc !important;
2400 2582 border-left:1px solid #bebebe !important;
2401 2583 border-right:1px solid #b1b1b1 !important;
2402 2584 border-bottom:1px solid #afafaf !important;
2403 2585 text-decoration: none;
2404 2586 }
2405 2587
2406 2588 input.ui-button-small-blue,.ui-button-small-blue {
2407 2589 background:#4e85bb url("../images/button_highlight.png") repeat-x;
2408 2590 border-top:1px solid #5c91a4;
2409 2591 border-left:1px solid #2a6f89;
2410 2592 border-right:1px solid #2b7089;
2411 2593 border-bottom:1px solid #1a6480;
2412 2594 color:#fff;
2413 2595 -webkit-border-radius: 4px 4px 4px 4px;
2414 2596 -khtml-border-radius: 4px 4px 4px 4px;
2415 2597 -moz-border-radius: 4px 4px 4px 4px;
2416 2598 border-radius: 4px 4px 4px 4px;
2417 2599 box-shadow: 0 1px 0 #ececec;
2418 2600 cursor: pointer;
2419 2601 padding:0px 2px 1px 2px;
2420 2602 }
2421 2603
2422 2604 input.ui-button-small-blue:hover {
2423 2605
2424 2606 }
2425 2607
2426
2427 2608 ins,div.options a:hover {
2428 2609 text-decoration:none;
2429 2610 }
2430 2611
2431 img,#header #header-inner #quick li a:hover span.normal,#header #header-inner #quick li ul li.last,#content div.box div.form div.fields div.field div.textarea table td table td a,#clone_url {
2612 img,#header #header-inner #quick li a:hover span.normal,#header #header-inner #quick li ul li.last,#content div.box div.form div.fields div.field div.textarea table td table td a,#clone_url
2613 {
2432 2614 border:none;
2433 2615 }
2434 2616
2435 2617 img.icon,.right .merge img {
2436 2618 vertical-align:bottom;
2437 2619 }
2438 2620
2439 #header ul#logged-user,#content div.box div.title ul.links,#content div.box div.message div.dismiss,#content div.box div.traffic div.legend ul {
2621 #header ul#logged-user,#content div.box div.title ul.links,#content div.box div.message div.dismiss,#content div.box div.traffic div.legend ul
2622 {
2440 2623 float:right;
2441 2624 margin:0;
2442 2625 padding:0;
2443 2626 }
2444 2627
2445
2446 #header #header-inner #home,#header #header-inner #logo,#content div.box ul.left,#content div.box ol.left,#content div.box div.pagination-left,div#commit_history,div#legend_data,div#legend_container,div#legend_choices {
2628 #header #header-inner #home,#header #header-inner #logo,#content div.box ul.left,#content div.box ol.left,#content div.box div.pagination-left,div#commit_history,div#legend_data,div#legend_container,div#legend_choices
2629 {
2447 2630 float:left;
2448 2631 }
2449 2632
2450 #header #header-inner #quick li:hover ul ul,#header #header-inner #quick li:hover ul ul ul,#header #header-inner #quick li:hover ul ul ul ul,#content #left #menu ul.closed,#content #left #menu li ul.collapsed,.yui-tt-shadow {
2633 #header #header-inner #quick li:hover ul ul,#header #header-inner #quick li:hover ul ul ul,#header #header-inner #quick li:hover ul ul ul ul,#content #left #menu ul.closed,#content #left #menu li ul.collapsed,.yui-tt-shadow
2634 {
2451 2635 display:none;
2452 2636 }
2453 2637
2454 #header #header-inner #quick li:hover ul,#header #header-inner #quick li li:hover ul,#header #header-inner #quick li li li:hover ul,#header #header-inner #quick li li li li:hover ul,#content #left #menu ul.opened,#content #left #menu li ul.expanded {
2638 #header #header-inner #quick li:hover ul,#header #header-inner #quick li li:hover ul,#header #header-inner #quick li li li:hover ul,#header #header-inner #quick li li li li:hover ul,#content #left #menu ul.opened,#content #left #menu li ul.expanded
2639 {
2455 2640 display:block;
2456 2641 }
2457 2642
2458 2643 #content div.graph{
2459 2644 padding:0 10px 10px;
2460 2645 }
2461 2646
2462 #content div.box div.title ul.links li a:hover,#content div.box div.title ul.links li.ui-tabs-selected a {
2647 #content div.box div.title ul.links li a:hover,#content div.box div.title ul.links li.ui-tabs-selected a
2648 {
2463 2649 color:#bfe3ff;
2464 2650 }
2465 2651
2466 #content div.box ol.lower-roman,#content div.box ol.upper-roman,#content div.box ol.lower-alpha,#content div.box ol.upper-alpha,#content div.box ol.decimal {
2652 #content div.box ol.lower-roman,#content div.box ol.upper-roman,#content div.box ol.lower-alpha,#content div.box ol.upper-alpha,#content div.box ol.decimal
2653 {
2467 2654 margin:10px 24px 10px 44px;
2468 2655 }
2469 2656
2470 #content div.box div.form,#content div.box div.table,#content div.box div.traffic {
2657 #content div.box div.form,#content div.box div.table,#content div.box div.traffic
2658 {
2471 2659 clear:both;
2472 2660 overflow:hidden;
2473 2661 margin:0;
2474 2662 padding:0 20px 10px;
2475 2663 }
2476 2664
2477 #content div.box div.form div.fields,#login div.form,#login div.form div.fields,#register div.form,#register div.form div.fields {
2665 #content div.box div.form div.fields,#login div.form,#login div.form div.fields,#register div.form,#register div.form div.fields
2666 {
2478 2667 clear:both;
2479 2668 overflow:hidden;
2480 2669 margin:0;
2481 2670 padding:0;
2482 2671 }
2483 2672
2484 #content div.box div.form div.fields div.field div.label span,#login div.form div.fields div.field div.label span,#register div.form div.fields div.field div.label span {
2673 #content div.box div.form div.fields div.field div.label span,#login div.form div.fields div.field div.label span,#register div.form div.fields div.field div.label span
2674 {
2485 2675 height:1%;
2486 2676 display:block;
2487 2677 color:#363636;
2488 2678 margin:0;
2489 2679 padding:2px 0 0;
2490 2680 }
2491 2681
2492 #content div.box div.form div.fields div.field div.input input.error,#login div.form div.fields div.field div.input input.error,#register div.form div.fields div.field div.input input.error {
2682 #content div.box div.form div.fields div.field div.input input.error,#login div.form div.fields div.field div.input input.error,#register div.form div.fields div.field div.input input.error
2683 {
2493 2684 background:#FBE3E4;
2494 2685 border-top:1px solid #e1b2b3;
2495 2686 border-left:1px solid #e1b2b3;
2496 2687 border-right:1px solid #FBC2C4;
2497 2688 border-bottom:1px solid #FBC2C4;
2498 2689 }
2499 2690
2500 #content div.box div.form div.fields div.field div.input input.success,#login div.form div.fields div.field div.input input.success,#register div.form div.fields div.field div.input input.success {
2691 #content div.box div.form div.fields div.field div.input input.success,#login div.form div.fields div.field div.input input.success,#register div.form div.fields div.field div.input input.success
2692 {
2501 2693 background:#E6EFC2;
2502 2694 border-top:1px solid #cebb98;
2503 2695 border-left:1px solid #cebb98;
2504 2696 border-right:1px solid #c6d880;
2505 2697 border-bottom:1px solid #c6d880;
2506 2698 }
2507 2699
2508 #content div.box-left div.form div.fields div.field div.textarea,#content div.box-right div.form div.fields div.field div.textarea,#content div.box div.form div.fields div.field div.select select,#content div.box table th.selected input,#content div.box table td.selected input {
2700 #content div.box-left div.form div.fields div.field div.textarea,#content div.box-right div.form div.fields div.field div.textarea,#content div.box div.form div.fields div.field div.select select,#content div.box table th.selected input,#content div.box table td.selected input
2701 {
2509 2702 margin:0;
2510 2703 }
2511 2704
2512 #content div.box-left div.form div.fields div.field div.select,#content div.box-left div.form div.fields div.field div.checkboxes,#content div.box-left div.form div.fields div.field div.radios,#content div.box-right div.form div.fields div.field div.select,#content div.box-right div.form div.fields div.field div.checkboxes,#content div.box-right div.form div.fields div.field div.radios{
2705 #content div.box-left div.form div.fields div.field div.select,#content div.box-left div.form div.fields div.field div.checkboxes,#content div.box-left div.form div.fields div.field div.radios,#content div.box-right div.form div.fields div.field div.select,#content div.box-right div.form div.fields div.field div.checkboxes,#content div.box-right div.form div.fields div.field div.radios
2706 {
2513 2707 margin:0 0 0 0px !important;
2514 2708 padding:0;
2515 2709 }
2516 2710
2517 #content div.box div.form div.fields div.field div.select,#content div.box div.form div.fields div.field div.checkboxes,#content div.box div.form div.fields div.field div.radios {
2711 #content div.box div.form div.fields div.field div.select,#content div.box div.form div.fields div.field div.checkboxes,#content div.box div.form div.fields div.field div.radios
2712 {
2518 2713 margin:0 0 0 200px;
2519 2714 padding:0;
2520 2715 }
2521 2716
2522
2523 #content div.box div.form div.fields div.field div.select a:hover,#content div.box div.form div.fields div.field div.select a.ui-selectmenu:hover,#content div.box div.action a:hover {
2717 #content div.box div.form div.fields div.field div.select a:hover,#content div.box div.form div.fields div.field div.select a.ui-selectmenu:hover,#content div.box div.action a:hover
2718 {
2524 2719 color:#000;
2525 2720 text-decoration:none;
2526 2721 }
2527 2722
2528 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus,#content div.box div.action a.ui-selectmenu-focus {
2723 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus,#content div.box div.action a.ui-selectmenu-focus
2724 {
2529 2725 border:1px solid #666;
2530 2726 }
2531 2727
2532 #content div.box div.form div.fields div.field div.checkboxes div.checkbox,#content div.box div.form div.fields div.field div.radios div.radio {
2728 #content div.box div.form div.fields div.field div.checkboxes div.checkbox,#content div.box div.form div.fields div.field div.radios div.radio
2729 {
2533 2730 clear:both;
2534 2731 overflow:hidden;
2535 2732 margin:0;
2536 2733 padding:8px 0 2px;
2537 2734 }
2538 2735
2539 #content div.box div.form div.fields div.field div.checkboxes div.checkbox input,#content div.box div.form div.fields div.field div.radios div.radio input {
2736 #content div.box div.form div.fields div.field div.checkboxes div.checkbox input,#content div.box div.form div.fields div.field div.radios div.radio input
2737 {
2540 2738 float:left;
2541 2739 margin:0;
2542 2740 }
2543 2741
2544 #content div.box div.form div.fields div.field div.checkboxes div.checkbox label,#content div.box div.form div.fields div.field div.radios div.radio label {
2742 #content div.box div.form div.fields div.field div.checkboxes div.checkbox label,#content div.box div.form div.fields div.field div.radios div.radio label
2743 {
2545 2744 height:1%;
2546 2745 display:block;
2547 2746 float:left;
2548 2747 margin:2px 0 0 4px;
2549 2748 }
2550 2749
2551 div.form div.fields div.field div.button input,#content div.box div.form div.fields div.buttons input,div.form div.fields div.buttons input,#content div.box div.action div.button input {
2750 div.form div.fields div.field div.button input,#content div.box div.form div.fields div.buttons input,div.form div.fields div.buttons input,#content div.box div.action div.button input
2751 {
2552 2752 color:#000;
2553 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
2554 2753 font-size:11px;
2555 2754 font-weight:700;
2556 2755 margin:0;
2557 2756 }
2558 2757
2559 2758 input.ui-button {
2560 2759 background:#e5e3e3 url("../images/button.png") repeat-x;
2561 2760 border-top:1px solid #DDD;
2562 2761 border-left:1px solid #c6c6c6;
2563 2762 border-right:1px solid #DDD;
2564 2763 border-bottom:1px solid #c6c6c6;
2565 2764 color:#515151 !important;
2566 2765 outline:none;
2567 2766 margin:0;
2568 2767 padding:6px 12px;
2569 2768 -webkit-border-radius: 4px 4px 4px 4px;
2570 2769 -khtml-border-radius: 4px 4px 4px 4px;
2571 2770 -moz-border-radius: 4px 4px 4px 4px;
2572 2771 border-radius: 4px 4px 4px 4px;
2573 2772 box-shadow: 0 1px 0 #ececec;
2574 2773 cursor: pointer;
2575 2774 }
2576 2775
2577 2776 input.ui-button:hover {
2578 2777 background:#b4b4b4 url("../images/button_selected.png") repeat-x;
2579 2778 border-top:1px solid #ccc;
2580 2779 border-left:1px solid #bebebe;
2581 2780 border-right:1px solid #b1b1b1;
2582 2781 border-bottom:1px solid #afafaf;
2583 2782 }
2584 2783
2585 div.form div.fields div.field div.highlight,#content div.box div.form div.fields div.buttons div.highlight {
2784 div.form div.fields div.field div.highlight,#content div.box div.form div.fields div.buttons div.highlight
2785 {
2586 2786 display:inline;
2587 2787 }
2588 2788
2589 #content div.box div.form div.fields div.buttons,div.form div.fields div.buttons {
2789 #content div.box div.form div.fields div.buttons,div.form div.fields div.buttons
2790 {
2590 2791 margin:10px 0 0 200px;
2591 2792 padding:0;
2592 2793 }
2593 2794
2594 #content div.box-left div.form div.fields div.buttons,#content div.box-right div.form div.fields div.buttons,div.box-left div.form div.fields div.buttons,div.box-right div.form div.fields div.buttons {
2795 #content div.box-left div.form div.fields div.buttons,#content div.box-right div.form div.fields div.buttons,div.box-left div.form div.fields div.buttons,div.box-right div.form div.fields div.buttons
2796 {
2595 2797 margin:10px 0 0;
2596 2798 }
2597 2799
2598 2800 #content div.box table td.user,#content div.box table td.address {
2599 2801 width:10%;
2600 2802 text-align:center;
2601 2803 }
2602 2804
2603 #content div.box div.action div.button,#login div.form div.fields div.field div.input div.link,#register div.form div.fields div.field div.input div.link {
2805 #content div.box div.action div.button,#login div.form div.fields div.field div.input div.link,#register div.form div.fields div.field div.input div.link
2806 {
2604 2807 text-align:right;
2605 2808 margin:6px 0 0;
2606 2809 padding:0;
2607 2810 }
2608 2811
2609
2610 #content div.box div.action div.button input.ui-state-hover,#login div.form div.fields div.buttons input.ui-state-hover,#register div.form div.fields div.buttons input.ui-state-hover {
2812 #content div.box div.action div.button input.ui-state-hover,#login div.form div.fields div.buttons input.ui-state-hover,#register div.form div.fields div.buttons input.ui-state-hover
2813 {
2611 2814 background:#b4b4b4 url("../images/button_selected.png") repeat-x;
2612 2815 border-top:1px solid #ccc;
2613 2816 border-left:1px solid #bebebe;
2614 2817 border-right:1px solid #b1b1b1;
2615 2818 border-bottom:1px solid #afafaf;
2616 2819 color:#515151;
2617 2820 margin:0;
2618 2821 padding:6px 12px;
2619 2822 }
2620 2823
2621 #content div.box div.pagination div.results,#content div.box div.pagination-wh div.results {
2824 #content div.box div.pagination div.results,#content div.box div.pagination-wh div.results
2825 {
2622 2826 text-align:left;
2623 2827 float:left;
2624 2828 margin:0;
2625 2829 padding:0;
2626 2830 }
2627 2831
2628 #content div.box div.pagination div.results span,#content div.box div.pagination-wh div.results span {
2832 #content div.box div.pagination div.results span,#content div.box div.pagination-wh div.results span
2833 {
2629 2834 height:1%;
2630 2835 display:block;
2631 2836 float:left;
2632 2837 background:#ebebeb url("../images/pager.png") repeat-x;
2633 2838 border-top:1px solid #dedede;
2634 2839 border-left:1px solid #cfcfcf;
2635 2840 border-right:1px solid #c4c4c4;
2636 2841 border-bottom:1px solid #c4c4c4;
2637 2842 color:#4A4A4A;
2638 2843 font-weight:700;
2639 2844 margin:0;
2640 2845 padding:6px 8px;
2641 2846 }
2642 2847
2643 #content div.box div.pagination ul.pager li.disabled,#content div.box div.pagination-wh a.disabled {
2848 #content div.box div.pagination ul.pager li.disabled,#content div.box div.pagination-wh a.disabled
2849 {
2644 2850 color:#B4B4B4;
2645 2851 padding:6px;
2646 2852 }
2647 2853
2648 2854 #login,#register {
2649 2855 width:520px;
2650 2856 margin:10% auto 0;
2651 2857 padding:0;
2652 2858 }
2653 2859
2654 2860 #login div.color,#register div.color {
2655 2861 clear:both;
2656 2862 overflow:hidden;
2657 2863 background:#FFF;
2658 2864 margin:10px auto 0;
2659 2865 padding:3px 3px 3px 0;
2660 2866 }
2661 2867
2662 2868 #login div.color a,#register div.color a {
2663 2869 width:20px;
2664 2870 height:20px;
2665 2871 display:block;
2666 2872 float:left;
2667 2873 margin:0 0 0 3px;
2668 2874 padding:0;
2669 2875 }
2670 2876
2671 2877 #login div.title h5,#register div.title h5 {
2672 2878 color:#fff;
2673 2879 margin:10px;
2674 2880 padding:0;
2675 2881 }
2676 2882
2677 #login div.form div.fields div.field,#register div.form div.fields div.field {
2883 #login div.form div.fields div.field,#register div.form div.fields div.field
2884 {
2678 2885 clear:both;
2679 2886 overflow:hidden;
2680 2887 margin:0;
2681 2888 padding:0 0 10px;
2682 2889 }
2683 2890
2684 #login div.form div.fields div.field span.error-message,#register div.form div.fields div.field span.error-message {
2891 #login div.form div.fields div.field span.error-message,#register div.form div.fields div.field span.error-message
2892 {
2685 2893 height:1%;
2686 2894 display:block;
2687 2895 color:red;
2688 2896 margin:8px 0 0;
2689 2897 padding:0;
2690 2898 max-width: 320px;
2691 2899 }
2692 2900
2693 #login div.form div.fields div.field div.label label,#register div.form div.fields div.field div.label label {
2901 #login div.form div.fields div.field div.label label,#register div.form div.fields div.field div.label label
2902 {
2694 2903 color:#000;
2695 2904 font-weight:700;
2696 2905 }
2697 2906
2698 #login div.form div.fields div.field div.input,#register div.form div.fields div.field div.input {
2907 #login div.form div.fields div.field div.input,#register div.form div.fields div.field div.input
2908 {
2699 2909 float:left;
2700 2910 margin:0;
2701 2911 padding:0;
2702 2912 }
2703 2913
2704 #login div.form div.fields div.field div.checkbox,#register div.form div.fields div.field div.checkbox {
2914 #login div.form div.fields div.field div.checkbox,#register div.form div.fields div.field div.checkbox
2915 {
2705 2916 margin:0 0 0 184px;
2706 2917 padding:0;
2707 2918 }
2708 2919
2709 #login div.form div.fields div.field div.checkbox label,#register div.form div.fields div.field div.checkbox label {
2920 #login div.form div.fields div.field div.checkbox label,#register div.form div.fields div.field div.checkbox label
2921 {
2710 2922 color:#565656;
2711 2923 font-weight:700;
2712 2924 }
2713 2925
2714 #login div.form div.fields div.buttons input,#register div.form div.fields div.buttons input {
2926 #login div.form div.fields div.buttons input,#register div.form div.fields div.buttons input
2927 {
2715 2928 color:#000;
2716 2929 font-size:1em;
2717 2930 font-weight:700;
2718 font-family:Verdana, Helvetica, Sans-Serif;
2719 2931 margin:0;
2720 2932 }
2721 2933
2722 #changeset_content .container .wrapper,#graph_content .container .wrapper {
2934 #changeset_content .container .wrapper,#graph_content .container .wrapper
2935 {
2723 2936 width:600px;
2724 2937 }
2725 2938
2726 2939 #changeset_content .container .left,#graph_content .container .left {
2727 2940 float:left;
2728 2941 width:70%;
2729 2942 padding-left:5px;
2730 2943 }
2731 2944
2732 2945 #changeset_content .container .left .date,.ac .match {
2733 2946 font-weight:700;
2734 2947 padding-top: 5px;
2735 2948 padding-bottom:5px;
2736 2949 }
2737 2950
2738 2951 div#legend_container table td,div#legend_choices table td {
2739 2952 border:none !important;
2740 2953 height:20px !important;
2741 2954 padding:0 !important;
2742 2955 }
2743 2956
2744 2957 #q_filter{
2745 2958 border:0 none;
2746 2959 color:#AAAAAA;
2747 2960 margin-bottom:-4px;
2748 2961 margin-top:-4px;
2749 2962 padding-left:3px;
2750 2963 }
2751 2964
2752 2965 #node_filter{
2753 2966 border:0px solid #545454;
2754 2967 color:#AAAAAA;
2755 2968 padding-left:3px;
2756 }
2969 } No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now