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