##// END OF EJS Templates
added style for logout
marcink -
r184:2fc206a3 default
parent child Browse files
Show More
@@ -1,584 +1,586 b''
1 /*** Initial Settings ***/
1 /*** Initial Settings ***/
2 #mainhtml{
2 #mainhtml{
3 margin: 15px 50px;
3 margin: 15px 50px;
4 background: #DBD4C6;
4 background: #DBD4C6;
5 font-family: sans-serif;
5 font-family: sans-serif;
6 }
6 }
7
7
8 a {
8 a {
9 color: #0000cc;
9 color: #0000cc;
10 text-decoration: none;
10 text-decoration: none;
11 }
11 }
12 a:HOVER{
12 a:HOVER{
13 text-decoration: underline;
13 text-decoration: underline;
14 }
14 }
15 /*** end of Initial Settings ***/
15 /*** end of Initial Settings ***/
16
16
17 /** common settings **/
17 /** common settings **/
18 div#main {
18 div#main {
19 padding: 5px;
19 padding: 5px;
20 }
20 }
21
21
22 div#container {
22 div#container {
23 background: #FFFFFF;
23 background: #FFFFFF;
24 position: relative;
24 position: relative;
25 color: #666;
25 color: #666;
26 }
26 }
27
27
28 div.page-header {
28 div.page-header {
29 padding: 50px 20px 0;
29 padding: 50px 20px 0;
30 background: #556cb5 top left repeat-x;
30 background: #556cb5 top left repeat-x;
31 position: relative;
31 position: relative;
32 }
32 }
33
33
34 div.page-header h1 {
34 div.page-header h1 {
35 margin: 10px 0 30px;
35 margin: 10px 0 30px;
36 font-size: 1.8em;
36 font-size: 1.8em;
37 font-weight: bold;
37 font-weight: bold;
38 font-family: sans-serif;
38 font-family: sans-serif;
39 letter-spacing: 1px;
39 letter-spacing: 1px;
40 color: #DDD;
40 color: #DDD;
41 }
41 }
42
42
43 div.page-header h1 a {
43 div.page-header h1 a {
44 font-weight: bold;
44 font-weight: bold;
45 color: #FFF;
45 color: #FFF;
46 }
46 }
47
47
48 div.page-header a {
48 div.page-header a {
49 text-decoration: none;
49 text-decoration: none;
50 }
50 }
51
51
52 div.page-header form {
52 div.page-header form {
53 position: absolute;
53 position: absolute;
54 margin-bottom: 2px;
54 margin-bottom: 2px;
55 bottom: 0;
55 bottom: 0;
56 right: 20px;
56 right: 20px;
57 }
57 }
58
58
59 div.page-header form label {
59 div.page-header form label {
60 color: #DDD;
60 color: #DDD;
61 }
61 }
62
62
63 div.page-header form input {
63 div.page-header form input {
64 padding: 2px;
64 padding: 2px;
65 border: solid 1px #DDD;
65 border: solid 1px #DDD;
66 }
66 }
67
67
68 div.page-header form dl {
68 div.page-header form dl {
69 overflow: hidden;
69 overflow: hidden;
70 }
70 }
71
71
72 div.page-header form dl dt {
72 div.page-header form dl dt {
73 font-size: 1.2em;
73 font-size: 1.2em;
74 }
74 }
75
75
76 div.page-header form dl dt,div.page-header form dl dd {
76 div.page-header form dl dt,div.page-header form dl dd {
77 margin: 0 0 0 5px;
77 margin: 0 0 0 5px;
78 float: left;
78 float: left;
79 height: 24px;
79 height: 24px;
80 line-height: 20px;
80 line-height: 20px;
81 }
81 }
82
82
83 ul.page-nav {
83 ul.page-nav {
84 margin: 10px 0 0 0;
84 margin: 10px 0 0 0;
85 list-style-type: none;
85 list-style-type: none;
86 overflow: hidden;
86 overflow: hidden;
87 width: 800px;
87 width: 800px;
88 padding: 0;
88 padding: 0;
89 }
89 }
90
90
91 ul.page-nav li {
91 ul.page-nav li {
92 margin: 0 2px 0 0;
92 margin: 0 2px 0 0;
93 float: left;
93 float: left;
94 height: 24px;
94 height: 24px;
95 font-size: 1.1em;
95 font-size: 1.1em;
96 line-height: 24px;
96 line-height: 24px;
97 text-align: center;
97 text-align: center;
98 background: #DDD;
98 background: #DDD;
99 }
99 }
100
100
101 ul.page-nav li.current {
101 ul.page-nav li.current {
102 background: #FFF;
102 background: #FFF;
103 padding-right: 5px;
103 padding-right: 5px;
104 padding-left: 5px;
104 padding-left: 5px;
105 }
105 }
106
106
107 ul.page-nav li a {
107 ul.page-nav li a {
108 height: 24px;
108 height: 24px;
109 color: #666;
109 color: #666;
110 padding-right: 5px;
110 padding-right: 5px;
111 padding-left: 5px;
111 padding-left: 5px;
112 display: block;
112 display: block;
113 text-decoration: none;
113 text-decoration: none;
114 }
114 }
115
115 ul.page-nav li.logout a {
116 color: red;
117 }
116 ul.page-nav li a:hover {
118 ul.page-nav li a:hover {
117 color: #333;
119 color: #333;
118 background: #FFF;
120 background: #FFF;
119 }
121 }
120
122
121 ul.submenu {
123 ul.submenu {
122 margin: 10px 0 -10px 20px;
124 margin: 10px 0 -10px 20px;
123 list-style-type: none;
125 list-style-type: none;
124 }
126 }
125
127
126 ul.submenu li {
128 ul.submenu li {
127 margin: 0 10px 0 0;
129 margin: 0 10px 0 0;
128 font-size: 1.2em;
130 font-size: 1.2em;
129 display: inline;
131 display: inline;
130 }
132 }
131
133
132 h2 {
134 h2 {
133 margin: 20px 0 10px;
135 margin: 20px 0 10px;
134 height: 30px;
136 height: 30px;
135 line-height: 30px;
137 line-height: 30px;
136 text-indent: 20px;
138 text-indent: 20px;
137 background: #FFF;
139 background: #FFF;
138 font-size: 1.2em;
140 font-size: 1.2em;
139 border-top: dotted 1px #D5E1E6;
141 border-top: dotted 1px #D5E1E6;
140 font-weight: bold;
142 font-weight: bold;
141 }
143 }
142
144
143 h2.no-link {
145 h2.no-link {
144 color: #006699;
146 color: #006699;
145 }
147 }
146
148
147 h2.no-border {
149 h2.no-border {
148 color: #FFF;
150 color: #FFF;
149 background: #556CB5;
151 background: #556CB5;
150 border: 0;
152 border: 0;
151 }
153 }
152
154
153 h2 a {
155 h2 a {
154 font-weight: bold;
156 font-weight: bold;
155 color: #006699;
157 color: #006699;
156 }
158 }
157
159
158 div.page-path {
160 div.page-path {
159 text-align: right;
161 text-align: right;
160 padding: 20px 30px 10px 0;
162 padding: 20px 30px 10px 0;
161 border: solid #d9d8d1;
163 border: solid #d9d8d1;
162 border-width: 0px 0px 1px;
164 border-width: 0px 0px 1px;
163 font-size: 1.2em;
165 font-size: 1.2em;
164 }
166 }
165
167
166 div.page-footer {
168 div.page-footer {
167 margin: 50px 0 0;
169 margin: 50px 0 0;
168 position: relative;
170 position: relative;
169 }
171 }
170
172
171 div.page-footer p {
173 div.page-footer p {
172 position: relative;
174 position: relative;
173 left: 20px;
175 left: 20px;
174 bottom: 5px;
176 bottom: 5px;
175 font-size: 1.2em;
177 font-size: 1.2em;
176 }
178 }
177
179
178 ul.rss-logo {
180 ul.rss-logo {
179 position: absolute;
181 position: absolute;
180 top: -10px;
182 top: -10px;
181 right: 20px;
183 right: 20px;
182 height: 20px;
184 height: 20px;
183 list-style-type: none;
185 list-style-type: none;
184 }
186 }
185
187
186 ul.rss-logo li {
188 ul.rss-logo li {
187 display: inline;
189 display: inline;
188 }
190 }
189
191
190 ul.rss-logo li a {
192 ul.rss-logo li a {
191 padding: 3px 6px;
193 padding: 3px 6px;
192 line-height: 10px;
194 line-height: 10px;
193 border: 1px solid;
195 border: 1px solid;
194 border-color: #fcc7a5 #7d3302 #3e1a01 #ff954e;
196 border-color: #fcc7a5 #7d3302 #3e1a01 #ff954e;
195 color: #ffffff;
197 color: #ffffff;
196 background-color: #ff6600;
198 background-color: #ff6600;
197 font-weight: bold;
199 font-weight: bold;
198 font-family: sans-serif;
200 font-family: sans-serif;
199 font-size: 10px;
201 font-size: 10px;
200 text-align: center;
202 text-align: center;
201 text-decoration: none;
203 text-decoration: none;
202 }
204 }
203
205
204 div.rss-logo li a:hover {
206 div.rss-logo li a:hover {
205 background-color: #ee5500;
207 background-color: #ee5500;
206 }
208 }
207
209
208 p.normal {
210 p.normal {
209 margin: 20px 0 20px 30px;
211 margin: 20px 0 20px 30px;
210 font-size: 1.2em;
212 font-size: 1.2em;
211 }
213 }
212
214
213 table tr.parity0:hover,table tr.parity1:hover {
215 table tr.parity0:hover,table tr.parity1:hover {
214 background: #D5E1E6;
216 background: #D5E1E6;
215 }
217 }
216
218
217 table tr.parity0 {
219 table tr.parity0 {
218 background: #EAEAE9;
220 background: #EAEAE9;
219 }
221 }
220
222
221 table tr.parity1 {
223 table tr.parity1 {
222 background: #FFFFFF;
224 background: #FFFFFF;
223 }
225 }
224
226
225 span.logtags span {
227 span.logtags span {
226 background-repeat: no-repeat;
228 background-repeat: no-repeat;
227 height: 16px;
229 height: 16px;
228 padding-left: 20px;
230 padding-left: 20px;
229 padding-top: 0px;
231 padding-top: 0px;
230 text-align: left;
232 text-align: left;
231 font-weight: bold;
233 font-weight: bold;
232 }
234 }
233
235
234 span.logtags span.tagtag {
236 span.logtags span.tagtag {
235 background-image: url("/images/label_16.png");
237 background-image: url("/images/label_16.png");
236 }
238 }
237
239
238 span.logtags span.branchtag {
240 span.logtags span.branchtag {
239 background-image: url("/images/left_16.png");
241 background-image: url("/images/left_16.png");
240 color: #628F53;
242 color: #628F53;
241 }
243 }
242
244
243 span.logtags span.inbranchtag {
245 span.logtags span.inbranchtag {
244 background-image: url("/images/left_16.png");
246 background-image: url("/images/left_16.png");
245 }
247 }
246
248
247 div.diff pre {
249 div.diff pre {
248 margin: 10px 0 0 0;
250 margin: 10px 0 0 0;
249 }
251 }
250
252
251 div.diff pre span {
253 div.diff pre span {
252 font-family: monospace;
254 font-family: monospace;
253 white-space: pre;
255 white-space: pre;
254 font-size: 1.2em;
256 font-size: 1.2em;
255 padding: 3px 0;
257 padding: 3px 0;
256 }
258 }
257
259
258 td.source {
260 td.source {
259 white-space: pre;
261 white-space: pre;
260 font-family: monospace;
262 font-family: monospace;
261 margin: 10px 30px 0;
263 margin: 10px 30px 0;
262 font-size: 1.2em;
264 font-size: 1.2em;
263 font-family: monospace;
265 font-family: monospace;
264 }
266 }
265
267
266 div.source div.parity0,div.source div.parity1 {
268 div.source div.parity0,div.source div.parity1 {
267 padding: 1px;
269 padding: 1px;
268 font-size: 1.2em;
270 font-size: 1.2em;
269 }
271 }
270
272
271 div.source div.parity0 {
273 div.source div.parity0 {
272 background: #F1F6F7;
274 background: #F1F6F7;
273 }
275 }
274
276
275 div.source div.parity1 {
277 div.source div.parity1 {
276 background: #FFFFFF;
278 background: #FFFFFF;
277 }
279 }
278
280
279 div.parity0:hover,div.parity1:hover {
281 div.parity0:hover,div.parity1:hover {
280 background: #D5E1E6;
282 background: #D5E1E6;
281 }
283 }
282
284
283 .linenr {
285 .linenr {
284 color: #999;
286 color: #999;
285 text-align: right;
287 text-align: right;
286 }
288 }
287
289
288 .lineno {
290 .lineno {
289 text-align: right;
291 text-align: right;
290 }
292 }
291
293
292 .lineno a {
294 .lineno a {
293 color: #999;
295 color: #999;
294 }
296 }
295
297
296 td.linenr {
298 td.linenr {
297 width: 60px;
299 width: 60px;
298 }
300 }
299
301
300 div#powered-by {
302 div#powered-by {
301 position: absolute;
303 position: absolute;
302 width: 75px;
304 width: 75px;
303 top: 15px;
305 top: 15px;
304 right: 20px;
306 right: 20px;
305 font-size: 1.2em;
307 font-size: 1.2em;
306 }
308 }
307
309
308 div#powered-by a {
310 div#powered-by a {
309 color: #EEE;
311 color: #EEE;
310 text-decoration: none;
312 text-decoration: none;
311 }
313 }
312
314
313 div#powered-by a:hover {
315 div#powered-by a:hover {
314 text-decoration: underline;
316 text-decoration: underline;
315 }
317 }
316
318
317 dl.overview {
319 dl.overview {
318 margin: 0 0 0 30px;
320 margin: 0 0 0 30px;
319 font-size: 1.1em;
321 font-size: 1.1em;
320 overflow: hidden;
322 overflow: hidden;
321 }
323 }
322
324
323 dl.overview dt,dl.overview dd {
325 dl.overview dt,dl.overview dd {
324 margin: 5px 0;
326 margin: 5px 0;
325 float: left;
327 float: left;
326 }
328 }
327
329
328 dl.overview dt {
330 dl.overview dt {
329 clear: left;
331 clear: left;
330 font-weight: bold;
332 font-weight: bold;
331 width: 150px;
333 width: 150px;
332 }
334 }
333
335
334 /** end of summary **/
336 /** end of summary **/
335
337
336 /** chagelog **/
338 /** chagelog **/
337 h3.changelog {
339 h3.changelog {
338 margin: 20px 0 5px 30px;
340 margin: 20px 0 5px 30px;
339 padding: 0 0 2px;
341 padding: 0 0 2px;
340 font-size: 1.4em;
342 font-size: 1.4em;
341 border-bottom: dotted 1px #D5E1E6;
343 border-bottom: dotted 1px #D5E1E6;
342 }
344 }
343
345
344 ul.changelog-entry {
346 ul.changelog-entry {
345 margin: 0 0 10px 30px;
347 margin: 0 0 10px 30px;
346 list-style-type: none;
348 list-style-type: none;
347 position: relative;
349 position: relative;
348 }
350 }
349
351
350 ul.changelog-entry li span.revdate {
352 ul.changelog-entry li span.revdate {
351 font-size: 1.1em;
353 font-size: 1.1em;
352 }
354 }
353
355
354 ul.changelog-entry li.age {
356 ul.changelog-entry li.age {
355 position: absolute;
357 position: absolute;
356 top: -25px;
358 top: -25px;
357 right: 10px;
359 right: 10px;
358 font-size: 1.4em;
360 font-size: 1.4em;
359 color: #CCC;
361 color: #CCC;
360 font-weight: bold;
362 font-weight: bold;
361 font-style: italic;
363 font-style: italic;
362 }
364 }
363
365
364 ul.changelog-entry li span.name {
366 ul.changelog-entry li span.name {
365 font-size: 1.2em;
367 font-size: 1.2em;
366 font-weight: bold;
368 font-weight: bold;
367 }
369 }
368
370
369 ul.changelog-entry li.description {
371 ul.changelog-entry li.description {
370 margin: 10px 0 0;
372 margin: 10px 0 0;
371 font-size: 1.1em;
373 font-size: 1.1em;
372 }
374 }
373
375
374 /** end of changelog **/
376 /** end of changelog **/
375
377
376 /** file **/
378 /** file **/
377 p.files {
379 p.files {
378 margin: 0 0 0 20px;
380 margin: 0 0 0 20px;
379 font-size: 2.0em;
381 font-size: 2.0em;
380 font-weight: bold;
382 font-weight: bold;
381 }
383 }
382
384
383 /** end of file **/
385 /** end of file **/
384
386
385 /** changeset **/
387 /** changeset **/
386
388
387 .cs_files{
389 .cs_files{
388 border: 2px solid #CCCCCC;
390 border: 2px solid #CCCCCC;
389 width: 60%;
391 width: 60%;
390
392
391 }
393 }
392 .cs_files .cs_added{
394 .cs_files .cs_added{
393 background:#BBFFBB;
395 background:#BBFFBB;
394 }
396 }
395 .cs_files .cs_changed{
397 .cs_files .cs_changed{
396 background: #FFDD88;
398 background: #FFDD88;
397 }
399 }
398 .cs_files .cs_removed{
400 .cs_files .cs_removed{
399 background: #FF8888;
401 background: #FF8888;
400 }
402 }
401
403
402 /** end of changeset **/
404 /** end of changeset **/
403
405
404 /** canvas **/
406 /** canvas **/
405 canvas {
407 canvas {
406 position: absolute;
408 position: absolute;
407 z-index: 5;
409 z-index: 5;
408 top: -0.7em;
410 top: -0.7em;
409 }
411 }
410 #graph{
412 #graph{
411 overflow: hidden;
413 overflow: hidden;
412
414
413 }
415 }
414 #graph_nodes{
416 #graph_nodes{
415 width:160px;
417 width:160px;
416 float:left;
418 float:left;
417 }
419 }
418
420
419 #graph_content{
421 #graph_content{
420 width:800px;
422 width:800px;
421 float:left;
423 float:left;
422 }
424 }
423 #graph_content .container_header{
425 #graph_content .container_header{
424 border:1px solid #CCCCCC;
426 border:1px solid #CCCCCC;
425 height:30px;
427 height:30px;
426 background: #EEEEEE;
428 background: #EEEEEE;
427 }
429 }
428
430
429
431
430 #graph_content .container .wrapper{
432 #graph_content .container .wrapper{
431 width: 600px;
433 width: 600px;
432 }
434 }
433 #graph_content .container{
435 #graph_content .container{
434 border-bottom: 1px solid #CCCCCC;
436 border-bottom: 1px solid #CCCCCC;
435 border-left: 1px solid #CCCCCC;
437 border-left: 1px solid #CCCCCC;
436 border-right: 1px solid #CCCCCC;
438 border-right: 1px solid #CCCCCC;
437 height:120px;
439 height:120px;
438 }
440 }
439
441
440 #graph_content .container .left{
442 #graph_content .container .left{
441 float:left;
443 float:left;
442 width: 70%;
444 width: 70%;
443 padding-left: 5px;
445 padding-left: 5px;
444 }
446 }
445
447
446 #graph_content .container .right{
448 #graph_content .container .right{
447 float:right;
449 float:right;
448 width: 25%;
450 width: 25%;
449 }
451 }
450 #graph_content .container .left .date{
452 #graph_content .container .left .date{
451 font-weight:bold;
453 font-weight:bold;
452 }
454 }
453 #graph_content .container .left .author{
455 #graph_content .container .left .author{
454
456
455 }
457 }
456 #graph_content .container .left .message{
458 #graph_content .container .left .message{
457 font-size: 80%;
459 font-size: 80%;
458 }
460 }
459
461
460 .right .added,.changed,.removed{
462 .right .added,.changed,.removed{
461 border:1px solid #DDDDDD;
463 border:1px solid #DDDDDD;
462 display:block;
464 display:block;
463 float:right;
465 float:right;
464 font-size:0.75em;
466 font-size:0.75em;
465 text-align:center;
467 text-align:center;
466 min-width:15px;
468 min-width:15px;
467 }
469 }
468 .right .added{
470 .right .added{
469 background:#BBFFBB;
471 background:#BBFFBB;
470 }
472 }
471 .right .changed{
473 .right .changed{
472 background: #FFDD88;
474 background: #FFDD88;
473 }
475 }
474 .right .removed{
476 .right .removed{
475 background: #FF8888;
477 background: #FF8888;
476 }
478 }
477 /** end of canvas **/
479 /** end of canvas **/
478
480
479 /* FILE BROWSER */
481 /* FILE BROWSER */
480 div.browserblock {
482 div.browserblock {
481 overflow: hidden;
483 overflow: hidden;
482 padding: 0px;
484 padding: 0px;
483 border: 1px solid #ccc;
485 border: 1px solid #ccc;
484 background: #f8f8f8;
486 background: #f8f8f8;
485 font-size: 100%;
487 font-size: 100%;
486 line-height: 100%;
488 line-height: 100%;
487 /* new */
489 /* new */
488 line-height: 125%;
490 line-height: 125%;
489 }
491 }
490 div.browserblock .browser-header{
492 div.browserblock .browser-header{
491 border-bottom: 1px solid #CCCCCC;
493 border-bottom: 1px solid #CCCCCC;
492 background: #EEEEEE;
494 background: #EEEEEE;
493 color:blue;
495 color:blue;
494 padding:10px 0 10px 0;
496 padding:10px 0 10px 0;
495 }
497 }
496 div.browserblock .browser-header span{
498 div.browserblock .browser-header span{
497 margin-left:25px;
499 margin-left:25px;
498 font-weight: bold;
500 font-weight: bold;
499 }
501 }
500 div.browserblock .browser-body{
502 div.browserblock .browser-body{
501 background: #EEEEEE;
503 background: #EEEEEE;
502 }
504 }
503
505
504 table.code-browser {
506 table.code-browser {
505 border-collapse:collapse;
507 border-collapse:collapse;
506 width: 100%;
508 width: 100%;
507 }
509 }
508 table.code-browser tr{
510 table.code-browser tr{
509 margin:3px;
511 margin:3px;
510 }
512 }
511
513
512 table.code-browser thead th {
514 table.code-browser thead th {
513 background-color: #EEEEEE;
515 background-color: #EEEEEE;
514 height: 20px;
516 height: 20px;
515 font-size: 1.1em;
517 font-size: 1.1em;
516 font-weight: bold;
518 font-weight: bold;
517 text-align: center;
519 text-align: center;
518 text-align: left;
520 text-align: left;
519 padding-left: 10px;
521 padding-left: 10px;
520 }
522 }
521 table.code-browser tbody tr {
523 table.code-browser tbody tr {
522
524
523 }
525 }
524
526
525 table.code-browser tbody td {
527 table.code-browser tbody td {
526
528
527 padding-left:10px;
529 padding-left:10px;
528 height: 20px;
530 height: 20px;
529 }
531 }
530
532
531 .info-table {
533 .info-table {
532 background: none repeat scroll 0 0 #FAFAFA;
534 background: none repeat scroll 0 0 #FAFAFA;
533 border-bottom: 1px solid #DDDDDD;
535 border-bottom: 1px solid #DDDDDD;
534 width: 100%;
536 width: 100%;
535 }
537 }
536
538
537 .rss_logo {
539 .rss_logo {
538 background-image: url("/images/feed.png");
540 background-image: url("/images/feed.png");
539 background-repeat: no-repeat;
541 background-repeat: no-repeat;
540 display: block;
542 display: block;
541 height: 16px;
543 height: 16px;
542 padding-left: 20px;
544 padding-left: 20px;
543 padding-top: 0px;
545 padding-top: 0px;
544 text-align: left;
546 text-align: left;
545 }
547 }
546
548
547 .atom_logo {
549 .atom_logo {
548 background-image: url("/images/atom.png");
550 background-image: url("/images/atom.png");
549 background-repeat: no-repeat;
551 background-repeat: no-repeat;
550 display: block;
552 display: block;
551 height: 16px;
553 height: 16px;
552 padding-left: 20px;
554 padding-left: 20px;
553 padding-top: 0px;
555 padding-top: 0px;
554 text-align: left;
556 text-align: left;
555 }
557 }
556
558
557 .browser-file {
559 .browser-file {
558 background-image: url("/images/document_16.png");
560 background-image: url("/images/document_16.png");
559 background-repeat: no-repeat;
561 background-repeat: no-repeat;
560 display: block;
562 display: block;
561 height: 16px;
563 height: 16px;
562 padding-left: 20px;
564 padding-left: 20px;
563 padding-top: 0px;
565 padding-top: 0px;
564 text-align: left;
566 text-align: left;
565 }
567 }
566
568
567 .browser-dir {
569 .browser-dir {
568 background-image: url("/images/folder_16.png");
570 background-image: url("/images/folder_16.png");
569 background-repeat: no-repeat;
571 background-repeat: no-repeat;
570 display: block;
572 display: block;
571 height: 16px;
573 height: 16px;
572 padding-left: 20px;
574 padding-left: 20px;
573 padding-top: 0px;
575 padding-top: 0px;
574 text-align: left;
576 text-align: left;
575 }
577 }
576
578
577 .current_submenu {
579 .current_submenu {
578 border-bottom: 2px solid;
580 border-bottom: 2px solid;
579 }
581 }
580
582
581 #repos_list {
583 #repos_list {
582 border: 1px solid #556CB5;
584 border: 1px solid #556CB5;
583 background: #FFFFFF;
585 background: #FFFFFF;
584 } No newline at end of file
586 }
General Comments 0
You need to be logged in to leave comments. Login now