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