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