##// END OF EJS Templates
css: styling file change counts
Aras Pranckevicius -
r1855:5ab237f1 beta
parent child Browse files
Show More
@@ -1,4106 +1,4095 b''
1 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 3 border: 0;
4 4 outline: 0;
5 5 font-size: 100%;
6 6 vertical-align: baseline;
7 7 background: transparent;
8 8 margin: 0;
9 9 padding: 0;
10 10 }
11 11
12 12 body {
13 13 line-height: 1;
14 14 height: 100%;
15 15 background: url("../images/background.png") repeat scroll 0 0 #B0B0B0;
16 16 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
17 17 Lucida Sans Unicode, Arial, sans-serif; font-size : 12px;
18 18 color: #000;
19 19 margin: 0;
20 20 padding: 0;
21 21 font-size: 12px;
22 22 }
23 23
24 24 ol,ul {
25 25 list-style: none;
26 26 }
27 27
28 28 blockquote,q {
29 29 quotes: none;
30 30 }
31 31
32 32 blockquote:before,blockquote:after,q:before,q:after {
33 33 content: none;
34 34 }
35 35
36 36 :focus {
37 37 outline: 0;
38 38 }
39 39
40 40 del {
41 41 text-decoration: line-through;
42 42 }
43 43
44 44 table {
45 45 border-collapse: collapse;
46 46 border-spacing: 0;
47 47 }
48 48
49 49 html {
50 50 height: 100%;
51 51 }
52 52
53 53 a {
54 54 color: #003367;
55 55 text-decoration: none;
56 56 cursor: pointer;
57 57 }
58 58
59 59 a:hover {
60 60 color: #316293;
61 61 text-decoration: underline;
62 62 }
63 63
64 64 h1,h2,h3,h4,h5,h6 {
65 65 color: #292929;
66 66 font-weight: 700;
67 67 }
68 68
69 69 h1 {
70 70 font-size: 22px;
71 71 }
72 72
73 73 h2 {
74 74 font-size: 20px;
75 75 }
76 76
77 77 h3 {
78 78 font-size: 18px;
79 79 }
80 80
81 81 h4 {
82 82 font-size: 16px;
83 83 }
84 84
85 85 h5 {
86 86 font-size: 14px;
87 87 }
88 88
89 89 h6 {
90 90 font-size: 11px;
91 91 }
92 92
93 93 ul.circle {
94 94 list-style-type: circle;
95 95 }
96 96
97 97 ul.disc {
98 98 list-style-type: disc;
99 99 }
100 100
101 101 ul.square {
102 102 list-style-type: square;
103 103 }
104 104
105 105 ol.lower-roman {
106 106 list-style-type: lower-roman;
107 107 }
108 108
109 109 ol.upper-roman {
110 110 list-style-type: upper-roman;
111 111 }
112 112
113 113 ol.lower-alpha {
114 114 list-style-type: lower-alpha;
115 115 }
116 116
117 117 ol.upper-alpha {
118 118 list-style-type: upper-alpha;
119 119 }
120 120
121 121 ol.decimal {
122 122 list-style-type: decimal;
123 123 }
124 124
125 125 div.color {
126 126 clear: both;
127 127 overflow: hidden;
128 128 position: absolute;
129 129 background: #FFF;
130 130 margin: 7px 0 0 60px;
131 131 padding: 1px 1px 1px 0;
132 132 }
133 133
134 134 div.color a {
135 135 width: 15px;
136 136 height: 15px;
137 137 display: block;
138 138 float: left;
139 139 margin: 0 0 0 1px;
140 140 padding: 0;
141 141 }
142 142
143 143 div.options {
144 144 clear: both;
145 145 overflow: hidden;
146 146 position: absolute;
147 147 background: #FFF;
148 148 margin: 7px 0 0 162px;
149 149 padding: 0;
150 150 }
151 151
152 152 div.options a {
153 153 height: 1%;
154 154 display: block;
155 155 text-decoration: none;
156 156 margin: 0;
157 157 padding: 3px 8px;
158 158 }
159 159
160 160 .top-left-rounded-corner {
161 161 -webkit-border-top-left-radius: 8px;
162 162 -khtml-border-radius-topleft: 8px;
163 163 -moz-border-radius-topleft: 8px;
164 164 border-top-left-radius: 8px;
165 165 }
166 166
167 167 .top-right-rounded-corner {
168 168 -webkit-border-top-right-radius: 8px;
169 169 -khtml-border-radius-topright: 8px;
170 170 -moz-border-radius-topright: 8px;
171 171 border-top-right-radius: 8px;
172 172 }
173 173
174 174 .bottom-left-rounded-corner {
175 175 -webkit-border-bottom-left-radius: 8px;
176 176 -khtml-border-radius-bottomleft: 8px;
177 177 -moz-border-radius-bottomleft: 8px;
178 178 border-bottom-left-radius: 8px;
179 179 }
180 180
181 181 .bottom-right-rounded-corner {
182 182 -webkit-border-bottom-right-radius: 8px;
183 183 -khtml-border-radius-bottomright: 8px;
184 184 -moz-border-radius-bottomright: 8px;
185 185 border-bottom-right-radius: 8px;
186 186 }
187 187
188 188 #header {
189 189 margin: 0;
190 190 padding: 0 10px;
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 200 background-color: #eedc94;
201 201 background-repeat: repeat-x;
202 202 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
203 203 to(#eedc94) );
204 204 background-image: -moz-linear-gradient(top, #003b76, #00376e);
205 205 background-image: -ms-linear-gradient(top, #003b76, #00376e);
206 206 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
207 207 color-stop(100%, #00376e) );
208 208 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
209 209 background-image: -o-linear-gradient(top, #003b76, #00376e) );
210 210 background-image: linear-gradient(top, #003b76, #00376e);
211 211 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
212 212 endColorstr='#00376e', GradientType=0 );
213 213 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
214 214 }
215 215
216 216 #header ul#logged-user li {
217 217 list-style: none;
218 218 float: left;
219 219 margin: 8px 0 0;
220 220 padding: 4px 12px;
221 221 border-left: 1px solid #316293;
222 222 }
223 223
224 224 #header ul#logged-user li.first {
225 225 border-left: none;
226 226 margin: 4px;
227 227 }
228 228
229 229 #header ul#logged-user li.first div.gravatar {
230 230 margin-top: -2px;
231 231 }
232 232
233 233 #header ul#logged-user li.first div.account {
234 234 padding-top: 4px;
235 235 float: left;
236 236 }
237 237
238 238 #header ul#logged-user li.last {
239 239 border-right: none;
240 240 }
241 241
242 242 #header ul#logged-user li a {
243 243 color: #fff;
244 244 font-weight: 700;
245 245 text-decoration: none;
246 246 }
247 247
248 248 #header ul#logged-user li a:hover {
249 249 text-decoration: underline;
250 250 }
251 251
252 252 #header ul#logged-user li.highlight a {
253 253 color: #fff;
254 254 }
255 255
256 256 #header ul#logged-user li.highlight a:hover {
257 257 color: #FFF;
258 258 }
259 259
260 260 #header #header-inner {
261 261 min-height: 40px;
262 262 clear: both;
263 263 position: relative;
264 264 background-color: #eedc94;
265 265 background-repeat: repeat-x;
266 266 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
267 267 to(#eedc94) );
268 268 background-image: -moz-linear-gradient(top, #003b76, #00376e);
269 269 background-image: -ms-linear-gradient(top, #003b76, #00376e);
270 270 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
271 271 color-stop(100%, #00376e) );
272 272 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
273 273 background-image: -o-linear-gradient(top, #003b76, #00376e) );
274 274 background-image: linear-gradient(top, #003b76, #00376e);
275 275 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
276 276 endColorstr='#00376e', GradientType=0 );
277 277 margin: 0;
278 278 padding: 0;
279 279 display: block;
280 280 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
281 281 -webkit-border-radius: 4px 4px 4px 4px;
282 282 -khtml-border-radius: 4px 4px 4px 4px;
283 283 -moz-border-radius: 4px 4px 4px 4px;
284 284 border-radius: 4px 4px 4px 4px;
285 285 }
286 286 #header #header-inner.hover{
287 287 position: fixed !important;
288 288 width: 100% !important;
289 289 margin-left: -10px !important;
290 290 z-index: 10000;
291 291 border-radius: 0px 0px 4px 4px;
292 292 }
293 293 #header #header-inner #home a {
294 294 height: 40px;
295 295 width: 46px;
296 296 display: block;
297 297 background: url("../images/button_home.png");
298 298 background-position: 0 0;
299 299 margin: 0;
300 300 padding: 0;
301 301 }
302 302
303 303 #header #header-inner #home a:hover {
304 304 background-position: 0 -40px;
305 305 }
306 306
307 307 #header #header-inner #logo {
308 308 float: left;
309 309 position: absolute;
310 310 }
311 311
312 312 #header #header-inner #logo h1 {
313 313 color: #FFF;
314 314 font-size: 18px;
315 315 margin: 10px 0 0 13px;
316 316 padding: 0;
317 317 }
318 318
319 319 #header #header-inner #logo a {
320 320 color: #fff;
321 321 text-decoration: none;
322 322 }
323 323
324 324 #header #header-inner #logo a:hover {
325 325 color: #bfe3ff;
326 326 }
327 327
328 328 #header #header-inner #quick,#header #header-inner #quick ul {
329 329 position: relative;
330 330 float: right;
331 331 list-style-type: none;
332 332 list-style-position: outside;
333 333 margin: 6px 5px 0 0;
334 334 padding: 0;
335 335 }
336 336
337 337 #header #header-inner #quick li {
338 338 position: relative;
339 339 float: left;
340 340 margin: 0 5px 0 0;
341 341 padding: 0;
342 342 }
343 343
344 344 #header #header-inner #quick li a {
345 345 top: 0;
346 346 left: 0;
347 347 height: 1%;
348 348 display: block;
349 349 clear: both;
350 350 overflow: hidden;
351 351 color: #FFF;
352 352 font-weight: 700;
353 353 text-decoration: none;
354 354 background: #369;
355 355 padding: 0;
356 356 -webkit-border-radius: 4px 4px 4px 4px;
357 357 -khtml-border-radius: 4px 4px 4px 4px;
358 358 -moz-border-radius: 4px 4px 4px 4px;
359 359 border-radius: 4px 4px 4px 4px;
360 360 }
361 361
362 362 #header #header-inner #quick li span.short {
363 363 padding: 9px 6px 8px 6px;
364 364 }
365 365
366 366 #header #header-inner #quick li span {
367 367 top: 0;
368 368 right: 0;
369 369 height: 1%;
370 370 display: block;
371 371 float: left;
372 372 border-left: 1px solid #3f6f9f;
373 373 margin: 0;
374 374 padding: 10px 12px 8px 10px;
375 375 }
376 376
377 377 #header #header-inner #quick li span.normal {
378 378 border: none;
379 379 padding: 10px 12px 8px;
380 380 }
381 381
382 382 #header #header-inner #quick li span.icon {
383 383 top: 0;
384 384 left: 0;
385 385 border-left: none;
386 386 border-right: 1px solid #2e5c89;
387 387 padding: 8px 6px 4px;
388 388 }
389 389
390 390 #header #header-inner #quick li span.icon_short {
391 391 top: 0;
392 392 left: 0;
393 393 border-left: none;
394 394 border-right: 1px solid #2e5c89;
395 395 padding: 8px 6px 4px;
396 396 }
397 397
398 398 #header #header-inner #quick li span.icon img,#header #header-inner #quick li span.icon_short img
399 399 {
400 400 margin: 0px -2px 0px 0px;
401 401 }
402 402
403 403 #header #header-inner #quick li a:hover {
404 404 background: #4e4e4e no-repeat top left;
405 405 }
406 406
407 407 #header #header-inner #quick li a:hover span {
408 408 border-left: 1px solid #545454;
409 409 }
410 410
411 411 #header #header-inner #quick li a:hover span.icon,#header #header-inner #quick li a:hover span.icon_short
412 412 {
413 413 border-left: none;
414 414 border-right: 1px solid #464646;
415 415 }
416 416
417 417 #header #header-inner #quick ul {
418 418 top: 29px;
419 419 right: 0;
420 420 min-width: 200px;
421 421 display: none;
422 422 position: absolute;
423 423 background: #FFF;
424 424 border: 1px solid #666;
425 425 border-top: 1px solid #003367;
426 426 z-index: 100;
427 427 margin: 0;
428 428 padding: 0;
429 429 }
430 430
431 431 #header #header-inner #quick ul.repo_switcher {
432 432 max-height: 275px;
433 433 overflow-x: hidden;
434 434 overflow-y: auto;
435 435 }
436 436
437 437 #header #header-inner #quick ul.repo_switcher li.qfilter_rs {
438 438 float: none;
439 439 margin: 0;
440 440 border-bottom: 2px solid #003367;
441 441 }
442 442
443 443 #header #header-inner #quick .repo_switcher_type {
444 444 position: absolute;
445 445 left: 0;
446 446 top: 9px;
447 447 }
448 448
449 449 #header #header-inner #quick li ul li {
450 450 border-bottom: 1px solid #ddd;
451 451 }
452 452
453 453 #header #header-inner #quick li ul li a {
454 454 width: 182px;
455 455 height: auto;
456 456 display: block;
457 457 float: left;
458 458 background: #FFF;
459 459 color: #003367;
460 460 font-weight: 400;
461 461 margin: 0;
462 462 padding: 7px 9px;
463 463 }
464 464
465 465 #header #header-inner #quick li ul li a:hover {
466 466 color: #000;
467 467 background: #FFF;
468 468 }
469 469
470 470 #header #header-inner #quick ul ul {
471 471 top: auto;
472 472 }
473 473
474 474 #header #header-inner #quick li ul ul {
475 475 right: 200px;
476 476 max-height: 275px;
477 477 overflow: auto;
478 478 overflow-x: hidden;
479 479 white-space: normal;
480 480 }
481 481
482 482 #header #header-inner #quick li ul li a.journal,#header #header-inner #quick li ul li a.journal:hover
483 483 {
484 484 background: url("../images/icons/book.png") no-repeat scroll 4px 9px
485 485 #FFF;
486 486 width: 167px;
487 487 margin: 0;
488 488 padding: 12px 9px 7px 24px;
489 489 }
490 490
491 491 #header #header-inner #quick li ul li a.private_repo,#header #header-inner #quick li ul li a.private_repo:hover
492 492 {
493 493 background: url("../images/icons/lock.png") no-repeat scroll 4px 9px
494 494 #FFF;
495 495 min-width: 167px;
496 496 margin: 0;
497 497 padding: 12px 9px 7px 24px;
498 498 }
499 499
500 500 #header #header-inner #quick li ul li a.public_repo,#header #header-inner #quick li ul li a.public_repo:hover
501 501 {
502 502 background: url("../images/icons/lock_open.png") no-repeat scroll 4px
503 503 9px #FFF;
504 504 min-width: 167px;
505 505 margin: 0;
506 506 padding: 12px 9px 7px 24px;
507 507 }
508 508
509 509 #header #header-inner #quick li ul li a.hg,#header #header-inner #quick li ul li a.hg:hover
510 510 {
511 511 background: url("../images/icons/hgicon.png") no-repeat scroll 4px 9px
512 512 #FFF;
513 513 min-width: 167px;
514 514 margin: 0 0 0 14px;
515 515 padding: 12px 9px 7px 24px;
516 516 }
517 517
518 518 #header #header-inner #quick li ul li a.git,#header #header-inner #quick li ul li a.git:hover
519 519 {
520 520 background: url("../images/icons/giticon.png") no-repeat scroll 4px 9px
521 521 #FFF;
522 522 min-width: 167px;
523 523 margin: 0 0 0 14px;
524 524 padding: 12px 9px 7px 24px;
525 525 }
526 526
527 527 #header #header-inner #quick li ul li a.repos,#header #header-inner #quick li ul li a.repos:hover
528 528 {
529 529 background: url("../images/icons/database_edit.png") no-repeat scroll
530 530 4px 9px #FFF;
531 531 width: 167px;
532 532 margin: 0;
533 533 padding: 12px 9px 7px 24px;
534 534 }
535 535
536 536 #header #header-inner #quick li ul li a.repos_groups,#header #header-inner #quick li ul li a.repos_groups:hover
537 537 {
538 538 background: url("../images/icons/database_link.png") no-repeat scroll
539 539 4px 9px #FFF;
540 540 width: 167px;
541 541 margin: 0;
542 542 padding: 12px 9px 7px 24px;
543 543 }
544 544
545 545 #header #header-inner #quick li ul li a.users,#header #header-inner #quick li ul li a.users:hover
546 546 {
547 547 background: #FFF url("../images/icons/user_edit.png") no-repeat 4px 9px;
548 548 width: 167px;
549 549 margin: 0;
550 550 padding: 12px 9px 7px 24px;
551 551 }
552 552
553 553 #header #header-inner #quick li ul li a.groups,#header #header-inner #quick li ul li a.groups:hover
554 554 {
555 555 background: #FFF url("../images/icons/group_edit.png") no-repeat 4px 9px;
556 556 width: 167px;
557 557 margin: 0;
558 558 padding: 12px 9px 7px 24px;
559 559 }
560 560
561 561 #header #header-inner #quick li ul li a.settings,#header #header-inner #quick li ul li a.settings:hover
562 562 {
563 563 background: #FFF url("../images/icons/cog.png") no-repeat 4px 9px;
564 564 width: 167px;
565 565 margin: 0;
566 566 padding: 12px 9px 7px 24px;
567 567 }
568 568
569 569 #header #header-inner #quick li ul li a.permissions,#header #header-inner #quick li ul li a.permissions:hover
570 570 {
571 571 background: #FFF url("../images/icons/key.png") no-repeat 4px 9px;
572 572 width: 167px;
573 573 margin: 0;
574 574 padding: 12px 9px 7px 24px;
575 575 }
576 576
577 577 #header #header-inner #quick li ul li a.ldap,#header #header-inner #quick li ul li a.ldap:hover
578 578 {
579 579 background: #FFF url("../images/icons/server_key.png") no-repeat 4px 9px;
580 580 width: 167px;
581 581 margin: 0;
582 582 padding: 12px 9px 7px 24px;
583 583 }
584 584
585 585 #header #header-inner #quick li ul li a.fork,#header #header-inner #quick li ul li a.fork:hover
586 586 {
587 587 background: #FFF url("../images/icons/arrow_divide.png") no-repeat 4px
588 588 9px;
589 589 width: 167px;
590 590 margin: 0;
591 591 padding: 12px 9px 7px 24px;
592 592 }
593 593
594 594 #header #header-inner #quick li ul li a.search,#header #header-inner #quick li ul li a.search:hover
595 595 {
596 596 background: #FFF url("../images/icons/search_16.png") no-repeat 4px 9px;
597 597 width: 167px;
598 598 margin: 0;
599 599 padding: 12px 9px 7px 24px;
600 600 }
601 601
602 602 #header #header-inner #quick li ul li a.delete,#header #header-inner #quick li ul li a.delete:hover
603 603 {
604 604 background: #FFF url("../images/icons/delete.png") no-repeat 4px 9px;
605 605 width: 167px;
606 606 margin: 0;
607 607 padding: 12px 9px 7px 24px;
608 608 }
609 609
610 610 #header #header-inner #quick li ul li a.branches,#header #header-inner #quick li ul li a.branches:hover
611 611 {
612 612 background: #FFF url("../images/icons/arrow_branch.png") no-repeat 4px
613 613 9px;
614 614 width: 167px;
615 615 margin: 0;
616 616 padding: 12px 9px 7px 24px;
617 617 }
618 618
619 619 #header #header-inner #quick li ul li a.tags,
620 620 #header #header-inner #quick li ul li a.tags:hover{
621 621 background: #FFF url("../images/icons/tag_blue.png") no-repeat 4px 9px;
622 622 width: 167px;
623 623 margin: 0;
624 624 padding: 12px 9px 7px 24px;
625 625 }
626 626
627 627 #header #header-inner #quick li ul li a.bookmarks,
628 628 #header #header-inner #quick li ul li a.bookmarks:hover{
629 629 background: #FFF url("../images/icons/tag_green.png") no-repeat 4px 9px;
630 630 width: 167px;
631 631 margin: 0;
632 632 padding: 12px 9px 7px 24px;
633 633 }
634 634
635 635 #header #header-inner #quick li ul li a.admin,
636 636 #header #header-inner #quick li ul li a.admin:hover{
637 637 background: #FFF url("../images/icons/cog_edit.png") no-repeat 4px 9px;
638 638 width: 167px;
639 639 margin: 0;
640 640 padding: 12px 9px 7px 24px;
641 641 }
642 642
643 643 .groups_breadcrumbs a {
644 644 color: #fff;
645 645 }
646 646
647 647 .groups_breadcrumbs a:hover {
648 648 color: #bfe3ff;
649 649 text-decoration: none;
650 650 }
651 651
652 652 td.quick_repo_menu {
653 653 background: #FFF url("../images/vertical-indicator.png") 8px 50% no-repeat !important;
654 654 cursor: pointer;
655 655 width: 8px;
656 656 border: 1px solid transparent;
657 657 }
658 658
659 659 td.quick_repo_menu.active {
660 660 background: url("../images/dt-arrow-dn.png") no-repeat scroll 5px 50% #FFFFFF !important;
661 661 border: 1px solid #003367;
662 662 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
663 663 cursor: pointer;
664 664 }
665 665
666 666 td.quick_repo_menu .menu_items {
667 667 margin-top: 10px;
668 668 margin-left:-6px;
669 669 width: 150px;
670 670 position: absolute;
671 671 background-color: #FFF;
672 672 background: none repeat scroll 0 0 #FFFFFF;
673 673 border-color: #003367 #666666 #666666;
674 674 border-right: 1px solid #666666;
675 675 border-style: solid;
676 676 border-width: 1px;
677 677 box-shadow: 2px 8px 4px rgba(0, 0, 0, 0.2);
678 678 border-top-style: none;
679 679 }
680 680
681 681 td.quick_repo_menu .menu_items li {
682 682 padding: 0 !important;
683 683 }
684 684
685 685 td.quick_repo_menu .menu_items a {
686 686 display: block;
687 687 padding: 4px 12px 4px 8px;
688 688 }
689 689
690 690 td.quick_repo_menu .menu_items a:hover {
691 691 background-color: #EEE;
692 692 text-decoration: none;
693 693 }
694 694
695 695 td.quick_repo_menu .menu_items .icon img {
696 696 margin-bottom: -2px;
697 697 }
698 698
699 699 td.quick_repo_menu .menu_items.hidden {
700 700 display: none;
701 701 }
702 702
703 703 .yui-dt-first th {
704 704 text-align: left;
705 705 }
706 706
707 707 /*
708 708 Copyright (c) 2011, Yahoo! Inc. All rights reserved.
709 709 Code licensed under the BSD License:
710 710 http://developer.yahoo.com/yui/license.html
711 711 version: 2.9.0
712 712 */
713 713 .yui-skin-sam .yui-dt-mask {
714 714 position: absolute;
715 715 z-index: 9500;
716 716 }
717 717 .yui-dt-tmp {
718 718 position: absolute;
719 719 left: -9000px;
720 720 }
721 721 .yui-dt-scrollable .yui-dt-bd { overflow: auto }
722 722 .yui-dt-scrollable .yui-dt-hd {
723 723 overflow: hidden;
724 724 position: relative;
725 725 }
726 726 .yui-dt-scrollable .yui-dt-bd thead tr,
727 727 .yui-dt-scrollable .yui-dt-bd thead th {
728 728 position: absolute;
729 729 left: -1500px;
730 730 }
731 731 .yui-dt-scrollable tbody { -moz-outline: 0 }
732 732 .yui-skin-sam thead .yui-dt-sortable { cursor: pointer }
733 733 .yui-skin-sam thead .yui-dt-draggable { cursor: move }
734 734 .yui-dt-coltarget {
735 735 position: absolute;
736 736 z-index: 999;
737 737 }
738 738 .yui-dt-hd { zoom: 1 }
739 739 th.yui-dt-resizeable .yui-dt-resizerliner { position: relative }
740 740 .yui-dt-resizer {
741 741 position: absolute;
742 742 right: 0;
743 743 bottom: 0;
744 744 height: 100%;
745 745 cursor: e-resize;
746 746 cursor: col-resize;
747 747 background-color: #CCC;
748 748 opacity: 0;
749 749 filter: alpha(opacity=0);
750 750 }
751 751 .yui-dt-resizerproxy {
752 752 visibility: hidden;
753 753 position: absolute;
754 754 z-index: 9000;
755 755 background-color: #CCC;
756 756 opacity: 0;
757 757 filter: alpha(opacity=0);
758 758 }
759 759 th.yui-dt-hidden .yui-dt-liner,
760 760 td.yui-dt-hidden .yui-dt-liner,
761 761 th.yui-dt-hidden .yui-dt-resizer { display: none }
762 762 .yui-dt-editor,
763 763 .yui-dt-editor-shim {
764 764 position: absolute;
765 765 z-index: 9000;
766 766 }
767 767 .yui-skin-sam .yui-dt table {
768 768 margin: 0;
769 769 padding: 0;
770 770 font-family: arial;
771 771 font-size: inherit;
772 772 border-collapse: separate;
773 773 *border-collapse: collapse;
774 774 border-spacing: 0;
775 775 border: 1px solid #7f7f7f;
776 776 }
777 777 .yui-skin-sam .yui-dt thead { border-spacing: 0 }
778 778 .yui-skin-sam .yui-dt caption {
779 779 color: #000;
780 780 font-size: 85%;
781 781 font-weight: normal;
782 782 font-style: italic;
783 783 line-height: 1;
784 784 padding: 1em 0;
785 785 text-align: center;
786 786 }
787 787 .yui-skin-sam .yui-dt th { background: #d8d8da url(../images/sprite.png) repeat-x 0 0 }
788 788 .yui-skin-sam .yui-dt th,
789 789 .yui-skin-sam .yui-dt th a {
790 790 font-weight: normal;
791 791 text-decoration: none;
792 792 color: #000;
793 793 vertical-align: bottom;
794 794 }
795 795 .yui-skin-sam .yui-dt th {
796 796 margin: 0;
797 797 padding: 0;
798 798 border: 0;
799 799 border-right: 1px solid #cbcbcb;
800 800 }
801 801 .yui-skin-sam .yui-dt tr.yui-dt-first td { border-top: 1px solid #7f7f7f }
802 802 .yui-skin-sam .yui-dt th .yui-dt-liner { white-space: nowrap }
803 803 .yui-skin-sam .yui-dt-liner {
804 804 margin: 0;
805 805 padding: 0;
806 806 }
807 807 .yui-skin-sam .yui-dt-coltarget {
808 808 width: 5px;
809 809 background-color: red;
810 810 }
811 811 .yui-skin-sam .yui-dt td {
812 812 margin: 0;
813 813 padding: 0;
814 814 border: 0;
815 815 border-right: 1px solid #cbcbcb;
816 816 text-align: left;
817 817 }
818 818 .yui-skin-sam .yui-dt-list td { border-right: 0 }
819 819 .yui-skin-sam .yui-dt-resizer { width: 6px }
820 820 .yui-skin-sam .yui-dt-mask {
821 821 background-color: #000;
822 822 opacity: .25;
823 823 filter: alpha(opacity=25);
824 824 }
825 825 .yui-skin-sam .yui-dt-message { background-color: #FFF }
826 826 .yui-skin-sam .yui-dt-scrollable table { border: 0 }
827 827 .yui-skin-sam .yui-dt-scrollable .yui-dt-hd {
828 828 border-left: 1px solid #7f7f7f;
829 829 border-top: 1px solid #7f7f7f;
830 830 border-right: 1px solid #7f7f7f;
831 831 }
832 832 .yui-skin-sam .yui-dt-scrollable .yui-dt-bd {
833 833 border-left: 1px solid #7f7f7f;
834 834 border-bottom: 1px solid #7f7f7f;
835 835 border-right: 1px solid #7f7f7f;
836 836 background-color: #FFF;
837 837 }
838 838 .yui-skin-sam .yui-dt-scrollable .yui-dt-data tr.yui-dt-last td { border-bottom: 1px solid #7f7f7f }
839 839 .yui-skin-sam th.yui-dt-asc,
840 840 .yui-skin-sam th.yui-dt-desc { background: url(../images/sprite.png) repeat-x 0 -100px }
841 841 .yui-skin-sam th.yui-dt-sortable .yui-dt-label { margin-right: 10px }
842 842 .yui-skin-sam th.yui-dt-asc .yui-dt-liner { background: url(../images/dt-arrow-up.png) no-repeat right }
843 843 .yui-skin-sam th.yui-dt-desc .yui-dt-liner { background: url(../images/dt-arrow-dn.png) no-repeat right }
844 844 tbody .yui-dt-editable { cursor: pointer }
845 845 .yui-dt-editor {
846 846 text-align: left;
847 847 background-color: #f2f2f2;
848 848 border: 1px solid #808080;
849 849 padding: 6px;
850 850 }
851 851 .yui-dt-editor label {
852 852 padding-left: 4px;
853 853 padding-right: 6px;
854 854 }
855 855 .yui-dt-editor .yui-dt-button {
856 856 padding-top: 6px;
857 857 text-align: right;
858 858 }
859 859 .yui-dt-editor .yui-dt-button button {
860 860 background: url(../images/sprite.png) repeat-x 0 0;
861 861 border: 1px solid #999;
862 862 width: 4em;
863 863 height: 1.8em;
864 864 margin-left: 6px;
865 865 }
866 866 .yui-dt-editor .yui-dt-button button.yui-dt-default {
867 867 background: url(../images/sprite.png) repeat-x 0 -1400px;
868 868 background-color: #5584e0;
869 869 border: 1px solid #304369;
870 870 color: #FFF;
871 871 }
872 872 .yui-dt-editor .yui-dt-button button:hover {
873 873 background: url(../images/sprite.png) repeat-x 0 -1300px;
874 874 color: #000;
875 875 }
876 876 .yui-dt-editor .yui-dt-button button:active {
877 877 background: url(../images/sprite.png) repeat-x 0 -1700px;
878 878 color: #000;
879 879 }
880 880 .yui-skin-sam tr.yui-dt-even { background-color: #FFF }
881 881 .yui-skin-sam tr.yui-dt-odd { background-color: #edf5ff }
882 882 .yui-skin-sam tr.yui-dt-even td.yui-dt-asc,
883 883 .yui-skin-sam tr.yui-dt-even td.yui-dt-desc { background-color: #edf5ff }
884 884 .yui-skin-sam tr.yui-dt-odd td.yui-dt-asc,
885 885 .yui-skin-sam tr.yui-dt-odd td.yui-dt-desc { background-color: #dbeaff }
886 886 .yui-skin-sam .yui-dt-list tr.yui-dt-even { background-color: #FFF }
887 887 .yui-skin-sam .yui-dt-list tr.yui-dt-odd { background-color: #FFF }
888 888 .yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-asc,
889 889 .yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-desc { background-color: #edf5ff }
890 890 .yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-asc,
891 891 .yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-desc { background-color: #edf5ff }
892 892 .yui-skin-sam th.yui-dt-highlighted,
893 893 .yui-skin-sam th.yui-dt-highlighted a { background-color: #b2d2ff }
894 894 .yui-skin-sam tr.yui-dt-highlighted,
895 895 .yui-skin-sam tr.yui-dt-highlighted td.yui-dt-asc,
896 896 .yui-skin-sam tr.yui-dt-highlighted td.yui-dt-desc,
897 897 .yui-skin-sam tr.yui-dt-even td.yui-dt-highlighted,
898 898 .yui-skin-sam tr.yui-dt-odd td.yui-dt-highlighted {
899 899 cursor: pointer;
900 900 background-color: #b2d2ff;
901 901 }
902 902 .yui-skin-sam .yui-dt-list th.yui-dt-highlighted,
903 903 .yui-skin-sam .yui-dt-list th.yui-dt-highlighted a { background-color: #b2d2ff }
904 904 .yui-skin-sam .yui-dt-list tr.yui-dt-highlighted,
905 905 .yui-skin-sam .yui-dt-list tr.yui-dt-highlighted td.yui-dt-asc,
906 906 .yui-skin-sam .yui-dt-list tr.yui-dt-highlighted td.yui-dt-desc,
907 907 .yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-highlighted,
908 908 .yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-highlighted {
909 909 cursor: pointer;
910 910 background-color: #b2d2ff;
911 911 }
912 912 .yui-skin-sam th.yui-dt-selected,
913 913 .yui-skin-sam th.yui-dt-selected a { background-color: #446cd7 }
914 914 .yui-skin-sam tr.yui-dt-selected td,
915 915 .yui-skin-sam tr.yui-dt-selected td.yui-dt-asc,
916 916 .yui-skin-sam tr.yui-dt-selected td.yui-dt-desc {
917 917 background-color: #426fd9;
918 918 color: #FFF;
919 919 }
920 920 .yui-skin-sam tr.yui-dt-even td.yui-dt-selected,
921 921 .yui-skin-sam tr.yui-dt-odd td.yui-dt-selected {
922 922 background-color: #446cd7;
923 923 color: #FFF;
924 924 }
925 925 .yui-skin-sam .yui-dt-list th.yui-dt-selected,
926 926 .yui-skin-sam .yui-dt-list th.yui-dt-selected a { background-color: #446cd7 }
927 927 .yui-skin-sam .yui-dt-list tr.yui-dt-selected td,
928 928 .yui-skin-sam .yui-dt-list tr.yui-dt-selected td.yui-dt-asc,
929 929 .yui-skin-sam .yui-dt-list tr.yui-dt-selected td.yui-dt-desc {
930 930 background-color: #426fd9;
931 931 color: #FFF;
932 932 }
933 933 .yui-skin-sam .yui-dt-list tr.yui-dt-even td.yui-dt-selected,
934 934 .yui-skin-sam .yui-dt-list tr.yui-dt-odd td.yui-dt-selected {
935 935 background-color: #446cd7;
936 936 color: #FFF;
937 937 }
938 938 .yui-skin-sam .yui-dt-paginator {
939 939 display: block;
940 940 margin: 6px 0;
941 941 white-space: nowrap;
942 942 }
943 943 .yui-skin-sam .yui-dt-paginator .yui-dt-first,
944 944 .yui-skin-sam .yui-dt-paginator .yui-dt-last,
945 945 .yui-skin-sam .yui-dt-paginator .yui-dt-selected { padding: 2px 6px }
946 946 .yui-skin-sam .yui-dt-paginator a.yui-dt-first,
947 947 .yui-skin-sam .yui-dt-paginator a.yui-dt-last { text-decoration: none }
948 948 .yui-skin-sam .yui-dt-paginator .yui-dt-previous,
949 949 .yui-skin-sam .yui-dt-paginator .yui-dt-next { display: none }
950 950 .yui-skin-sam a.yui-dt-page {
951 951 border: 1px solid #cbcbcb;
952 952 padding: 2px 6px;
953 953 text-decoration: none;
954 954 background-color: #fff;
955 955 }
956 956 .yui-skin-sam .yui-dt-selected {
957 957 border: 1px solid #fff;
958 958 background-color: #fff;
959 959 }
960 960
961 961 #content #left {
962 962 left: 0;
963 963 width: 280px;
964 964 position: absolute;
965 965 }
966 966
967 967 #content #right {
968 968 margin: 0 60px 10px 290px;
969 969 }
970 970
971 971 #content div.box {
972 972 clear: both;
973 973 overflow: hidden;
974 974 background: #fff;
975 975 margin: 0 0 10px;
976 976 padding: 0 0 10px;
977 977 -webkit-border-radius: 4px 4px 4px 4px;
978 978 -khtml-border-radius: 4px 4px 4px 4px;
979 979 -moz-border-radius: 4px 4px 4px 4px;
980 980 border-radius: 4px 4px 4px 4px;
981 981 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
982 982 }
983 983
984 984 #content div.box-left {
985 985 width: 49%;
986 986 clear: none;
987 987 float: left;
988 988 margin: 0 0 10px;
989 989 }
990 990
991 991 #content div.box-right {
992 992 width: 49%;
993 993 clear: none;
994 994 float: right;
995 995 margin: 0 0 10px;
996 996 }
997 997
998 998 #content div.box div.title {
999 999 clear: both;
1000 1000 overflow: hidden;
1001 1001 background-color: #eedc94;
1002 1002 background-repeat: repeat-x;
1003 1003 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
1004 1004 to(#eedc94) );
1005 1005 background-image: -moz-linear-gradient(top, #003b76, #00376e);
1006 1006 background-image: -ms-linear-gradient(top, #003b76, #00376e);
1007 1007 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
1008 1008 color-stop(100%, #00376e) );
1009 1009 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
1010 1010 background-image: -o-linear-gradient(top, #003b76, #00376e) );
1011 1011 background-image: linear-gradient(top, #003b76, #00376e);
1012 1012 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
1013 1013 endColorstr='#00376e', GradientType=0 );
1014 1014 margin: 0 0 20px;
1015 1015 padding: 0;
1016 1016 }
1017 1017
1018 1018 #content div.box div.title h5 {
1019 1019 float: left;
1020 1020 border: none;
1021 1021 color: #fff;
1022 1022 text-transform: uppercase;
1023 1023 margin: 0;
1024 1024 padding: 11px 0 11px 10px;
1025 1025 }
1026 1026
1027 1027 #content div.box div.title .link-white{
1028 1028 color: #FFFFFF;
1029 1029 }
1030 1030
1031 1031 #content div.box div.title ul.links li {
1032 1032 list-style: none;
1033 1033 float: left;
1034 1034 margin: 0;
1035 1035 padding: 0;
1036 1036 }
1037 1037
1038 1038 #content div.box div.title ul.links li a {
1039 1039 border-left: 1px solid #316293;
1040 1040 color: #FFFFFF;
1041 1041 display: block;
1042 1042 float: left;
1043 1043 font-size: 13px;
1044 1044 font-weight: 700;
1045 1045 height: 1%;
1046 1046 margin: 0;
1047 1047 padding: 11px 22px 12px;
1048 1048 text-decoration: none;
1049 1049 }
1050 1050
1051 1051 #content div.box h1,#content div.box h2,#content div.box h3,#content div.box h4,#content div.box h5,#content div.box h6
1052 1052 {
1053 1053 clear: both;
1054 1054 overflow: hidden;
1055 1055 border-bottom: 1px solid #DDD;
1056 1056 margin: 10px 20px;
1057 1057 padding: 0 0 15px;
1058 1058 }
1059 1059
1060 1060 #content div.box p {
1061 1061 color: #5f5f5f;
1062 1062 font-size: 12px;
1063 1063 line-height: 150%;
1064 1064 margin: 0 24px 10px;
1065 1065 padding: 0;
1066 1066 }
1067 1067
1068 1068 #content div.box blockquote {
1069 1069 border-left: 4px solid #DDD;
1070 1070 color: #5f5f5f;
1071 1071 font-size: 11px;
1072 1072 line-height: 150%;
1073 1073 margin: 0 34px;
1074 1074 padding: 0 0 0 14px;
1075 1075 }
1076 1076
1077 1077 #content div.box blockquote p {
1078 1078 margin: 10px 0;
1079 1079 padding: 0;
1080 1080 }
1081 1081
1082 1082 #content div.box dl {
1083 1083 margin: 10px 0px;
1084 1084 }
1085 1085
1086 1086 #content div.box dt {
1087 1087 font-size: 12px;
1088 1088 margin: 0;
1089 1089 }
1090 1090
1091 1091 #content div.box dd {
1092 1092 font-size: 12px;
1093 1093 margin: 0;
1094 1094 padding: 8px 0 8px 15px;
1095 1095 }
1096 1096
1097 1097 #content div.box li {
1098 1098 font-size: 12px;
1099 1099 padding: 4px 0;
1100 1100 }
1101 1101
1102 1102 #content div.box ul.disc,#content div.box ul.circle {
1103 1103 margin: 10px 24px 10px 38px;
1104 1104 }
1105 1105
1106 1106 #content div.box ul.square {
1107 1107 margin: 10px 24px 10px 40px;
1108 1108 }
1109 1109
1110 1110 #content div.box img.left {
1111 1111 border: none;
1112 1112 float: left;
1113 1113 margin: 10px 10px 10px 0;
1114 1114 }
1115 1115
1116 1116 #content div.box img.right {
1117 1117 border: none;
1118 1118 float: right;
1119 1119 margin: 10px 0 10px 10px;
1120 1120 }
1121 1121
1122 1122 #content div.box div.messages {
1123 1123 clear: both;
1124 1124 overflow: hidden;
1125 1125 margin: 0 20px;
1126 1126 padding: 0;
1127 1127 }
1128 1128
1129 1129 #content div.box div.message {
1130 1130 clear: both;
1131 1131 overflow: hidden;
1132 1132 margin: 0;
1133 1133 padding: 10px 0;
1134 1134 }
1135 1135
1136 1136 #content div.box div.message a {
1137 1137 font-weight: 400 !important;
1138 1138 }
1139 1139
1140 1140 #content div.box div.message div.image {
1141 1141 float: left;
1142 1142 margin: 9px 0 0 5px;
1143 1143 padding: 6px;
1144 1144 }
1145 1145
1146 1146 #content div.box div.message div.image img {
1147 1147 vertical-align: middle;
1148 1148 margin: 0;
1149 1149 }
1150 1150
1151 1151 #content div.box div.message div.text {
1152 1152 float: left;
1153 1153 margin: 0;
1154 1154 padding: 9px 6px;
1155 1155 }
1156 1156
1157 1157 #content div.box div.message div.dismiss a {
1158 1158 height: 16px;
1159 1159 width: 16px;
1160 1160 display: block;
1161 1161 background: url("../images/icons/cross.png") no-repeat;
1162 1162 margin: 15px 14px 0 0;
1163 1163 padding: 0;
1164 1164 }
1165 1165
1166 1166 #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
1167 1167 {
1168 1168 border: none;
1169 1169 margin: 0;
1170 1170 padding: 0;
1171 1171 }
1172 1172
1173 1173 #content div.box div.message div.text span {
1174 1174 height: 1%;
1175 1175 display: block;
1176 1176 margin: 0;
1177 1177 padding: 5px 0 0;
1178 1178 }
1179 1179
1180 1180 #content div.box div.message-error {
1181 1181 height: 1%;
1182 1182 clear: both;
1183 1183 overflow: hidden;
1184 1184 background: #FBE3E4;
1185 1185 border: 1px solid #FBC2C4;
1186 1186 color: #860006;
1187 1187 }
1188 1188
1189 1189 #content div.box div.message-error h6 {
1190 1190 color: #860006;
1191 1191 }
1192 1192
1193 1193 #content div.box div.message-warning {
1194 1194 height: 1%;
1195 1195 clear: both;
1196 1196 overflow: hidden;
1197 1197 background: #FFF6BF;
1198 1198 border: 1px solid #FFD324;
1199 1199 color: #5f5200;
1200 1200 }
1201 1201
1202 1202 #content div.box div.message-warning h6 {
1203 1203 color: #5f5200;
1204 1204 }
1205 1205
1206 1206 #content div.box div.message-notice {
1207 1207 height: 1%;
1208 1208 clear: both;
1209 1209 overflow: hidden;
1210 1210 background: #8FBDE0;
1211 1211 border: 1px solid #6BACDE;
1212 1212 color: #003863;
1213 1213 }
1214 1214
1215 1215 #content div.box div.message-notice h6 {
1216 1216 color: #003863;
1217 1217 }
1218 1218
1219 1219 #content div.box div.message-success {
1220 1220 height: 1%;
1221 1221 clear: both;
1222 1222 overflow: hidden;
1223 1223 background: #E6EFC2;
1224 1224 border: 1px solid #C6D880;
1225 1225 color: #4e6100;
1226 1226 }
1227 1227
1228 1228 #content div.box div.message-success h6 {
1229 1229 color: #4e6100;
1230 1230 }
1231 1231
1232 1232 #content div.box div.form div.fields div.field {
1233 1233 height: 1%;
1234 1234 border-bottom: 1px solid #DDD;
1235 1235 clear: both;
1236 1236 margin: 0;
1237 1237 padding: 10px 0;
1238 1238 }
1239 1239
1240 1240 #content div.box div.form div.fields div.field-first {
1241 1241 padding: 0 0 10px;
1242 1242 }
1243 1243
1244 1244 #content div.box div.form div.fields div.field-noborder {
1245 1245 border-bottom: 0 !important;
1246 1246 }
1247 1247
1248 1248 #content div.box div.form div.fields div.field span.error-message {
1249 1249 height: 1%;
1250 1250 display: inline-block;
1251 1251 color: red;
1252 1252 margin: 8px 0 0 4px;
1253 1253 padding: 0;
1254 1254 }
1255 1255
1256 1256 #content div.box div.form div.fields div.field span.success {
1257 1257 height: 1%;
1258 1258 display: block;
1259 1259 color: #316309;
1260 1260 margin: 8px 0 0;
1261 1261 padding: 0;
1262 1262 }
1263 1263
1264 1264 #content div.box div.form div.fields div.field div.label {
1265 1265 left: 70px;
1266 1266 width: 155px;
1267 1267 position: absolute;
1268 1268 margin: 0;
1269 1269 padding: 5px 0 0 0px;
1270 1270 }
1271 1271
1272 1272 #content div.box div.form div.fields div.field div.label-summary {
1273 1273 left: 30px;
1274 1274 width: 155px;
1275 1275 position: absolute;
1276 1276 margin: 0;
1277 1277 padding: 0px 0 0 0px;
1278 1278 }
1279 1279
1280 1280 #content div.box-left div.form div.fields div.field div.label,
1281 1281 #content div.box-right div.form div.fields div.field div.label,
1282 1282 #content div.box-left div.form div.fields div.field div.label,
1283 1283 #content div.box-left div.form div.fields div.field div.label-summary,
1284 1284 #content div.box-right div.form div.fields div.field div.label-summary,
1285 1285 #content div.box-left div.form div.fields div.field div.label-summary
1286 1286 {
1287 1287 clear: both;
1288 1288 overflow: hidden;
1289 1289 left: 0;
1290 1290 width: auto;
1291 1291 position: relative;
1292 1292 margin: 0;
1293 1293 padding: 0 0 8px;
1294 1294 }
1295 1295
1296 1296 #content div.box div.form div.fields div.field div.label-select {
1297 1297 padding: 5px 0 0 5px;
1298 1298 }
1299 1299
1300 1300 #content div.box-left div.form div.fields div.field div.label-select,
1301 1301 #content div.box-right div.form div.fields div.field div.label-select
1302 1302 {
1303 1303 padding: 0 0 8px;
1304 1304 }
1305 1305
1306 1306 #content div.box-left div.form div.fields div.field div.label-textarea,
1307 1307 #content div.box-right div.form div.fields div.field div.label-textarea
1308 1308 {
1309 1309 padding: 0 0 8px !important;
1310 1310 }
1311 1311
1312 1312 #content div.box div.form div.fields div.field div.label label,div.label label
1313 1313 {
1314 1314 color: #393939;
1315 1315 font-weight: 700;
1316 1316 }
1317 1317 #content div.box div.form div.fields div.field div.label label,div.label-summary label
1318 1318 {
1319 1319 color: #393939;
1320 1320 font-weight: 700;
1321 1321 }
1322 1322 #content div.box div.form div.fields div.field div.input {
1323 1323 margin: 0 0 0 200px;
1324 1324 }
1325 1325
1326 1326 #content div.box div.form div.fields div.field div.input.summary {
1327 1327 margin: 0 0 0 110px;
1328 1328 }
1329 1329 #content div.box div.form div.fields div.field div.input.summary-short {
1330 1330 margin: 0 0 0 110px;
1331 1331 }
1332 1332 #content div.box div.form div.fields div.field div.file {
1333 1333 margin: 0 0 0 200px;
1334 1334 }
1335 1335
1336 1336 #content div.box-left div.form div.fields div.field div.input,#content div.box-right div.form div.fields div.field div.input
1337 1337 {
1338 1338 margin: 0 0 0 0px;
1339 1339 }
1340 1340
1341 1341 #content div.box div.form div.fields div.field div.input input {
1342 1342 background: #FFF;
1343 1343 border-top: 1px solid #b3b3b3;
1344 1344 border-left: 1px solid #b3b3b3;
1345 1345 border-right: 1px solid #eaeaea;
1346 1346 border-bottom: 1px solid #eaeaea;
1347 1347 color: #000;
1348 1348 font-size: 11px;
1349 1349 margin: 0;
1350 1350 padding: 7px 7px 6px;
1351 1351 }
1352 1352
1353 1353 #content div.box div.form div.fields div.field div.input input#clone_url,
1354 1354 #content div.box div.form div.fields div.field div.input input#clone_url_id
1355 1355 {
1356 1356 font-size: 16px;
1357 1357 padding: 2px;
1358 1358 }
1359 1359
1360 1360 #content div.box div.form div.fields div.field div.file input {
1361 1361 background: none repeat scroll 0 0 #FFFFFF;
1362 1362 border-color: #B3B3B3 #EAEAEA #EAEAEA #B3B3B3;
1363 1363 border-style: solid;
1364 1364 border-width: 1px;
1365 1365 color: #000000;
1366 1366 font-size: 11px;
1367 1367 margin: 0;
1368 1368 padding: 7px 7px 6px;
1369 1369 }
1370 1370
1371 1371 #content div.box div.form div.fields div.field div.input input.small {
1372 1372 width: 30%;
1373 1373 }
1374 1374
1375 1375 #content div.box div.form div.fields div.field div.input input.medium {
1376 1376 width: 55%;
1377 1377 }
1378 1378
1379 1379 #content div.box div.form div.fields div.field div.input input.large {
1380 1380 width: 85%;
1381 1381 }
1382 1382
1383 1383 #content div.box div.form div.fields div.field div.input input.date {
1384 1384 width: 177px;
1385 1385 }
1386 1386
1387 1387 #content div.box div.form div.fields div.field div.input input.button {
1388 1388 background: #D4D0C8;
1389 1389 border-top: 1px solid #FFF;
1390 1390 border-left: 1px solid #FFF;
1391 1391 border-right: 1px solid #404040;
1392 1392 border-bottom: 1px solid #404040;
1393 1393 color: #000;
1394 1394 margin: 0;
1395 1395 padding: 4px 8px;
1396 1396 }
1397 1397
1398 1398 #content div.box div.form div.fields div.field div.textarea {
1399 1399 border-top: 1px solid #b3b3b3;
1400 1400 border-left: 1px solid #b3b3b3;
1401 1401 border-right: 1px solid #eaeaea;
1402 1402 border-bottom: 1px solid #eaeaea;
1403 1403 margin: 0 0 0 200px;
1404 1404 padding: 10px;
1405 1405 }
1406 1406
1407 1407 #content div.box div.form div.fields div.field div.textarea-editor {
1408 1408 border: 1px solid #ddd;
1409 1409 padding: 0;
1410 1410 }
1411 1411
1412 1412 #content div.box div.form div.fields div.field div.textarea textarea {
1413 1413 width: 100%;
1414 1414 height: 220px;
1415 1415 overflow: hidden;
1416 1416 background: #FFF;
1417 1417 color: #000;
1418 1418 font-size: 11px;
1419 1419 outline: none;
1420 1420 border-width: 0;
1421 1421 margin: 0;
1422 1422 padding: 0;
1423 1423 }
1424 1424
1425 1425 #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
1426 1426 {
1427 1427 width: 100%;
1428 1428 height: 100px;
1429 1429 }
1430 1430
1431 1431 #content div.box div.form div.fields div.field div.textarea table {
1432 1432 width: 100%;
1433 1433 border: none;
1434 1434 margin: 0;
1435 1435 padding: 0;
1436 1436 }
1437 1437
1438 1438 #content div.box div.form div.fields div.field div.textarea table td {
1439 1439 background: #DDD;
1440 1440 border: none;
1441 1441 padding: 0;
1442 1442 }
1443 1443
1444 1444 #content div.box div.form div.fields div.field div.textarea table td table
1445 1445 {
1446 1446 width: auto;
1447 1447 border: none;
1448 1448 margin: 0;
1449 1449 padding: 0;
1450 1450 }
1451 1451
1452 1452 #content div.box div.form div.fields div.field div.textarea table td table td
1453 1453 {
1454 1454 font-size: 11px;
1455 1455 padding: 5px 5px 5px 0;
1456 1456 }
1457 1457
1458 1458 #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
1459 1459 {
1460 1460 background: #f6f6f6;
1461 1461 border-color: #666;
1462 1462 }
1463 1463
1464 1464 div.form div.fields div.field div.button {
1465 1465 margin: 0;
1466 1466 padding: 0 0 0 8px;
1467 1467 }
1468 1468 #content div.box table.noborder {
1469 1469 border: 1px solid transparent;
1470 1470 }
1471 1471
1472 1472 #content div.box table {
1473 1473 width: 100%;
1474 1474 border-collapse: separate;
1475 1475 margin: 0;
1476 1476 padding: 0;
1477 1477 border: 1px solid #eee;
1478 1478 -webkit-border-radius: 4px;
1479 1479 -moz-border-radius: 4px;
1480 1480 border-radius: 4px;
1481 1481 }
1482 1482
1483 1483 #content div.box table th {
1484 1484 background: #eee;
1485 1485 border-bottom: 1px solid #ddd;
1486 1486 padding: 5px 0px 5px 5px;
1487 1487 }
1488 1488
1489 1489 #content div.box table th.left {
1490 1490 text-align: left;
1491 1491 }
1492 1492
1493 1493 #content div.box table th.right {
1494 1494 text-align: right;
1495 1495 }
1496 1496
1497 1497 #content div.box table th.center {
1498 1498 text-align: center;
1499 1499 }
1500 1500
1501 1501 #content div.box table th.selected {
1502 1502 vertical-align: middle;
1503 1503 padding: 0;
1504 1504 }
1505 1505
1506 1506 #content div.box table td {
1507 1507 background: #fff;
1508 1508 border-bottom: 1px solid #cdcdcd;
1509 1509 vertical-align: middle;
1510 1510 padding: 5px;
1511 1511 }
1512 1512
1513 1513 #content div.box table tr.selected td {
1514 1514 background: #FFC;
1515 1515 }
1516 1516
1517 1517 #content div.box table td.selected {
1518 1518 width: 3%;
1519 1519 text-align: center;
1520 1520 vertical-align: middle;
1521 1521 padding: 0;
1522 1522 }
1523 1523
1524 1524 #content div.box table td.action {
1525 1525 width: 45%;
1526 1526 text-align: left;
1527 1527 }
1528 1528
1529 1529 #content div.box table td.date {
1530 1530 width: 33%;
1531 1531 text-align: center;
1532 1532 }
1533 1533
1534 1534 #content div.box div.action {
1535 1535 float: right;
1536 1536 background: #FFF;
1537 1537 text-align: right;
1538 1538 margin: 10px 0 0;
1539 1539 padding: 0;
1540 1540 }
1541 1541
1542 1542 #content div.box div.action select {
1543 1543 font-size: 11px;
1544 1544 margin: 0;
1545 1545 }
1546 1546
1547 1547 #content div.box div.action .ui-selectmenu {
1548 1548 margin: 0;
1549 1549 padding: 0;
1550 1550 }
1551 1551
1552 1552 #content div.box div.pagination {
1553 1553 height: 1%;
1554 1554 clear: both;
1555 1555 overflow: hidden;
1556 1556 margin: 10px 0 0;
1557 1557 padding: 0;
1558 1558 }
1559 1559
1560 1560 #content div.box div.pagination ul.pager {
1561 1561 float: right;
1562 1562 text-align: right;
1563 1563 margin: 0;
1564 1564 padding: 0;
1565 1565 }
1566 1566
1567 1567 #content div.box div.pagination ul.pager li {
1568 1568 height: 1%;
1569 1569 float: left;
1570 1570 list-style: none;
1571 1571 background: #ebebeb url("../images/pager.png") repeat-x;
1572 1572 border-top: 1px solid #dedede;
1573 1573 border-left: 1px solid #cfcfcf;
1574 1574 border-right: 1px solid #c4c4c4;
1575 1575 border-bottom: 1px solid #c4c4c4;
1576 1576 color: #4A4A4A;
1577 1577 font-weight: 700;
1578 1578 margin: 0 0 0 4px;
1579 1579 padding: 0;
1580 1580 }
1581 1581
1582 1582 #content div.box div.pagination ul.pager li.separator {
1583 1583 padding: 6px;
1584 1584 }
1585 1585
1586 1586 #content div.box div.pagination ul.pager li.current {
1587 1587 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1588 1588 border-top: 1px solid #ccc;
1589 1589 border-left: 1px solid #bebebe;
1590 1590 border-right: 1px solid #b1b1b1;
1591 1591 border-bottom: 1px solid #afafaf;
1592 1592 color: #515151;
1593 1593 padding: 6px;
1594 1594 }
1595 1595
1596 1596 #content div.box div.pagination ul.pager li a {
1597 1597 height: 1%;
1598 1598 display: block;
1599 1599 float: left;
1600 1600 color: #515151;
1601 1601 text-decoration: none;
1602 1602 margin: 0;
1603 1603 padding: 6px;
1604 1604 }
1605 1605
1606 1606 #content div.box div.pagination ul.pager li a:hover,#content div.box div.pagination ul.pager li a:active
1607 1607 {
1608 1608 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1609 1609 border-top: 1px solid #ccc;
1610 1610 border-left: 1px solid #bebebe;
1611 1611 border-right: 1px solid #b1b1b1;
1612 1612 border-bottom: 1px solid #afafaf;
1613 1613 margin: -1px;
1614 1614 }
1615 1615
1616 1616 #content div.box div.pagination-wh {
1617 1617 height: 1%;
1618 1618 clear: both;
1619 1619 overflow: hidden;
1620 1620 text-align: right;
1621 1621 margin: 10px 0 0;
1622 1622 padding: 0;
1623 1623 }
1624 1624
1625 1625 #content div.box div.pagination-right {
1626 1626 float: right;
1627 1627 }
1628 1628
1629 1629 #content div.box div.pagination-wh a,#content div.box div.pagination-wh span.pager_dotdot
1630 1630 {
1631 1631 height: 1%;
1632 1632 float: left;
1633 1633 background: #ebebeb url("../images/pager.png") repeat-x;
1634 1634 border-top: 1px solid #dedede;
1635 1635 border-left: 1px solid #cfcfcf;
1636 1636 border-right: 1px solid #c4c4c4;
1637 1637 border-bottom: 1px solid #c4c4c4;
1638 1638 color: #4A4A4A;
1639 1639 font-weight: 700;
1640 1640 margin: 0 0 0 4px;
1641 1641 padding: 6px;
1642 1642 }
1643 1643
1644 1644 #content div.box div.pagination-wh span.pager_curpage {
1645 1645 height: 1%;
1646 1646 float: left;
1647 1647 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1648 1648 border-top: 1px solid #ccc;
1649 1649 border-left: 1px solid #bebebe;
1650 1650 border-right: 1px solid #b1b1b1;
1651 1651 border-bottom: 1px solid #afafaf;
1652 1652 color: #515151;
1653 1653 font-weight: 700;
1654 1654 margin: 0 0 0 4px;
1655 1655 padding: 6px;
1656 1656 }
1657 1657
1658 1658 #content div.box div.pagination-wh a:hover,#content div.box div.pagination-wh a:active
1659 1659 {
1660 1660 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1661 1661 border-top: 1px solid #ccc;
1662 1662 border-left: 1px solid #bebebe;
1663 1663 border-right: 1px solid #b1b1b1;
1664 1664 border-bottom: 1px solid #afafaf;
1665 1665 text-decoration: none;
1666 1666 }
1667 1667
1668 1668 #content div.box div.traffic div.legend {
1669 1669 clear: both;
1670 1670 overflow: hidden;
1671 1671 border-bottom: 1px solid #ddd;
1672 1672 margin: 0 0 10px;
1673 1673 padding: 0 0 10px;
1674 1674 }
1675 1675
1676 1676 #content div.box div.traffic div.legend h6 {
1677 1677 float: left;
1678 1678 border: none;
1679 1679 margin: 0;
1680 1680 padding: 0;
1681 1681 }
1682 1682
1683 1683 #content div.box div.traffic div.legend li {
1684 1684 list-style: none;
1685 1685 float: left;
1686 1686 font-size: 11px;
1687 1687 margin: 0;
1688 1688 padding: 0 8px 0 4px;
1689 1689 }
1690 1690
1691 1691 #content div.box div.traffic div.legend li.visits {
1692 1692 border-left: 12px solid #edc240;
1693 1693 }
1694 1694
1695 1695 #content div.box div.traffic div.legend li.pageviews {
1696 1696 border-left: 12px solid #afd8f8;
1697 1697 }
1698 1698
1699 1699 #content div.box div.traffic table {
1700 1700 width: auto;
1701 1701 }
1702 1702
1703 1703 #content div.box div.traffic table td {
1704 1704 background: transparent;
1705 1705 border: none;
1706 1706 padding: 2px 3px 3px;
1707 1707 }
1708 1708
1709 1709 #content div.box div.traffic table td.legendLabel {
1710 1710 padding: 0 3px 2px;
1711 1711 }
1712 1712
1713 1713 #summary {
1714 1714
1715 1715 }
1716 1716
1717 1717 #summary .desc {
1718 1718 white-space: pre;
1719 1719 width: 100%;
1720 1720 }
1721 1721
1722 1722 #summary .repo_name {
1723 1723 font-size: 1.6em;
1724 1724 font-weight: bold;
1725 1725 vertical-align: baseline;
1726 1726 clear: right
1727 1727 }
1728 1728
1729 1729 #footer {
1730 1730 clear: both;
1731 1731 overflow: hidden;
1732 1732 text-align: right;
1733 1733 margin: 0;
1734 1734 padding: 0 10px 4px;
1735 1735 margin: -10px 0 0;
1736 1736 }
1737 1737
1738 1738 #footer div#footer-inner {
1739 1739 background-color: #eedc94; background-repeat : repeat-x;
1740 1740 background-image : -khtml-gradient( linear, left top, left bottom,
1741 1741 from( #fceec1), to( #eedc94)); background-image : -moz-linear-gradient(
1742 1742 top, #003b76, #00376e); background-image : -ms-linear-gradient( top,
1743 1743 #003b76, #00376e); background-image : -webkit-gradient( linear, left
1744 1744 top, left bottom, color-stop( 0%, #003b76), color-stop( 100%, #00376e));
1745 1745 background-image : -webkit-linear-gradient( top, #003b76, #00376e));
1746 1746 background-image : -o-linear-gradient( top, #003b76, #00376e));
1747 1747 background-image : linear-gradient( top, #003b76, #00376e); filter :
1748 1748 progid : DXImageTransform.Microsoft.gradient ( startColorstr =
1749 1749 '#003b76', endColorstr = '#00376e', GradientType = 0);
1750 1750 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
1751 1751 -webkit-border-radius: 4px 4px 4px 4px;
1752 1752 -khtml-border-radius: 4px 4px 4px 4px;
1753 1753 -moz-border-radius: 4px 4px 4px 4px;
1754 1754 border-radius: 4px 4px 4px 4px;
1755 1755 background-repeat: repeat-x;
1756 1756 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
1757 1757 to(#eedc94) );
1758 1758 background-image: -moz-linear-gradient(top, #003b76, #00376e);
1759 1759 background-image: -ms-linear-gradient(top, #003b76, #00376e);
1760 1760 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
1761 1761 color-stop(100%, #00376e) );
1762 1762 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
1763 1763 background-image: -o-linear-gradient(top, #003b76, #00376e) );
1764 1764 background-image: linear-gradient(top, #003b76, #00376e);
1765 1765 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
1766 1766 endColorstr='#00376e', GradientType=0 );
1767 1767 }
1768 1768
1769 1769 #footer div#footer-inner p {
1770 1770 padding: 15px 25px 15px 0;
1771 1771 color: #FFF;
1772 1772 font-weight: 700;
1773 1773 }
1774 1774
1775 1775 #footer div#footer-inner .footer-link {
1776 1776 float: left;
1777 1777 padding-left: 10px;
1778 1778 }
1779 1779
1780 1780 #footer div#footer-inner .footer-link a,#footer div#footer-inner .footer-link-right a
1781 1781 {
1782 1782 color: #FFF;
1783 1783 }
1784 1784
1785 1785 #login div.title {
1786 1786 width: 420px;
1787 1787 clear: both;
1788 1788 overflow: hidden;
1789 1789 position: relative;
1790 1790 background-color: #eedc94; background-repeat : repeat-x;
1791 1791 background-image : -khtml-gradient( linear, left top, left bottom,
1792 1792 from( #fceec1), to( #eedc94)); background-image : -moz-linear-gradient(
1793 1793 top, #003b76, #00376e); background-image : -ms-linear-gradient( top,
1794 1794 #003b76, #00376e); background-image : -webkit-gradient( linear, left
1795 1795 top, left bottom, color-stop( 0%, #003b76), color-stop( 100%, #00376e));
1796 1796 background-image : -webkit-linear-gradient( top, #003b76, #00376e));
1797 1797 background-image : -o-linear-gradient( top, #003b76, #00376e));
1798 1798 background-image : linear-gradient( top, #003b76, #00376e); filter :
1799 1799 progid : DXImageTransform.Microsoft.gradient ( startColorstr =
1800 1800 '#003b76', endColorstr = '#00376e', GradientType = 0);
1801 1801 margin: 0 auto;
1802 1802 padding: 0;
1803 1803 background-repeat: repeat-x;
1804 1804 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
1805 1805 to(#eedc94) );
1806 1806 background-image: -moz-linear-gradient(top, #003b76, #00376e);
1807 1807 background-image: -ms-linear-gradient(top, #003b76, #00376e);
1808 1808 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
1809 1809 color-stop(100%, #00376e) );
1810 1810 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
1811 1811 background-image: -o-linear-gradient(top, #003b76, #00376e) );
1812 1812 background-image: linear-gradient(top, #003b76, #00376e);
1813 1813 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
1814 1814 endColorstr='#00376e', GradientType=0 );
1815 1815 }
1816 1816
1817 1817 #login div.inner {
1818 1818 width: 380px;
1819 1819 background: #FFF url("../images/login.png") no-repeat top left;
1820 1820 border-top: none;
1821 1821 border-bottom: none;
1822 1822 margin: 0 auto;
1823 1823 padding: 20px;
1824 1824 }
1825 1825
1826 1826 #login div.form div.fields div.field div.label {
1827 1827 width: 173px;
1828 1828 float: left;
1829 1829 text-align: right;
1830 1830 margin: 2px 10px 0 0;
1831 1831 padding: 5px 0 0 5px;
1832 1832 }
1833 1833
1834 1834 #login div.form div.fields div.field div.input input {
1835 1835 width: 176px;
1836 1836 background: #FFF;
1837 1837 border-top: 1px solid #b3b3b3;
1838 1838 border-left: 1px solid #b3b3b3;
1839 1839 border-right: 1px solid #eaeaea;
1840 1840 border-bottom: 1px solid #eaeaea;
1841 1841 color: #000;
1842 1842 font-size: 11px;
1843 1843 margin: 0;
1844 1844 padding: 7px 7px 6px;
1845 1845 }
1846 1846
1847 1847 #login div.form div.fields div.buttons {
1848 1848 clear: both;
1849 1849 overflow: hidden;
1850 1850 border-top: 1px solid #DDD;
1851 1851 text-align: right;
1852 1852 margin: 0;
1853 1853 padding: 10px 0 0;
1854 1854 }
1855 1855
1856 1856 #login div.form div.links {
1857 1857 clear: both;
1858 1858 overflow: hidden;
1859 1859 margin: 10px 0 0;
1860 1860 padding: 0 0 2px;
1861 1861 }
1862 1862
1863 1863 #quick_login {
1864 1864 top: 31px;
1865 1865 background-color: rgb(0, 51, 103);
1866 1866 z-index: 999;
1867 1867 height: 150px;
1868 1868 position: absolute;
1869 1869 margin-left: -16px;
1870 1870 width: 281px;
1871 1871 -webkit-border-radius: 0px 0px 4px 4px;
1872 1872 -khtml-border-radius: 0px 0px 4px 4px;
1873 1873 -moz-border-radius: 0px 0px 4px 4px;
1874 1874 border-radius: 0px 0px 4px 4px;
1875 1875 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
1876 1876 }
1877 1877
1878 1878 #quick_login .password_forgoten {
1879 1879 padding-right: 10px;
1880 1880 padding-top: 0px;
1881 1881 float: left;
1882 1882 }
1883 1883
1884 1884 #quick_login .password_forgoten a {
1885 1885 font-size: 10px
1886 1886 }
1887 1887
1888 1888 #quick_login .register {
1889 1889 padding-right: 10px;
1890 1890 padding-top: 5px;
1891 1891 float: left;
1892 1892 }
1893 1893
1894 1894 #quick_login .register a {
1895 1895 font-size: 10px
1896 1896 }
1897 1897
1898 1898 #quick_login div.form div.fields {
1899 1899 padding-top: 2px;
1900 1900 padding-left: 10px;
1901 1901 }
1902 1902
1903 1903 #quick_login div.form div.fields div.field {
1904 1904 padding: 5px;
1905 1905 }
1906 1906
1907 1907 #quick_login div.form div.fields div.field div.label label {
1908 1908 color: #fff;
1909 1909 padding-bottom: 3px;
1910 1910 }
1911 1911
1912 1912 #quick_login div.form div.fields div.field div.input input {
1913 1913 width: 236px;
1914 1914 background: #FFF;
1915 1915 border-top: 1px solid #b3b3b3;
1916 1916 border-left: 1px solid #b3b3b3;
1917 1917 border-right: 1px solid #eaeaea;
1918 1918 border-bottom: 1px solid #eaeaea;
1919 1919 color: #000;
1920 1920 font-size: 11px;
1921 1921 margin: 0;
1922 1922 padding: 5px 7px 4px;
1923 1923 }
1924 1924
1925 1925 #quick_login div.form div.fields div.buttons {
1926 1926 clear: both;
1927 1927 overflow: hidden;
1928 1928 text-align: right;
1929 1929 margin: 0;
1930 1930 padding: 10px 14px 0px 5px;
1931 1931 }
1932 1932
1933 1933 #quick_login div.form div.links {
1934 1934 clear: both;
1935 1935 overflow: hidden;
1936 1936 margin: 10px 0 0;
1937 1937 padding: 0 0 2px;
1938 1938 }
1939 1939
1940 1940 #register div.title {
1941 1941 clear: both;
1942 1942 overflow: hidden;
1943 1943 position: relative;
1944 1944 background-color: #eedc94;
1945 1945 background-repeat: repeat-x;
1946 1946 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
1947 1947 to(#eedc94) );
1948 1948 background-image: -moz-linear-gradient(top, #003b76, #00376e);
1949 1949 background-image: -ms-linear-gradient(top, #003b76, #00376e);
1950 1950 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
1951 1951 color-stop(100%, #00376e) );
1952 1952 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
1953 1953 background-image: -o-linear-gradient(top, #003b76, #00376e) );
1954 1954 background-image: linear-gradient(top, #003b76, #00376e);
1955 1955 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
1956 1956 endColorstr='#00376e', GradientType=0 );
1957 1957 margin: 0 auto;
1958 1958 padding: 0;
1959 1959 }
1960 1960
1961 1961 #register div.inner {
1962 1962 background: #FFF;
1963 1963 border-top: none;
1964 1964 border-bottom: none;
1965 1965 margin: 0 auto;
1966 1966 padding: 20px;
1967 1967 }
1968 1968
1969 1969 #register div.form div.fields div.field div.label {
1970 1970 width: 135px;
1971 1971 float: left;
1972 1972 text-align: right;
1973 1973 margin: 2px 10px 0 0;
1974 1974 padding: 5px 0 0 5px;
1975 1975 }
1976 1976
1977 1977 #register div.form div.fields div.field div.input input {
1978 1978 width: 300px;
1979 1979 background: #FFF;
1980 1980 border-top: 1px solid #b3b3b3;
1981 1981 border-left: 1px solid #b3b3b3;
1982 1982 border-right: 1px solid #eaeaea;
1983 1983 border-bottom: 1px solid #eaeaea;
1984 1984 color: #000;
1985 1985 font-size: 11px;
1986 1986 margin: 0;
1987 1987 padding: 7px 7px 6px;
1988 1988 }
1989 1989
1990 1990 #register div.form div.fields div.buttons {
1991 1991 clear: both;
1992 1992 overflow: hidden;
1993 1993 border-top: 1px solid #DDD;
1994 1994 text-align: left;
1995 1995 margin: 0;
1996 1996 padding: 10px 0 0 150px;
1997 1997 }
1998 1998
1999 1999 #register div.form div.activation_msg {
2000 2000 padding-top: 4px;
2001 2001 padding-bottom: 4px;
2002 2002 }
2003 2003
2004 2004 #journal .journal_day {
2005 2005 font-size: 20px;
2006 2006 padding: 10px 0px;
2007 2007 border-bottom: 2px solid #DDD;
2008 2008 margin-left: 10px;
2009 2009 margin-right: 10px;
2010 2010 }
2011 2011
2012 2012 #journal .journal_container {
2013 2013 padding: 5px;
2014 2014 clear: both;
2015 2015 margin: 0px 5px 0px 10px;
2016 2016 }
2017 2017
2018 2018 #journal .journal_action_container {
2019 2019 padding-left: 38px;
2020 2020 }
2021 2021
2022 2022 #journal .journal_user {
2023 2023 color: #747474;
2024 2024 font-size: 14px;
2025 2025 font-weight: bold;
2026 2026 height: 30px;
2027 2027 }
2028 2028
2029 2029 #journal .journal_icon {
2030 2030 clear: both;
2031 2031 float: left;
2032 2032 padding-right: 4px;
2033 2033 padding-top: 3px;
2034 2034 }
2035 2035
2036 2036 #journal .journal_action {
2037 2037 padding-top: 4px;
2038 2038 min-height: 2px;
2039 2039 float: left
2040 2040 }
2041 2041
2042 2042 #journal .journal_action_params {
2043 2043 clear: left;
2044 2044 padding-left: 22px;
2045 2045 }
2046 2046
2047 2047 #journal .journal_repo {
2048 2048 float: left;
2049 2049 margin-left: 6px;
2050 2050 padding-top: 3px;
2051 2051 }
2052 2052
2053 2053 #journal .date {
2054 2054 clear: both;
2055 2055 color: #777777;
2056 2056 font-size: 11px;
2057 2057 padding-left: 22px;
2058 2058 }
2059 2059
2060 2060 #journal .journal_repo .journal_repo_name {
2061 2061 font-weight: bold;
2062 2062 font-size: 1.1em;
2063 2063 }
2064 2064
2065 2065 #journal .compare_view {
2066 2066 padding: 5px 0px 5px 0px;
2067 2067 width: 95px;
2068 2068 }
2069 2069
2070 2070 .journal_highlight {
2071 2071 font-weight: bold;
2072 2072 padding: 0 2px;
2073 2073 vertical-align: bottom;
2074 2074 }
2075 2075
2076 2076 .trending_language_tbl,.trending_language_tbl td {
2077 2077 border: 0 !important;
2078 2078 margin: 0 !important;
2079 2079 padding: 0 !important;
2080 2080 }
2081 2081
2082 2082 .trending_language_tbl,.trending_language_tbl tr {
2083 2083 border-spacing: 1px;
2084 2084 }
2085 2085
2086 2086 .trending_language {
2087 2087 background-color: #003367;
2088 2088 color: #FFF;
2089 2089 display: block;
2090 2090 min-width: 20px;
2091 2091 text-decoration: none;
2092 2092 height: 12px;
2093 2093 margin-bottom: 0px;
2094 2094 margin-left: 5px;
2095 2095 white-space: pre;
2096 2096 padding: 3px;
2097 2097 }
2098 2098
2099 2099 h3.files_location {
2100 2100 font-size: 1.8em;
2101 2101 font-weight: 700;
2102 2102 border-bottom: none !important;
2103 2103 margin: 10px 0 !important;
2104 2104 }
2105 2105
2106 2106 #files_data dl dt {
2107 2107 float: left;
2108 2108 width: 60px;
2109 2109 margin: 0 !important;
2110 2110 padding: 5px;
2111 2111 }
2112 2112
2113 2113 #files_data dl dd {
2114 2114 margin: 0 !important;
2115 2115 padding: 5px !important;
2116 2116 }
2117 2117
2118 2118 .tablerow1 {
2119 2119 background-color: #F8F8F8;
2120 2120 }
2121 2121
2122 2122 .changeset_id {
2123 2123 font-family: monospace;
2124 2124 color: #666666;
2125 2125 }
2126 2126
2127 2127 .changeset_hash {
2128 2128 color: #000000;
2129 2129 }
2130 2130
2131 2131 #changeset_content {
2132 2132 border: 1px solid #CCC;
2133 2133 padding: 5px;
2134 2134 }
2135 2135
2136 2136 #changeset_compare_view_content {
2137 2137 border: 1px solid #CCC;
2138 2138 padding: 5px;
2139 2139 }
2140 2140
2141 2141 #changeset_content .container {
2142 2142 min-height: 120px;
2143 2143 font-size: 1.2em;
2144 2144 overflow: hidden;
2145 2145 }
2146 2146
2147 2147 #changeset_compare_view_content .compare_view_commits {
2148 2148 width: auto !important;
2149 2149 }
2150 2150
2151 2151 #changeset_compare_view_content .compare_view_commits td {
2152 2152 padding: 0px 0px 0px 12px !important;
2153 2153 }
2154 2154
2155 2155 #changeset_content .container .right {
2156 2156 float: right;
2157 2157 width: 20%;
2158 2158 text-align: right;
2159 2159 }
2160 2160
2161 2161 #changeset_content .container .left .message {
2162 2162 white-space: pre-wrap;
2163 2163 }
2164 2164 #changeset_content .container .left .message a:hover {
2165 2165 text-decoration: none;
2166 2166 }
2167 2167 .cs_files .cur_cs {
2168 2168 margin: 10px 2px;
2169 2169 font-weight: bold;
2170 2170 }
2171 2171
2172 2172 .cs_files .node {
2173 2173 float: left;
2174 2174 }
2175 2175
2176 2176 .cs_files .changes {
2177 2177 float: right;
2178 2178 color:#003367;
2179 2179
2180 2180 }
2181 2181
2182 2182 .cs_files .changes .added {
2183 2183 background-color: #BBFFBB;
2184 2184 float: left;
2185 2185 text-align: center;
2186 2186 font-size: 9px;
2187 2187 padding: 2px 0px 2px 0px;
2188 2188 }
2189 2189
2190 2190 .cs_files .changes .deleted {
2191 2191 background-color: #FF8888;
2192 2192 float: left;
2193 2193 text-align: center;
2194 2194 font-size: 9px;
2195 2195 padding: 2px 0px 2px 0px;
2196 2196 }
2197 2197
2198 2198 .cs_files .cs_added {
2199 2199 background: url("../images/icons/page_white_add.png") no-repeat scroll
2200 2200 3px;
2201 2201 height: 16px;
2202 2202 padding-left: 20px;
2203 2203 margin-top: 7px;
2204 2204 text-align: left;
2205 2205 }
2206 2206
2207 2207 .cs_files .cs_changed {
2208 2208 background: url("../images/icons/page_white_edit.png") no-repeat scroll
2209 2209 3px;
2210 2210 height: 16px;
2211 2211 padding-left: 20px;
2212 2212 margin-top: 7px;
2213 2213 text-align: left;
2214 2214 }
2215 2215
2216 2216 .cs_files .cs_removed {
2217 2217 background: url("../images/icons/page_white_delete.png") no-repeat
2218 2218 scroll 3px;
2219 2219 height: 16px;
2220 2220 padding-left: 20px;
2221 2221 margin-top: 7px;
2222 2222 text-align: left;
2223 2223 }
2224 2224
2225 2225 #graph {
2226 2226 overflow: hidden;
2227 2227 }
2228 2228
2229 2229 #graph_nodes {
2230 2230 float: left;
2231 2231 margin-right: -6px;
2232 2232 margin-top: 0px;
2233 2233 }
2234 2234
2235 2235 #graph_content {
2236 2236 width: 80%;
2237 2237 float: left;
2238 2238 }
2239 2239
2240 2240 #graph_content .container_header {
2241 2241 border-bottom: 1px solid #DDD;
2242 2242 padding: 10px;
2243 2243 height: 25px;
2244 2244 }
2245 2245
2246 2246 #graph_content #rev_range_container {
2247 2247 padding: 5px 20px;
2248 2248 float: left;
2249 2249 }
2250 2250
2251 2251 #graph_content .container {
2252 2252 border-bottom: 1px solid #DDD;
2253 2253 height: 55px;
2254 2254 overflow: hidden;
2255 2255 }
2256 2256
2257 2257 #graph_content .container .right {
2258 2258 float: right;
2259 2259 width: 23%;
2260 2260 text-align: right;
2261 2261 }
2262 2262
2263 2263 #graph_content .container .left {
2264 2264 float: left;
2265 2265 width: 25%;
2266 2266 padding-left: 5px;
2267 2267 }
2268 2268
2269 2269 #graph_content .container .mid {
2270 2270 float: left;
2271 2271 width: 49%;
2272 2272 }
2273 2273
2274 2274
2275 2275 #graph_content .container .left .date {
2276 2276 color: #444444;
2277 2277 }
2278 2278
2279 2279 #graph_content .container .left .author {
2280 2280 height: 22px;
2281 2281 }
2282 2282
2283 2283 #graph_content .container .left .author .user {
2284 2284 color: #444444;
2285 2285 float: left;
2286 2286 margin-left: -4px;
2287 2287 margin-top: 4px;
2288 2288 }
2289 2289
2290 2290 #graph_content .container .left .message {
2291 2291 font-size: 100%;
2292 2292 padding-top: 3px;
2293 2293 white-space: pre-wrap;
2294 2294 border: 1px solid red;
2295 2295 position: relative;
2296 2296 top: -30px;
2297 2297 left: 40%;
2298 2298 width: 30%;
2299 2299 }
2300 2300
2301 2301 #graph_content .container .left .message a:hover{
2302 2302 text-decoration: none;
2303 2303 }
2304 2304
2305 2305 .right div {
2306 2306 clear: both;
2307 2307 }
2308 2308
2309 2309 .right .changes .changed_total {
2310 border: 0px solid #DDD;
2311 2310 display: block;
2312 2311 float: right;
2313 2312 text-align: center;
2314 2313 min-width: 45px;
2315 2314 cursor: pointer;
2316 background: #FD8;
2317 font-weight: bold;
2315 color: #444444;
2316 background: #FEA;
2318 2317 -webkit-border-radius: 0px 0px 0px 6px;
2319 2318 -moz-border-radius: 0px 0px 0px 6px;
2320 2319 border-radius: 0px 0px 0px 6px;
2321 padding: 2px;
2320 padding: 1px;
2322 2321 }
2323 2322
2324 2323 .right .changes .added,.changed,.removed {
2325 border: 1px solid #DDD;
2326 2324 display: block;
2325 padding: 1px;
2326 color: #444444;
2327 2327 float: right;
2328 2328 text-align: center;
2329 2329 min-width: 15px;
2330 cursor: help;
2331 }
2332
2333 .right .changes .large {
2334 border: 1px solid #DDD;
2335 display: block;
2336 float: right;
2337 text-align: center;
2338 min-width: 45px;
2339 cursor: help;
2340 background: #54A9F7;
2341 2330 }
2342 2331
2343 2332 .right .changes .added {
2344 background: #BFB;
2333 background: #CFC;
2345 2334 }
2346 2335
2347 2336 .right .changes .changed {
2348 background: #FD8;
2337 background: #FEA;
2349 2338 }
2350 2339
2351 2340 .right .changes .removed {
2352 background: #F88;
2341 background: #FAA;
2353 2342 }
2354 2343
2355 2344 .right .merge {
2356 2345 vertical-align: top;
2357 2346 font-size: 0.75em;
2358 2347 font-weight: 700;
2359 2348 }
2360 2349
2361 2350 .right .parent {
2362 2351 color: #666666;
2363 2352 }
2364 2353 .right .logtags{
2365 2354 padding: 2px 2px 2px 2px;
2366 2355 }
2367 2356 .right .logtags .branchtag,.logtags .branchtag {
2368 2357 padding: 1px 3px 2px;
2369 2358 background-color: #bfbfbf;
2370 2359 font-size: 9.75px;
2371 2360 font-weight: bold;
2372 2361 color: #ffffff;
2373 2362 text-transform: uppercase;
2374 2363 white-space: nowrap;
2375 2364 -webkit-border-radius: 3px;
2376 2365 -moz-border-radius: 3px;
2377 2366 border-radius: 3px;
2378 2367 padding-left:4px;
2379 2368 }
2380 2369 .right .logtags .branchtag a:hover,.logtags .branchtag a{
2381 2370 color: #ffffff;
2382 2371 }
2383 2372 .right .logtags .branchtag a:hover,.logtags .branchtag a:hover{
2384 2373 text-decoration: none;
2385 2374 color: #ffffff;
2386 2375 }
2387 2376 .right .logtags .tagtag,.logtags .tagtag {
2388 2377 padding: 1px 3px 2px;
2389 2378 background-color: #62cffc;
2390 2379 font-size: 9.75px;
2391 2380 font-weight: bold;
2392 2381 color: #ffffff;
2393 2382 text-transform: uppercase;
2394 2383 white-space: nowrap;
2395 2384 -webkit-border-radius: 3px;
2396 2385 -moz-border-radius: 3px;
2397 2386 border-radius: 3px;
2398 2387 }
2399 2388 .right .logtags .tagtag a:hover,.logtags .tagtag a{
2400 2389 color: #ffffff;
2401 2390 }
2402 2391 .right .logtags .tagtag a:hover,.logtags .tagtag a:hover{
2403 2392 text-decoration: none;
2404 2393 color: #ffffff;
2405 2394 }
2406 2395 .right .logbooks .bookbook,.logbooks .bookbook {
2407 2396 padding: 1px 3px 2px;
2408 2397 background-color: #46A546;
2409 2398 font-size: 9.75px;
2410 2399 font-weight: bold;
2411 2400 color: #ffffff;
2412 2401 text-transform: uppercase;
2413 2402 white-space: nowrap;
2414 2403 -webkit-border-radius: 3px;
2415 2404 -moz-border-radius: 3px;
2416 2405 border-radius: 3px;
2417 2406 }
2418 2407 .right .logbooks .bookbook,.logbooks .bookbook a{
2419 2408 color: #ffffff;
2420 2409 }
2421 2410 .right .logbooks .bookbook,.logbooks .bookbook a:hover{
2422 2411 text-decoration: none;
2423 2412 color: #ffffff;
2424 2413 }
2425 2414 div.browserblock {
2426 2415 overflow: hidden;
2427 2416 border: 1px solid #ccc;
2428 2417 background: #f8f8f8;
2429 2418 font-size: 100%;
2430 2419 line-height: 125%;
2431 2420 padding: 0;
2432 2421 -webkit-border-radius: 6px 6px 0px 0px;
2433 2422 -moz-border-radius: 6px 6px 0px 0px;
2434 2423 border-radius: 6px 6px 0px 0px;
2435 2424 }
2436 2425
2437 2426 div.browserblock .browser-header {
2438 2427 background: #FFF;
2439 2428 padding: 10px 0px 15px 0px;
2440 2429 width: 100%;
2441 2430 }
2442 2431
2443 2432 div.browserblock .browser-nav {
2444 2433 float: left
2445 2434 }
2446 2435
2447 2436 div.browserblock .browser-branch {
2448 2437 float: left;
2449 2438 }
2450 2439
2451 2440 div.browserblock .browser-branch label {
2452 2441 color: #4A4A4A;
2453 2442 vertical-align: text-top;
2454 2443 }
2455 2444
2456 2445 div.browserblock .browser-header span {
2457 2446 margin-left: 5px;
2458 2447 font-weight: 700;
2459 2448 }
2460 2449
2461 2450 div.browserblock .browser-search {
2462 2451 clear: both;
2463 2452 padding: 8px 8px 0px 5px;
2464 2453 height: 20px;
2465 2454 }
2466 2455
2467 2456 div.browserblock #node_filter_box {
2468 2457
2469 2458 }
2470 2459
2471 2460 div.browserblock .search_activate {
2472 2461 float: left
2473 2462 }
2474 2463
2475 2464 div.browserblock .add_node {
2476 2465 float: left;
2477 2466 padding-left: 5px;
2478 2467 }
2479 2468
2480 2469 div.browserblock .search_activate a:hover,div.browserblock .add_node a:hover
2481 2470 {
2482 2471 text-decoration: none !important;
2483 2472 }
2484 2473
2485 2474 div.browserblock .browser-body {
2486 2475 background: #EEE;
2487 2476 border-top: 1px solid #CCC;
2488 2477 }
2489 2478
2490 2479 table.code-browser {
2491 2480 border-collapse: collapse;
2492 2481 width: 100%;
2493 2482 }
2494 2483
2495 2484 table.code-browser tr {
2496 2485 margin: 3px;
2497 2486 }
2498 2487
2499 2488 table.code-browser thead th {
2500 2489 background-color: #EEE;
2501 2490 height: 20px;
2502 2491 font-size: 1.1em;
2503 2492 font-weight: 700;
2504 2493 text-align: left;
2505 2494 padding-left: 10px;
2506 2495 }
2507 2496
2508 2497 table.code-browser tbody td {
2509 2498 padding-left: 10px;
2510 2499 height: 20px;
2511 2500 }
2512 2501
2513 2502 table.code-browser .browser-file {
2514 2503 background: url("../images/icons/document_16.png") no-repeat scroll 3px;
2515 2504 height: 16px;
2516 2505 padding-left: 20px;
2517 2506 text-align: left;
2518 2507 }
2519 2508 .diffblock .changeset_header {
2520 2509 height: 16px;
2521 2510 }
2522 2511 .diffblock .changeset_file {
2523 2512 background: url("../images/icons/file.png") no-repeat scroll 3px;
2524 2513 text-align: left;
2525 2514 float: left;
2526 2515 padding: 2px 0px 2px 22px;
2527 2516 }
2528 2517 .diffblock .diff-menu-wrapper{
2529 2518 float: left;
2530 2519 }
2531 2520
2532 2521 .diffblock .diff-menu{
2533 2522 position: absolute;
2534 2523 background: none repeat scroll 0 0 #FFFFFF;
2535 2524 border-color: #003367 #666666 #666666;
2536 2525 border-right: 1px solid #666666;
2537 2526 border-style: solid solid solid;
2538 2527 border-width: 1px;
2539 2528 box-shadow: 2px 8px 4px rgba(0, 0, 0, 0.2);
2540 2529 margin-top:5px;
2541 2530 margin-left:1px;
2542 2531
2543 2532 }
2544 2533
2545 2534 .diffblock .diff-menu ul li {
2546 2535 padding: 0px 0px 0px 0px !important;
2547 2536 }
2548 2537 .diffblock .diff-menu ul li a{
2549 2538 display: block;
2550 2539 padding: 3px 8px 3px 8px !important;
2551 2540 }
2552 2541 .diffblock .diff-menu ul li a:hover{
2553 2542 text-decoration: none;
2554 2543 background-color: #EEEEEE;
2555 2544 }
2556 2545 table.code-browser .browser-dir {
2557 2546 background: url("../images/icons/folder_16.png") no-repeat scroll 3px;
2558 2547 height: 16px;
2559 2548 padding-left: 20px;
2560 2549 text-align: left;
2561 2550 }
2562 2551
2563 2552 .box .search {
2564 2553 clear: both;
2565 2554 overflow: hidden;
2566 2555 margin: 0;
2567 2556 padding: 0 20px 10px;
2568 2557 }
2569 2558
2570 2559 .box .search div.search_path {
2571 2560 background: none repeat scroll 0 0 #EEE;
2572 2561 border: 1px solid #CCC;
2573 2562 color: blue;
2574 2563 margin-bottom: 10px;
2575 2564 padding: 10px 0;
2576 2565 }
2577 2566
2578 2567 .box .search div.search_path div.link {
2579 2568 font-weight: 700;
2580 2569 margin-left: 25px;
2581 2570 }
2582 2571
2583 2572 .box .search div.search_path div.link a {
2584 2573 color: #003367;
2585 2574 cursor: pointer;
2586 2575 text-decoration: none;
2587 2576 }
2588 2577
2589 2578 #path_unlock {
2590 2579 color: red;
2591 2580 font-size: 1.2em;
2592 2581 padding-left: 4px;
2593 2582 }
2594 2583
2595 2584 .info_box span {
2596 2585 margin-left: 3px;
2597 2586 margin-right: 3px;
2598 2587 }
2599 2588
2600 2589 .info_box .rev {
2601 2590 color: #003367;
2602 2591 font-size: 1.6em;
2603 2592 font-weight: bold;
2604 2593 vertical-align: sub;
2605 2594 }
2606 2595
2607 2596 .info_box input#at_rev,.info_box input#size {
2608 2597 background: #FFF;
2609 2598 border-top: 1px solid #b3b3b3;
2610 2599 border-left: 1px solid #b3b3b3;
2611 2600 border-right: 1px solid #eaeaea;
2612 2601 border-bottom: 1px solid #eaeaea;
2613 2602 color: #000;
2614 2603 font-size: 12px;
2615 2604 margin: 0;
2616 2605 padding: 1px 5px 1px;
2617 2606 }
2618 2607
2619 2608 .info_box input#view {
2620 2609 text-align: center;
2621 2610 padding: 4px 3px 2px 2px;
2622 2611 }
2623 2612
2624 2613 .yui-overlay,.yui-panel-container {
2625 2614 visibility: hidden;
2626 2615 position: absolute;
2627 2616 z-index: 2;
2628 2617 }
2629 2618
2630 2619 .yui-tt {
2631 2620 visibility: hidden;
2632 2621 position: absolute;
2633 2622 color: #666;
2634 2623 background-color: #FFF;
2635 2624 border: 2px solid #003367;
2636 2625 font: 100% sans-serif;
2637 2626 width: auto;
2638 2627 opacity: 1px;
2639 2628 padding: 8px;
2640 2629 white-space: pre-wrap;
2641 2630 -webkit-border-radius: 8px 8px 8px 8px;
2642 2631 -khtml-border-radius: 8px 8px 8px 8px;
2643 2632 -moz-border-radius: 8px 8px 8px 8px;
2644 2633 border-radius: 8px 8px 8px 8px;
2645 2634 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
2646 2635 }
2647 2636
2648 2637 .ac {
2649 2638 vertical-align: top;
2650 2639 }
2651 2640
2652 2641 .ac .yui-ac {
2653 2642 position: relative;
2654 2643 font-size: 100%;
2655 2644 }
2656 2645
2657 2646 .ac .perm_ac {
2658 2647 width: 15em;
2659 2648 }
2660 2649
2661 2650 .ac .yui-ac-input {
2662 2651 width: 100%;
2663 2652 }
2664 2653
2665 2654 .ac .yui-ac-container {
2666 2655 position: absolute;
2667 2656 top: 1.6em;
2668 2657 width: 100%;
2669 2658 }
2670 2659
2671 2660 .ac .yui-ac-content {
2672 2661 position: absolute;
2673 2662 width: 100%;
2674 2663 border: 1px solid gray;
2675 2664 background: #fff;
2676 2665 overflow: hidden;
2677 2666 z-index: 9050;
2678 2667 }
2679 2668
2680 2669 .ac .yui-ac-shadow {
2681 2670 position: absolute;
2682 2671 width: 100%;
2683 2672 background: #000;
2684 2673 -moz-opacity: 0.1px;
2685 2674 opacity: .10;
2686 2675 filter: alpha(opacity = 10);
2687 2676 z-index: 9049;
2688 2677 margin: .3em;
2689 2678 }
2690 2679
2691 2680 .ac .yui-ac-content ul {
2692 2681 width: 100%;
2693 2682 margin: 0;
2694 2683 padding: 0;
2695 2684 }
2696 2685
2697 2686 .ac .yui-ac-content li {
2698 2687 cursor: default;
2699 2688 white-space: nowrap;
2700 2689 margin: 0;
2701 2690 padding: 2px 5px;
2702 2691 }
2703 2692
2704 2693 .ac .yui-ac-content li.yui-ac-prehighlight {
2705 2694 background: #B3D4FF;
2706 2695 }
2707 2696
2708 2697 .ac .yui-ac-content li.yui-ac-highlight {
2709 2698 background: #556CB5;
2710 2699 color: #FFF;
2711 2700 }
2712 2701
2713 2702 .follow {
2714 2703 background: url("../images/icons/heart_add.png") no-repeat scroll 3px;
2715 2704 height: 16px;
2716 2705 width: 20px;
2717 2706 cursor: pointer;
2718 2707 display: block;
2719 2708 float: right;
2720 2709 margin-top: 2px;
2721 2710 }
2722 2711
2723 2712 .following {
2724 2713 background: url("../images/icons/heart_delete.png") no-repeat scroll 3px;
2725 2714 height: 16px;
2726 2715 width: 20px;
2727 2716 cursor: pointer;
2728 2717 display: block;
2729 2718 float: right;
2730 2719 margin-top: 2px;
2731 2720 }
2732 2721
2733 2722 .currently_following {
2734 2723 padding-left: 10px;
2735 2724 padding-bottom: 5px;
2736 2725 }
2737 2726
2738 2727 .add_icon {
2739 2728 background: url("../images/icons/add.png") no-repeat scroll 3px;
2740 2729 padding-left: 20px;
2741 2730 padding-top: 0px;
2742 2731 text-align: left;
2743 2732 }
2744 2733
2745 2734 .edit_icon {
2746 2735 background: url("../images/icons/folder_edit.png") no-repeat scroll 3px;
2747 2736 padding-left: 20px;
2748 2737 padding-top: 0px;
2749 2738 text-align: left;
2750 2739 }
2751 2740
2752 2741 .delete_icon {
2753 2742 background: url("../images/icons/delete.png") no-repeat scroll 3px;
2754 2743 padding-left: 20px;
2755 2744 padding-top: 0px;
2756 2745 text-align: left;
2757 2746 }
2758 2747
2759 2748 .refresh_icon {
2760 2749 background: url("../images/icons/arrow_refresh.png") no-repeat scroll
2761 2750 3px;
2762 2751 padding-left: 20px;
2763 2752 padding-top: 0px;
2764 2753 text-align: left;
2765 2754 }
2766 2755
2767 2756 .pull_icon {
2768 2757 background: url("../images/icons/connect.png") no-repeat scroll 3px;
2769 2758 padding-left: 20px;
2770 2759 padding-top: 0px;
2771 2760 text-align: left;
2772 2761 }
2773 2762
2774 2763 .rss_icon {
2775 2764 background: url("../images/icons/rss_16.png") no-repeat scroll 3px;
2776 2765 padding-left: 20px;
2777 2766 padding-top: 4px;
2778 2767 text-align: left;
2779 2768 font-size: 8px
2780 2769 }
2781 2770
2782 2771 .atom_icon {
2783 2772 background: url("../images/icons/atom.png") no-repeat scroll 3px;
2784 2773 padding-left: 20px;
2785 2774 padding-top: 4px;
2786 2775 text-align: left;
2787 2776 font-size: 8px
2788 2777 }
2789 2778
2790 2779 .archive_icon {
2791 2780 background: url("../images/icons/compress.png") no-repeat scroll 3px;
2792 2781 padding-left: 20px;
2793 2782 text-align: left;
2794 2783 padding-top: 1px;
2795 2784 }
2796 2785
2797 2786 .start_following_icon {
2798 2787 background: url("../images/icons/heart_add.png") no-repeat scroll 3px;
2799 2788 padding-left: 20px;
2800 2789 text-align: left;
2801 2790 padding-top: 0px;
2802 2791 }
2803 2792
2804 2793 .stop_following_icon {
2805 2794 background: url("../images/icons/heart_delete.png") no-repeat scroll 3px;
2806 2795 padding-left: 20px;
2807 2796 text-align: left;
2808 2797 padding-top: 0px;
2809 2798 }
2810 2799
2811 2800 .action_button {
2812 2801 border: 0;
2813 2802 display: inline;
2814 2803 }
2815 2804
2816 2805 .action_button:hover {
2817 2806 border: 0;
2818 2807 text-decoration: underline;
2819 2808 cursor: pointer;
2820 2809 }
2821 2810
2822 2811 #switch_repos {
2823 2812 position: absolute;
2824 2813 height: 25px;
2825 2814 z-index: 1;
2826 2815 }
2827 2816
2828 2817 #switch_repos select {
2829 2818 min-width: 150px;
2830 2819 max-height: 250px;
2831 2820 z-index: 1;
2832 2821 }
2833 2822
2834 2823 .breadcrumbs {
2835 2824 border: medium none;
2836 2825 color: #FFF;
2837 2826 float: left;
2838 2827 text-transform: uppercase;
2839 2828 font-weight: 700;
2840 2829 font-size: 14px;
2841 2830 margin: 0;
2842 2831 padding: 11px 0 11px 10px;
2843 2832 }
2844 2833
2845 2834 .breadcrumbs a {
2846 2835 color: #FFF;
2847 2836 }
2848 2837
2849 2838 .flash_msg {
2850 2839
2851 2840 }
2852 2841
2853 2842 .flash_msg ul {
2854 2843
2855 2844 }
2856 2845
2857 2846 .error_msg {
2858 2847 background-color: #c43c35;
2859 2848 background-repeat: repeat-x;
2860 2849 background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b),
2861 2850 to(#c43c35) );
2862 2851 background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
2863 2852 background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
2864 2853 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b),
2865 2854 color-stop(100%, #c43c35) );
2866 2855 background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
2867 2856 background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
2868 2857 background-image: linear-gradient(top, #ee5f5b, #c43c35);
2869 2858 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b',
2870 2859 endColorstr='#c43c35', GradientType=0 );
2871 2860 border-color: #c43c35 #c43c35 #882a25;
2872 2861 }
2873 2862
2874 2863 .warning_msg {
2875 2864 color: #404040 !important;
2876 2865 background-color: #eedc94;
2877 2866 background-repeat: repeat-x;
2878 2867 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
2879 2868 to(#eedc94) );
2880 2869 background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
2881 2870 background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
2882 2871 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1),
2883 2872 color-stop(100%, #eedc94) );
2884 2873 background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
2885 2874 background-image: -o-linear-gradient(top, #fceec1, #eedc94);
2886 2875 background-image: linear-gradient(top, #fceec1, #eedc94);
2887 2876 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1',
2888 2877 endColorstr='#eedc94', GradientType=0 );
2889 2878 border-color: #eedc94 #eedc94 #e4c652;
2890 2879 }
2891 2880
2892 2881 .success_msg {
2893 2882 background-color: #57a957;
2894 2883 background-repeat: repeat-x !important;
2895 2884 background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462),
2896 2885 to(#57a957) );
2897 2886 background-image: -moz-linear-gradient(top, #62c462, #57a957);
2898 2887 background-image: -ms-linear-gradient(top, #62c462, #57a957);
2899 2888 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462),
2900 2889 color-stop(100%, #57a957) );
2901 2890 background-image: -webkit-linear-gradient(top, #62c462, #57a957);
2902 2891 background-image: -o-linear-gradient(top, #62c462, #57a957);
2903 2892 background-image: linear-gradient(top, #62c462, #57a957);
2904 2893 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462',
2905 2894 endColorstr='#57a957', GradientType=0 );
2906 2895 border-color: #57a957 #57a957 #3d773d;
2907 2896 }
2908 2897
2909 2898 .notice_msg {
2910 2899 background-color: #339bb9;
2911 2900 background-repeat: repeat-x;
2912 2901 background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de),
2913 2902 to(#339bb9) );
2914 2903 background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
2915 2904 background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
2916 2905 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de),
2917 2906 color-stop(100%, #339bb9) );
2918 2907 background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
2919 2908 background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
2920 2909 background-image: linear-gradient(top, #5bc0de, #339bb9);
2921 2910 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de',
2922 2911 endColorstr='#339bb9', GradientType=0 );
2923 2912 border-color: #339bb9 #339bb9 #22697d;
2924 2913 }
2925 2914
2926 2915 .success_msg,.error_msg,.notice_msg,.warning_msg {
2927 2916 font-size: 12px;
2928 2917 font-weight: 700;
2929 2918 min-height: 14px;
2930 2919 line-height: 14px;
2931 2920 margin-bottom: 10px;
2932 2921 margin-top: 0;
2933 2922 display: block;
2934 2923 overflow: auto;
2935 2924 padding: 6px 10px 6px 10px;
2936 2925 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2937 2926 position: relative;
2938 2927 color: #FFF;
2939 2928 border-width: 1px;
2940 2929 border-style: solid;
2941 2930 -webkit-border-radius: 4px;
2942 2931 -moz-border-radius: 4px;
2943 2932 border-radius: 4px;
2944 2933 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2945 2934 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2946 2935 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2947 2936 }
2948 2937
2949 2938 #msg_close {
2950 2939 background: transparent url("../icons/cross_grey_small.png") no-repeat
2951 2940 scroll 0 0;
2952 2941 cursor: pointer;
2953 2942 height: 16px;
2954 2943 position: absolute;
2955 2944 right: 5px;
2956 2945 top: 5px;
2957 2946 width: 16px;
2958 2947 }
2959 2948
2960 2949 div#legend_container table,div#legend_choices table {
2961 2950 width: auto !important;
2962 2951 }
2963 2952
2964 2953 table#permissions_manage {
2965 2954 width: 0 !important;
2966 2955 }
2967 2956
2968 2957 table#permissions_manage span.private_repo_msg {
2969 2958 font-size: 0.8em;
2970 2959 opacity: 0.6px;
2971 2960 }
2972 2961
2973 2962 table#permissions_manage td.private_repo_msg {
2974 2963 font-size: 0.8em;
2975 2964 }
2976 2965
2977 2966 table#permissions_manage tr#add_perm_input td {
2978 2967 vertical-align: middle;
2979 2968 }
2980 2969
2981 2970 div.gravatar {
2982 2971 background-color: #FFF;
2983 2972 float: left;
2984 2973 margin-right: 0.7em;
2985 2974 padding: 1px 1px 1px 1px;
2986 2975 line-height:0;
2987 2976 -webkit-border-radius: 3px;
2988 2977 -khtml-border-radius: 3px;
2989 2978 -moz-border-radius: 3px;
2990 2979 border-radius: 3px;
2991 2980 }
2992 2981
2993 2982 div.gravatar img {
2994 2983 -webkit-border-radius: 2px;
2995 2984 -khtml-border-radius: 2px;
2996 2985 -moz-border-radius: 2px;
2997 2986 border-radius: 2px;
2998 2987 }
2999 2988
3000 2989 #header,#content,#footer {
3001 2990 min-width: 978px;
3002 2991 }
3003 2992
3004 2993 #content {
3005 2994 clear: both;
3006 2995 overflow: hidden;
3007 2996 padding: 14px 10px;
3008 2997 }
3009 2998
3010 2999 #content div.box div.title div.search {
3011 3000
3012 3001 border-left: 1px solid #316293;
3013 3002 }
3014 3003
3015 3004 #content div.box div.title div.search div.input input {
3016 3005 border: 1px solid #316293;
3017 3006 }
3018 3007
3019 3008 .ui-btn{
3020 3009 color: #515151;
3021 3010 background-color: #DADADA;
3022 3011 background-repeat: repeat-x;
3023 3012 background-image: -khtml-gradient(linear, left top, left bottom, from(#F4F4F4),to(#DADADA) );
3024 3013 background-image: -moz-linear-gradient(top, #F4F4F4, #DADADA);
3025 3014 background-image: -ms-linear-gradient(top, #F4F4F4, #DADADA);
3026 3015 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F4F4F4),color-stop(100%, #DADADA) );
3027 3016 background-image: -webkit-linear-gradient(top, #F4F4F4, #DADADA) );
3028 3017 background-image: -o-linear-gradient(top, #F4F4F4, #DADADA) );
3029 3018 background-image: linear-gradient(top, #F4F4F4, #DADADA);
3030 3019 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F4F4F4', endColorstr='#DADADA', GradientType=0);
3031 3020
3032 3021 border-top: 1px solid #DDD;
3033 3022 border-left: 1px solid #c6c6c6;
3034 3023 border-right: 1px solid #DDD;
3035 3024 border-bottom: 1px solid #c6c6c6;
3036 3025 color: #515151;
3037 3026 outline: none;
3038 3027 margin: 0px 3px 3px 0px;
3039 3028 -webkit-border-radius: 4px 4px 4px 4px !important;
3040 3029 -khtml-border-radius: 4px 4px 4px 4px !important;
3041 3030 -moz-border-radius: 4px 4px 4px 4px !important;
3042 3031 border-radius: 4px 4px 4px 4px !important;
3043 3032 cursor: pointer !important;
3044 3033 padding: 3px 3px 3px 3px;
3045 3034 background-position: 0 -15px;
3046 3035
3047 3036 }
3048 3037 .ui-btn.xsmall{
3049 3038 padding: 1px 2px 1px 1px;
3050 3039 }
3051 3040 .ui-btn.clone{
3052 3041 padding: 5px 2px 6px 1px;
3053 3042 margin: 0px -4px 3px 0px;
3054 3043 -webkit-border-radius: 4px 0px 0px 4px !important;
3055 3044 -khtml-border-radius: 4px 0px 0px 4px !important;
3056 3045 -moz-border-radius: 4px 0px 0px 4px !important;
3057 3046 border-radius: 4px 0px 0px 4px !important;
3058 3047 width: 100px;
3059 3048 text-align: center;
3060 3049 float: left;
3061 3050 position: absolute;
3062 3051 }
3063 3052 .ui-btn:focus {
3064 3053 outline: none;
3065 3054 }
3066 3055 .ui-btn:hover{
3067 3056 background-position: 0 0px;
3068 3057 text-decoration: none;
3069 3058 color: #515151;
3070 3059 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 0 3px #FFFFFF !important;
3071 3060 }
3072 3061
3073 3062 .ui-btn.red{
3074 3063 color:#fff;
3075 3064 background-color: #c43c35;
3076 3065 background-repeat: repeat-x;
3077 3066 background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
3078 3067 background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
3079 3068 background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
3080 3069 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
3081 3070 background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
3082 3071 background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
3083 3072 background-image: linear-gradient(top, #ee5f5b, #c43c35);
3084 3073 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
3085 3074 border-color: #c43c35 #c43c35 #882a25;
3086 3075 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3087 3076 }
3088 3077
3089 3078
3090 3079 .ui-btn.blue{
3091 3080 background-color: #339bb9;
3092 3081 background-repeat: repeat-x;
3093 3082 background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
3094 3083 background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
3095 3084 background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
3096 3085 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
3097 3086 background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
3098 3087 background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
3099 3088 background-image: linear-gradient(top, #5bc0de, #339bb9);
3100 3089 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
3101 3090 border-color: #339bb9 #339bb9 #22697d;
3102 3091 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3103 3092 }
3104 3093
3105 3094 .ui-btn.green{
3106 3095 background-color: #57a957;
3107 3096 background-repeat: repeat-x;
3108 3097 background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
3109 3098 background-image: -moz-linear-gradient(top, #62c462, #57a957);
3110 3099 background-image: -ms-linear-gradient(top, #62c462, #57a957);
3111 3100 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
3112 3101 background-image: -webkit-linear-gradient(top, #62c462, #57a957);
3113 3102 background-image: -o-linear-gradient(top, #62c462, #57a957);
3114 3103 background-image: linear-gradient(top, #62c462, #57a957);
3115 3104 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
3116 3105 border-color: #57a957 #57a957 #3d773d;
3117 3106 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3118 3107 }
3119 3108
3120 3109 ins,div.options a:hover {
3121 3110 text-decoration: none;
3122 3111 }
3123 3112
3124 3113 img,
3125 3114 #header #header-inner #quick li a:hover span.normal,
3126 3115 #header #header-inner #quick li ul li.last,
3127 3116 #content div.box div.form div.fields div.field div.textarea table td table td a,
3128 3117 #clone_url,
3129 3118 #clone_url_id
3130 3119 {
3131 3120 border: none;
3132 3121 }
3133 3122
3134 3123 img.icon,.right .merge img {
3135 3124 vertical-align: bottom;
3136 3125 }
3137 3126
3138 3127 #header ul#logged-user,#content div.box div.title ul.links,
3139 3128 #content div.box div.message div.dismiss,
3140 3129 #content div.box div.traffic div.legend ul
3141 3130 {
3142 3131 float: right;
3143 3132 margin: 0;
3144 3133 padding: 0;
3145 3134 }
3146 3135
3147 3136 #header #header-inner #home,#header #header-inner #logo,
3148 3137 #content div.box ul.left,#content div.box ol.left,
3149 3138 #content div.box div.pagination-left,div#commit_history,
3150 3139 div#legend_data,div#legend_container,div#legend_choices
3151 3140 {
3152 3141 float: left;
3153 3142 }
3154 3143
3155 3144 #header #header-inner #quick li:hover ul ul,
3156 3145 #header #header-inner #quick li:hover ul ul ul,
3157 3146 #header #header-inner #quick li:hover ul ul ul ul,
3158 3147 #content #left #menu ul.closed,#content #left #menu li ul.collapsed,.yui-tt-shadow
3159 3148 {
3160 3149 display: none;
3161 3150 }
3162 3151
3163 3152 #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
3164 3153 {
3165 3154 display: block;
3166 3155 }
3167 3156
3168 3157 #content div.graph {
3169 3158 padding: 0 10px 10px;
3170 3159 }
3171 3160
3172 3161 #content div.box div.title ul.links li a:hover,#content div.box div.title ul.links li.ui-tabs-selected a
3173 3162 {
3174 3163 color: #bfe3ff;
3175 3164 }
3176 3165
3177 3166 #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
3178 3167 {
3179 3168 margin: 10px 24px 10px 44px;
3180 3169 }
3181 3170
3182 3171 #content div.box div.form,#content div.box div.table,#content div.box div.traffic
3183 3172 {
3184 3173 clear: both;
3185 3174 overflow: hidden;
3186 3175 margin: 0;
3187 3176 padding: 0 20px 10px;
3188 3177 }
3189 3178
3190 3179 #content div.box div.form div.fields,#login div.form,#login div.form div.fields,#register div.form,#register div.form div.fields
3191 3180 {
3192 3181 clear: both;
3193 3182 overflow: hidden;
3194 3183 margin: 0;
3195 3184 padding: 0;
3196 3185 }
3197 3186
3198 3187 #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
3199 3188 {
3200 3189 height: 1%;
3201 3190 display: block;
3202 3191 color: #363636;
3203 3192 margin: 0;
3204 3193 padding: 2px 0 0;
3205 3194 }
3206 3195
3207 3196 #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
3208 3197 {
3209 3198 background: #FBE3E4;
3210 3199 border-top: 1px solid #e1b2b3;
3211 3200 border-left: 1px solid #e1b2b3;
3212 3201 border-right: 1px solid #FBC2C4;
3213 3202 border-bottom: 1px solid #FBC2C4;
3214 3203 }
3215 3204
3216 3205 #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
3217 3206 {
3218 3207 background: #E6EFC2;
3219 3208 border-top: 1px solid #cebb98;
3220 3209 border-left: 1px solid #cebb98;
3221 3210 border-right: 1px solid #c6d880;
3222 3211 border-bottom: 1px solid #c6d880;
3223 3212 }
3224 3213
3225 3214 #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
3226 3215 {
3227 3216 margin: 0;
3228 3217 }
3229 3218
3230 3219 #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
3231 3220 {
3232 3221 margin: 0 0 0 0px !important;
3233 3222 padding: 0;
3234 3223 }
3235 3224
3236 3225 #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
3237 3226 {
3238 3227 margin: 0 0 0 200px;
3239 3228 padding: 0;
3240 3229 }
3241 3230
3242 3231 #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
3243 3232 {
3244 3233 color: #000;
3245 3234 text-decoration: none;
3246 3235 }
3247 3236
3248 3237 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus,#content div.box div.action a.ui-selectmenu-focus
3249 3238 {
3250 3239 border: 1px solid #666;
3251 3240 }
3252 3241
3253 3242 #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
3254 3243 {
3255 3244 clear: both;
3256 3245 overflow: hidden;
3257 3246 margin: 0;
3258 3247 padding: 8px 0 2px;
3259 3248 }
3260 3249
3261 3250 #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
3262 3251 {
3263 3252 float: left;
3264 3253 margin: 0;
3265 3254 }
3266 3255
3267 3256 #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
3268 3257 {
3269 3258 height: 1%;
3270 3259 display: block;
3271 3260 float: left;
3272 3261 margin: 2px 0 0 4px;
3273 3262 }
3274 3263
3275 3264 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
3276 3265 {
3277 3266 color: #000;
3278 3267 font-size: 11px;
3279 3268 font-weight: 700;
3280 3269 margin: 0;
3281 3270 }
3282 3271
3283 3272 input.ui-button {
3284 3273 background: #e5e3e3 url("../images/button.png") repeat-x;
3285 3274 border-top: 1px solid #DDD;
3286 3275 border-left: 1px solid #c6c6c6;
3287 3276 border-right: 1px solid #DDD;
3288 3277 border-bottom: 1px solid #c6c6c6;
3289 3278 color: #515151 !important;
3290 3279 outline: none;
3291 3280 margin: 0;
3292 3281 padding: 6px 12px;
3293 3282 -webkit-border-radius: 4px 4px 4px 4px;
3294 3283 -khtml-border-radius: 4px 4px 4px 4px;
3295 3284 -moz-border-radius: 4px 4px 4px 4px;
3296 3285 border-radius: 4px 4px 4px 4px;
3297 3286 box-shadow: 0 1px 0 #ececec;
3298 3287 cursor: pointer;
3299 3288 }
3300 3289
3301 3290 input.ui-button:hover {
3302 3291 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
3303 3292 border-top: 1px solid #ccc;
3304 3293 border-left: 1px solid #bebebe;
3305 3294 border-right: 1px solid #b1b1b1;
3306 3295 border-bottom: 1px solid #afafaf;
3307 3296 }
3308 3297
3309 3298 div.form div.fields div.field div.highlight,#content div.box div.form div.fields div.buttons div.highlight
3310 3299 {
3311 3300 display: inline;
3312 3301 }
3313 3302
3314 3303 #content div.box div.form div.fields div.buttons,div.form div.fields div.buttons
3315 3304 {
3316 3305 margin: 10px 0 0 200px;
3317 3306 padding: 0;
3318 3307 }
3319 3308
3320 3309 #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
3321 3310 {
3322 3311 margin: 10px 0 0;
3323 3312 }
3324 3313
3325 3314 #content div.box table td.user,#content div.box table td.address {
3326 3315 width: 10%;
3327 3316 text-align: center;
3328 3317 }
3329 3318
3330 3319 #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
3331 3320 {
3332 3321 text-align: right;
3333 3322 margin: 6px 0 0;
3334 3323 padding: 0;
3335 3324 }
3336 3325
3337 3326 #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
3338 3327 {
3339 3328 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
3340 3329 border-top: 1px solid #ccc;
3341 3330 border-left: 1px solid #bebebe;
3342 3331 border-right: 1px solid #b1b1b1;
3343 3332 border-bottom: 1px solid #afafaf;
3344 3333 color: #515151;
3345 3334 margin: 0;
3346 3335 padding: 6px 12px;
3347 3336 }
3348 3337
3349 3338 #content div.box div.pagination div.results,#content div.box div.pagination-wh div.results
3350 3339 {
3351 3340 text-align: left;
3352 3341 float: left;
3353 3342 margin: 0;
3354 3343 padding: 0;
3355 3344 }
3356 3345
3357 3346 #content div.box div.pagination div.results span,#content div.box div.pagination-wh div.results span
3358 3347 {
3359 3348 height: 1%;
3360 3349 display: block;
3361 3350 float: left;
3362 3351 background: #ebebeb url("../images/pager.png") repeat-x;
3363 3352 border-top: 1px solid #dedede;
3364 3353 border-left: 1px solid #cfcfcf;
3365 3354 border-right: 1px solid #c4c4c4;
3366 3355 border-bottom: 1px solid #c4c4c4;
3367 3356 color: #4A4A4A;
3368 3357 font-weight: 700;
3369 3358 margin: 0;
3370 3359 padding: 6px 8px;
3371 3360 }
3372 3361
3373 3362 #content div.box div.pagination ul.pager li.disabled,#content div.box div.pagination-wh a.disabled
3374 3363 {
3375 3364 color: #B4B4B4;
3376 3365 padding: 6px;
3377 3366 }
3378 3367
3379 3368 #login,#register {
3380 3369 width: 520px;
3381 3370 margin: 10% auto 0;
3382 3371 padding: 0;
3383 3372 }
3384 3373
3385 3374 #login div.color,#register div.color {
3386 3375 clear: both;
3387 3376 overflow: hidden;
3388 3377 background: #FFF;
3389 3378 margin: 10px auto 0;
3390 3379 padding: 3px 3px 3px 0;
3391 3380 }
3392 3381
3393 3382 #login div.color a,#register div.color a {
3394 3383 width: 20px;
3395 3384 height: 20px;
3396 3385 display: block;
3397 3386 float: left;
3398 3387 margin: 0 0 0 3px;
3399 3388 padding: 0;
3400 3389 }
3401 3390
3402 3391 #login div.title h5,#register div.title h5 {
3403 3392 color: #fff;
3404 3393 margin: 10px;
3405 3394 padding: 0;
3406 3395 }
3407 3396
3408 3397 #login div.form div.fields div.field,#register div.form div.fields div.field
3409 3398 {
3410 3399 clear: both;
3411 3400 overflow: hidden;
3412 3401 margin: 0;
3413 3402 padding: 0 0 10px;
3414 3403 }
3415 3404
3416 3405 #login div.form div.fields div.field span.error-message,#register div.form div.fields div.field span.error-message
3417 3406 {
3418 3407 height: 1%;
3419 3408 display: block;
3420 3409 color: red;
3421 3410 margin: 8px 0 0;
3422 3411 padding: 0;
3423 3412 max-width: 320px;
3424 3413 }
3425 3414
3426 3415 #login div.form div.fields div.field div.label label,#register div.form div.fields div.field div.label label
3427 3416 {
3428 3417 color: #000;
3429 3418 font-weight: 700;
3430 3419 }
3431 3420
3432 3421 #login div.form div.fields div.field div.input,#register div.form div.fields div.field div.input
3433 3422 {
3434 3423 float: left;
3435 3424 margin: 0;
3436 3425 padding: 0;
3437 3426 }
3438 3427
3439 3428 #login div.form div.fields div.field div.checkbox,#register div.form div.fields div.field div.checkbox
3440 3429 {
3441 3430 margin: 0 0 0 184px;
3442 3431 padding: 0;
3443 3432 }
3444 3433
3445 3434 #login div.form div.fields div.field div.checkbox label,#register div.form div.fields div.field div.checkbox label
3446 3435 {
3447 3436 color: #565656;
3448 3437 font-weight: 700;
3449 3438 }
3450 3439
3451 3440 #login div.form div.fields div.buttons input,#register div.form div.fields div.buttons input
3452 3441 {
3453 3442 color: #000;
3454 3443 font-size: 1em;
3455 3444 font-weight: 700;
3456 3445 margin: 0;
3457 3446 }
3458 3447
3459 3448 #changeset_content .container .wrapper,#graph_content .container .wrapper
3460 3449 {
3461 3450 width: 600px;
3462 3451 }
3463 3452
3464 3453 #changeset_content .container .left {
3465 3454 float: left;
3466 3455 width: 75%;
3467 3456 padding-left: 5px;
3468 3457 }
3469 3458
3470 3459 #changeset_content .container .left .date,.ac .match {
3471 3460 font-weight: 700;
3472 3461 padding-top: 5px;
3473 3462 padding-bottom: 5px;
3474 3463 }
3475 3464
3476 3465 div#legend_container table td,div#legend_choices table td {
3477 3466 border: none !important;
3478 3467 height: 20px !important;
3479 3468 padding: 0 !important;
3480 3469 }
3481 3470
3482 3471 .q_filter_box {
3483 3472 -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset;
3484 3473 -webkit-border-radius: 4px;
3485 3474 -moz-border-radius: 4px;
3486 3475 border-radius: 4px;
3487 3476 border: 0 none;
3488 3477 color: #AAAAAA;
3489 3478 margin-bottom: -4px;
3490 3479 margin-top: -4px;
3491 3480 padding-left: 3px;
3492 3481 }
3493 3482
3494 3483 #node_filter {
3495 3484 border: 0px solid #545454;
3496 3485 color: #AAAAAA;
3497 3486 padding-left: 3px;
3498 3487 }
3499 3488
3500 3489 /*README STYLE*/
3501 3490
3502 3491 div.readme {
3503 3492 padding:0px;
3504 3493 }
3505 3494
3506 3495 div.readme h2 {
3507 3496 font-weight: normal;
3508 3497 }
3509 3498
3510 3499 div.readme .readme_box {
3511 3500 background-color: #fafafa;
3512 3501 }
3513 3502
3514 3503 div.readme .readme_box {
3515 3504 clear:both;
3516 3505 overflow:hidden;
3517 3506 margin:0;
3518 3507 padding:0 20px 10px;
3519 3508 }
3520 3509
3521 3510 div.readme .readme_box h1, div.readme .readme_box h2, div.readme .readme_box h3, div.readme .readme_box h4, div.readme .readme_box h5, div.readme .readme_box h6 {
3522 3511 border-bottom: 0 !important;
3523 3512 margin: 0 !important;
3524 3513 padding: 0 !important;
3525 3514 line-height: 1.5em !important;
3526 3515 }
3527 3516
3528 3517
3529 3518 div.readme .readme_box h1:first-child {
3530 3519 padding-top: .25em !important;
3531 3520 }
3532 3521
3533 3522 div.readme .readme_box h2, div.readme .readme_box h3 {
3534 3523 margin: 1em 0 !important;
3535 3524 }
3536 3525
3537 3526 div.readme .readme_box h2 {
3538 3527 margin-top: 1.5em !important;
3539 3528 border-top: 4px solid #e0e0e0 !important;
3540 3529 padding-top: .5em !important;
3541 3530 }
3542 3531
3543 3532 div.readme .readme_box p {
3544 3533 color: black !important;
3545 3534 margin: 1em 0 !important;
3546 3535 line-height: 1.5em !important;
3547 3536 }
3548 3537
3549 3538 div.readme .readme_box ul {
3550 3539 list-style: disc !important;
3551 3540 margin: 1em 0 1em 2em !important;
3552 3541 }
3553 3542
3554 3543 div.readme .readme_box ol {
3555 3544 list-style: decimal;
3556 3545 margin: 1em 0 1em 2em !important;
3557 3546 }
3558 3547
3559 3548 div.readme .readme_box pre, code {
3560 3549 font: 12px "Bitstream Vera Sans Mono","Courier",monospace;
3561 3550 }
3562 3551
3563 3552 div.readme .readme_box code {
3564 3553 font-size: 12px !important;
3565 3554 background-color: ghostWhite !important;
3566 3555 color: #444 !important;
3567 3556 padding: 0 .2em !important;
3568 3557 border: 1px solid #dedede !important;
3569 3558 }
3570 3559
3571 3560 div.readme .readme_box pre code {
3572 3561 padding: 0 !important;
3573 3562 font-size: 12px !important;
3574 3563 background-color: #eee !important;
3575 3564 border: none !important;
3576 3565 }
3577 3566
3578 3567 div.readme .readme_box pre {
3579 3568 margin: 1em 0;
3580 3569 font-size: 12px;
3581 3570 background-color: #eee;
3582 3571 border: 1px solid #ddd;
3583 3572 padding: 5px;
3584 3573 color: #444;
3585 3574 overflow: auto;
3586 3575 -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset;
3587 3576 -webkit-border-radius: 3px;
3588 3577 -moz-border-radius: 3px;
3589 3578 border-radius: 3px;
3590 3579 }
3591 3580
3592 3581
3593 3582 /** RST STYLE **/
3594 3583
3595 3584
3596 3585 div.rst-block {
3597 3586 padding:0px;
3598 3587 }
3599 3588
3600 3589 div.rst-block h2 {
3601 3590 font-weight: normal;
3602 3591 }
3603 3592
3604 3593 div.rst-block {
3605 3594 background-color: #fafafa;
3606 3595 }
3607 3596
3608 3597 div.rst-block {
3609 3598 clear:both;
3610 3599 overflow:hidden;
3611 3600 margin:0;
3612 3601 padding:0 20px 10px;
3613 3602 }
3614 3603
3615 3604 div.rst-block h1, div.rst-block h2, div.rst-block h3, div.rst-block h4, div.rst-block h5, div.rst-block h6 {
3616 3605 border-bottom: 0 !important;
3617 3606 margin: 0 !important;
3618 3607 padding: 0 !important;
3619 3608 line-height: 1.5em !important;
3620 3609 }
3621 3610
3622 3611
3623 3612 div.rst-block h1:first-child {
3624 3613 padding-top: .25em !important;
3625 3614 }
3626 3615
3627 3616 div.rst-block h2, div.rst-block h3 {
3628 3617 margin: 1em 0 !important;
3629 3618 }
3630 3619
3631 3620 div.rst-block h2 {
3632 3621 margin-top: 1.5em !important;
3633 3622 border-top: 4px solid #e0e0e0 !important;
3634 3623 padding-top: .5em !important;
3635 3624 }
3636 3625
3637 3626 div.rst-block p {
3638 3627 color: black !important;
3639 3628 margin: 1em 0 !important;
3640 3629 line-height: 1.5em !important;
3641 3630 }
3642 3631
3643 3632 div.rst-block ul {
3644 3633 list-style: disc !important;
3645 3634 margin: 1em 0 1em 2em !important;
3646 3635 }
3647 3636
3648 3637 div.rst-block ol {
3649 3638 list-style: decimal;
3650 3639 margin: 1em 0 1em 2em !important;
3651 3640 }
3652 3641
3653 3642 div.rst-block pre, code {
3654 3643 font: 12px "Bitstream Vera Sans Mono","Courier",monospace;
3655 3644 }
3656 3645
3657 3646 div.rst-block code {
3658 3647 font-size: 12px !important;
3659 3648 background-color: ghostWhite !important;
3660 3649 color: #444 !important;
3661 3650 padding: 0 .2em !important;
3662 3651 border: 1px solid #dedede !important;
3663 3652 }
3664 3653
3665 3654 div.rst-block pre code {
3666 3655 padding: 0 !important;
3667 3656 font-size: 12px !important;
3668 3657 background-color: #eee !important;
3669 3658 border: none !important;
3670 3659 }
3671 3660
3672 3661 div.rst-block pre {
3673 3662 margin: 1em 0;
3674 3663 font-size: 12px;
3675 3664 background-color: #eee;
3676 3665 border: 1px solid #ddd;
3677 3666 padding: 5px;
3678 3667 color: #444;
3679 3668 overflow: auto;
3680 3669 -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset;
3681 3670 -webkit-border-radius: 3px;
3682 3671 -moz-border-radius: 3px;
3683 3672 border-radius: 3px;
3684 3673 }
3685 3674
3686 3675
3687 3676 /** comment main **/
3688 3677 .comments {
3689 3678 padding:10px 20px;
3690 3679 }
3691 3680
3692 3681 .comments .comment {
3693 3682 border: 1px solid #ddd;
3694 3683 margin-top: 10px;
3695 3684 -webkit-border-radius: 4px;
3696 3685 -moz-border-radius: 4px;
3697 3686 border-radius: 4px;
3698 3687 }
3699 3688
3700 3689 .comments .comment .meta {
3701 3690 background: #f8f8f8;
3702 3691 padding: 6px;
3703 3692 border-bottom: 1px solid #ddd;
3704 3693 }
3705 3694
3706 3695 .comments .comment .meta img {
3707 3696 vertical-align: middle;
3708 3697 }
3709 3698
3710 3699 .comments .comment .meta .user {
3711 3700 font-weight: bold;
3712 3701 }
3713 3702
3714 3703 .comments .comment .meta .date {
3715 3704 float: right;
3716 3705 }
3717 3706
3718 3707 .comments .comment .text {
3719 3708 padding: 8px 6px 6px 14px;
3720 3709 background-color: #FAFAFA;
3721 3710 }
3722 3711
3723 3712 .comments .comments-number{
3724 3713 padding:0px 0px 10px 0px;
3725 3714 font-weight: bold;
3726 3715 color: #666;
3727 3716 font-size: 16px;
3728 3717 }
3729 3718
3730 3719 /** comment form **/
3731 3720
3732 3721 .comment-form .clearfix{
3733 3722 background: #EEE;
3734 3723 -webkit-border-radius: 4px;
3735 3724 -moz-border-radius: 4px;
3736 3725 border-radius: 4px;
3737 3726 padding: 10px;
3738 3727 }
3739 3728
3740 3729 div.comment-form {
3741 3730 margin-top: 20px;
3742 3731 }
3743 3732
3744 3733 .comment-form strong {
3745 3734 display: block;
3746 3735 margin-bottom: 15px;
3747 3736 }
3748 3737
3749 3738 .comment-form textarea {
3750 3739 width: 100%;
3751 3740 height: 100px;
3752 3741 font-family: 'Monaco', 'Courier', 'Courier New', monospace;
3753 3742 }
3754 3743
3755 3744 form.comment-form {
3756 3745 margin-top: 10px;
3757 3746 margin-left: 10px;
3758 3747 }
3759 3748
3760 3749 .comment-form-submit {
3761 3750 margin-top: 5px;
3762 3751 margin-left: 525px;
3763 3752 }
3764 3753
3765 3754 .file-comments {
3766 3755 display: none;
3767 3756 }
3768 3757
3769 3758 .comment-form .comment {
3770 3759 margin-left: 10px;
3771 3760 }
3772 3761
3773 3762 .comment-form .comment-help{
3774 3763 padding: 0px 0px 5px 0px;
3775 3764 color: #666;
3776 3765 }
3777 3766
3778 3767 .comment-form .comment-button{
3779 3768 padding-top:5px;
3780 3769 }
3781 3770
3782 3771 .add-another-button {
3783 3772 margin-left: 10px;
3784 3773 margin-top: 10px;
3785 3774 margin-bottom: 10px;
3786 3775 }
3787 3776
3788 3777 .comment .buttons {
3789 3778 position: absolute;
3790 3779 right:40px;
3791 3780 }
3792 3781
3793 3782
3794 3783 .show-inline-comments{
3795 3784 position: relative;
3796 3785 top:1px
3797 3786 }
3798 3787
3799 3788 /** comment inline form **/
3800 3789
3801 3790 .comment-inline-form .clearfix{
3802 3791 background: #EEE;
3803 3792 -webkit-border-radius: 4px;
3804 3793 -moz-border-radius: 4px;
3805 3794 border-radius: 4px;
3806 3795 padding: 5px;
3807 3796 }
3808 3797
3809 3798 div.comment-inline-form {
3810 3799 margin-top: 5px;
3811 3800 padding:2px 6px 8px 6px;
3812 3801 }
3813 3802
3814 3803 .comment-inline-form strong {
3815 3804 display: block;
3816 3805 margin-bottom: 15px;
3817 3806 }
3818 3807
3819 3808 .comment-inline-form textarea {
3820 3809 width: 100%;
3821 3810 height: 100px;
3822 3811 font-family: 'Monaco', 'Courier', 'Courier New', monospace;
3823 3812 }
3824 3813
3825 3814 form.comment-inline-form {
3826 3815 margin-top: 10px;
3827 3816 margin-left: 10px;
3828 3817 }
3829 3818
3830 3819 .comment-inline-form-submit {
3831 3820 margin-top: 5px;
3832 3821 margin-left: 525px;
3833 3822 }
3834 3823
3835 3824 .file-comments {
3836 3825 display: none;
3837 3826 }
3838 3827
3839 3828 .comment-inline-form .comment {
3840 3829 margin-left: 10px;
3841 3830 }
3842 3831
3843 3832 .comment-inline-form .comment-help{
3844 3833 padding: 0px 0px 2px 0px;
3845 3834 color: #666666;
3846 3835 font-size: 10px;
3847 3836 }
3848 3837
3849 3838 .comment-inline-form .comment-button{
3850 3839 padding-top:5px;
3851 3840 }
3852 3841
3853 3842 /** comment inline **/
3854 3843 .inline-comments {
3855 3844 padding:10px 20px;
3856 3845 }
3857 3846
3858 3847 .inline-comments div.rst-block {
3859 3848 clear:both;
3860 3849 overflow:hidden;
3861 3850 margin:0;
3862 3851 padding:0 20px 0px;
3863 3852 }
3864 3853 .inline-comments .comment {
3865 3854 border: 1px solid #ddd;
3866 3855 -webkit-border-radius: 4px;
3867 3856 -moz-border-radius: 4px;
3868 3857 border-radius: 4px;
3869 3858 margin: 3px 3px 5px 5px;
3870 3859 background-color: #FAFAFA;
3871 3860 }
3872 3861 .inline-comments .comment-wrapp{
3873 3862 padding:1px;
3874 3863 }
3875 3864 .inline-comments .comment .meta {
3876 3865 background: #f8f8f8;
3877 3866 padding: 6px;
3878 3867 border-bottom: 1px solid #ddd;
3879 3868 }
3880 3869
3881 3870 .inline-comments .comment .meta img {
3882 3871 vertical-align: middle;
3883 3872 }
3884 3873
3885 3874 .inline-comments .comment .meta .user {
3886 3875 font-weight: bold;
3887 3876 }
3888 3877
3889 3878 .inline-comments .comment .meta .date {
3890 3879 float: right;
3891 3880 }
3892 3881
3893 3882 .inline-comments .comment .text {
3894 3883 padding: 8px 6px 6px 14px;
3895 3884 background-color: #FAFAFA;
3896 3885 }
3897 3886
3898 3887 .inline-comments .comments-number{
3899 3888 padding:0px 0px 10px 0px;
3900 3889 font-weight: bold;
3901 3890 color: #666;
3902 3891 font-size: 16px;
3903 3892 }
3904 3893 .inline-comments-button .add-comment{
3905 3894 margin:10px 5px !important;
3906 3895 }
3907 3896 .notifications{
3908 3897 width:22px;
3909 3898 padding:2px;
3910 3899 float:right;
3911 3900 -webkit-border-radius: 4px;
3912 3901 -moz-border-radius: 4px;
3913 3902 border-radius: 4px;
3914 3903 text-align: center;
3915 3904 margin: 0px -10px 0px 5px;
3916 3905 background-color: #DEDEDE;
3917 3906 }
3918 3907 .notifications a{
3919 3908 color:#888 !important;
3920 3909 display: block;
3921 3910 font-size: 10px
3922 3911 }
3923 3912 .notifications a:hover{
3924 3913 text-decoration: none !important;
3925 3914 }
3926 3915 .notification-header{
3927 3916 padding-top:6px;
3928 3917 }
3929 3918 .notification-header .desc{
3930 3919 font-size: 16px;
3931 3920 height: 24px;
3932 3921 float: left
3933 3922 }
3934 3923 .notification-list .container.unread{
3935 3924
3936 3925 }
3937 3926 .notification-header .gravatar{
3938 3927
3939 3928 }
3940 3929 .notification-header .desc.unread{
3941 3930 font-weight: bold;
3942 3931 font-size: 17px;
3943 3932 }
3944 3933
3945 3934 .notification-header .delete-notifications{
3946 3935 float: right;
3947 3936 padding-top: 8px;
3948 3937 cursor: pointer;
3949 3938 }
3950 3939 .notification-subject{
3951 3940 clear:both;
3952 3941 border-bottom: 1px solid #eee;
3953 3942 padding:5px 0px 5px 38px;
3954 3943 }
3955 3944
3956 3945
3957 3946 /*****************************************************************************
3958 3947 DIFFS CSS
3959 3948 ******************************************************************************/
3960 3949
3961 3950 div.diffblock {
3962 3951 overflow: auto;
3963 3952 padding: 0px;
3964 3953 border: 1px solid #ccc;
3965 3954 background: #f8f8f8;
3966 3955 font-size: 100%;
3967 3956 line-height: 100%;
3968 3957 /* new */
3969 3958 line-height: 125%;
3970 3959 -webkit-border-radius: 6px 6px 0px 0px;
3971 3960 -moz-border-radius: 6px 6px 0px 0px;
3972 3961 border-radius: 6px 6px 0px 0px;
3973 3962 }
3974 3963 div.diffblock.margined{
3975 3964 margin: 0px 20px 0px 20px;
3976 3965 }
3977 3966 div.diffblock .code-header{
3978 3967 border-bottom: 1px solid #CCCCCC;
3979 3968 background: #EEEEEE;
3980 3969 padding:10px 0 10px 0;
3981 3970 height: 14px;
3982 3971 }
3983 3972 div.diffblock .code-header.cv{
3984 3973 height: 34px;
3985 3974 }
3986 3975 div.diffblock .code-header-title{
3987 3976 padding: 0px 0px 10px 5px !important;
3988 3977 margin: 0 !important;
3989 3978 }
3990 3979
3991 3980 div.diffblock .code-header .date{
3992 3981 float:left;
3993 3982 text-transform: uppercase;
3994 3983 }
3995 3984 div.diffblock .code-header div{
3996 3985 margin-left:4px;
3997 3986 font-weight: bold;
3998 3987 font-size: 14px;
3999 3988 }
4000 3989 div.diffblock .code-body{
4001 3990 background: #FFFFFF;
4002 3991 }
4003 3992 div.diffblock pre.raw{
4004 3993 background: #FFFFFF;
4005 3994 color:#000000;
4006 3995 }
4007 3996 table.code-difftable{
4008 3997 border-collapse: collapse;
4009 3998 width: 99%;
4010 3999 }
4011 4000 table.code-difftable td {
4012 4001 padding: 0 !important;
4013 4002 background: none !important;
4014 4003 border:0 !important;
4015 4004 vertical-align: none !important;
4016 4005 }
4017 4006 table.code-difftable .context{
4018 4007 background:none repeat scroll 0 0 #DDE7EF;
4019 4008 }
4020 4009 table.code-difftable .add{
4021 4010 background:none repeat scroll 0 0 #DDFFDD;
4022 4011 }
4023 4012 table.code-difftable .add ins{
4024 4013 background:none repeat scroll 0 0 #AAFFAA;
4025 4014 text-decoration:none;
4026 4015 }
4027 4016 table.code-difftable .del{
4028 4017 background:none repeat scroll 0 0 #FFDDDD;
4029 4018 }
4030 4019 table.code-difftable .del del{
4031 4020 background:none repeat scroll 0 0 #FFAAAA;
4032 4021 text-decoration:none;
4033 4022 }
4034 4023
4035 4024 /** LINE NUMBERS **/
4036 4025 table.code-difftable .lineno{
4037 4026
4038 4027 padding-left:2px;
4039 4028 padding-right:2px;
4040 4029 text-align:right;
4041 4030 width:32px;
4042 4031 -moz-user-select:none;
4043 4032 -webkit-user-select: none;
4044 4033 border-right: 1px solid #CCC !important;
4045 4034 border-left: 0px solid #CCC !important;
4046 4035 border-top: 0px solid #CCC !important;
4047 4036 border-bottom: none !important;
4048 4037 vertical-align: middle !important;
4049 4038
4050 4039 }
4051 4040 table.code-difftable .lineno.new {
4052 4041 }
4053 4042 table.code-difftable .lineno.old {
4054 4043 }
4055 4044 table.code-difftable .lineno a{
4056 4045 color:#747474 !important;
4057 4046 font:11px "Bitstream Vera Sans Mono",Monaco,"Courier New",Courier,monospace !important;
4058 4047 letter-spacing:-1px;
4059 4048 text-align:right;
4060 4049 padding-right: 2px;
4061 4050 cursor: pointer;
4062 4051 display: block;
4063 4052 width: 32px;
4064 4053 }
4065 4054
4066 4055 table.code-difftable .lineno-inline{
4067 4056 background:none repeat scroll 0 0 #FFF !important;
4068 4057 padding-left:2px;
4069 4058 padding-right:2px;
4070 4059 text-align:right;
4071 4060 width:30px;
4072 4061 -moz-user-select:none;
4073 4062 -webkit-user-select: none;
4074 4063 }
4075 4064
4076 4065 /** CODE **/
4077 4066 table.code-difftable .code {
4078 4067 display: block;
4079 4068 width: 100%;
4080 4069 }
4081 4070 table.code-difftable .code td{
4082 4071 margin:0;
4083 4072 padding:0;
4084 4073 }
4085 4074 table.code-difftable .code pre{
4086 4075 margin:0;
4087 4076 padding:0;
4088 4077 height: 17px;
4089 4078 line-height: 17px;
4090 4079 }
4091 4080
4092 4081
4093 4082 .diffblock.margined.comm .line .code:hover{
4094 4083 background-color:#FFFFCC !important;
4095 4084 cursor: pointer !important;
4096 4085 background-image:url("../images/icons/comment_add.png") !important;
4097 4086 background-repeat:no-repeat !important;
4098 4087 background-position: right !important;
4099 4088 background-position: 0% 50% !important;
4100 4089 }
4101 4090 .diffblock.margined.comm .line .code.no-comment:hover{
4102 4091 background-image: none !important;
4103 4092 cursor: auto !important;
4104 4093 background-color: inherit !important;
4105 4094
4106 4095 } No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now