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