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