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