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