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