##// END OF EJS Templates
changeset: styling a bit
Aras Pranckevicius -
r1858:609ec28b beta
parent child Browse files
Show More
@@ -1,4102 +1,4104 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: 10px 0;
1133 padding: 10px 0;
1134 }
1134 }
1135
1135
1136 #content div.box div.message a {
1136 #content div.box div.message a {
1137 font-weight: 400 !important;
1137 font-weight: 400 !important;
1138 }
1138 }
1139
1139
1140 #content div.box div.message div.image {
1140 #content div.box div.message div.image {
1141 float: left;
1141 float: left;
1142 margin: 9px 0 0 5px;
1142 margin: 9px 0 0 5px;
1143 padding: 6px;
1143 padding: 6px;
1144 }
1144 }
1145
1145
1146 #content div.box div.message div.image img {
1146 #content div.box div.message div.image img {
1147 vertical-align: middle;
1147 vertical-align: middle;
1148 margin: 0;
1148 margin: 0;
1149 }
1149 }
1150
1150
1151 #content div.box div.message div.text {
1151 #content div.box div.message div.text {
1152 float: left;
1152 float: left;
1153 margin: 0;
1153 margin: 0;
1154 padding: 9px 6px;
1154 padding: 9px 6px;
1155 }
1155 }
1156
1156
1157 #content div.box div.message div.dismiss a {
1157 #content div.box div.message div.dismiss a {
1158 height: 16px;
1158 height: 16px;
1159 width: 16px;
1159 width: 16px;
1160 display: block;
1160 display: block;
1161 background: url("../images/icons/cross.png") no-repeat;
1161 background: url("../images/icons/cross.png") no-repeat;
1162 margin: 15px 14px 0 0;
1162 margin: 15px 14px 0 0;
1163 padding: 0;
1163 padding: 0;
1164 }
1164 }
1165
1165
1166 #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
1166 #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
1167 {
1167 {
1168 border: none;
1168 border: none;
1169 margin: 0;
1169 margin: 0;
1170 padding: 0;
1170 padding: 0;
1171 }
1171 }
1172
1172
1173 #content div.box div.message div.text span {
1173 #content div.box div.message div.text span {
1174 height: 1%;
1174 height: 1%;
1175 display: block;
1175 display: block;
1176 margin: 0;
1176 margin: 0;
1177 padding: 5px 0 0;
1177 padding: 5px 0 0;
1178 }
1178 }
1179
1179
1180 #content div.box div.message-error {
1180 #content div.box div.message-error {
1181 height: 1%;
1181 height: 1%;
1182 clear: both;
1182 clear: both;
1183 overflow: hidden;
1183 overflow: hidden;
1184 background: #FBE3E4;
1184 background: #FBE3E4;
1185 border: 1px solid #FBC2C4;
1185 border: 1px solid #FBC2C4;
1186 color: #860006;
1186 color: #860006;
1187 }
1187 }
1188
1188
1189 #content div.box div.message-error h6 {
1189 #content div.box div.message-error h6 {
1190 color: #860006;
1190 color: #860006;
1191 }
1191 }
1192
1192
1193 #content div.box div.message-warning {
1193 #content div.box div.message-warning {
1194 height: 1%;
1194 height: 1%;
1195 clear: both;
1195 clear: both;
1196 overflow: hidden;
1196 overflow: hidden;
1197 background: #FFF6BF;
1197 background: #FFF6BF;
1198 border: 1px solid #FFD324;
1198 border: 1px solid #FFD324;
1199 color: #5f5200;
1199 color: #5f5200;
1200 }
1200 }
1201
1201
1202 #content div.box div.message-warning h6 {
1202 #content div.box div.message-warning h6 {
1203 color: #5f5200;
1203 color: #5f5200;
1204 }
1204 }
1205
1205
1206 #content div.box div.message-notice {
1206 #content div.box div.message-notice {
1207 height: 1%;
1207 height: 1%;
1208 clear: both;
1208 clear: both;
1209 overflow: hidden;
1209 overflow: hidden;
1210 background: #8FBDE0;
1210 background: #8FBDE0;
1211 border: 1px solid #6BACDE;
1211 border: 1px solid #6BACDE;
1212 color: #003863;
1212 color: #003863;
1213 }
1213 }
1214
1214
1215 #content div.box div.message-notice h6 {
1215 #content div.box div.message-notice h6 {
1216 color: #003863;
1216 color: #003863;
1217 }
1217 }
1218
1218
1219 #content div.box div.message-success {
1219 #content div.box div.message-success {
1220 height: 1%;
1220 height: 1%;
1221 clear: both;
1221 clear: both;
1222 overflow: hidden;
1222 overflow: hidden;
1223 background: #E6EFC2;
1223 background: #E6EFC2;
1224 border: 1px solid #C6D880;
1224 border: 1px solid #C6D880;
1225 color: #4e6100;
1225 color: #4e6100;
1226 }
1226 }
1227
1227
1228 #content div.box div.message-success h6 {
1228 #content div.box div.message-success h6 {
1229 color: #4e6100;
1229 color: #4e6100;
1230 }
1230 }
1231
1231
1232 #content div.box div.form div.fields div.field {
1232 #content div.box div.form div.fields div.field {
1233 height: 1%;
1233 height: 1%;
1234 border-bottom: 1px solid #DDD;
1234 border-bottom: 1px solid #DDD;
1235 clear: both;
1235 clear: both;
1236 margin: 0;
1236 margin: 0;
1237 padding: 10px 0;
1237 padding: 10px 0;
1238 }
1238 }
1239
1239
1240 #content div.box div.form div.fields div.field-first {
1240 #content div.box div.form div.fields div.field-first {
1241 padding: 0 0 10px;
1241 padding: 0 0 10px;
1242 }
1242 }
1243
1243
1244 #content div.box div.form div.fields div.field-noborder {
1244 #content div.box div.form div.fields div.field-noborder {
1245 border-bottom: 0 !important;
1245 border-bottom: 0 !important;
1246 }
1246 }
1247
1247
1248 #content div.box div.form div.fields div.field span.error-message {
1248 #content div.box div.form div.fields div.field span.error-message {
1249 height: 1%;
1249 height: 1%;
1250 display: inline-block;
1250 display: inline-block;
1251 color: red;
1251 color: red;
1252 margin: 8px 0 0 4px;
1252 margin: 8px 0 0 4px;
1253 padding: 0;
1253 padding: 0;
1254 }
1254 }
1255
1255
1256 #content div.box div.form div.fields div.field span.success {
1256 #content div.box div.form div.fields div.field span.success {
1257 height: 1%;
1257 height: 1%;
1258 display: block;
1258 display: block;
1259 color: #316309;
1259 color: #316309;
1260 margin: 8px 0 0;
1260 margin: 8px 0 0;
1261 padding: 0;
1261 padding: 0;
1262 }
1262 }
1263
1263
1264 #content div.box div.form div.fields div.field div.label {
1264 #content div.box div.form div.fields div.field div.label {
1265 left: 70px;
1265 left: 70px;
1266 width: 155px;
1266 width: 155px;
1267 position: absolute;
1267 position: absolute;
1268 margin: 0;
1268 margin: 0;
1269 padding: 5px 0 0 0px;
1269 padding: 5px 0 0 0px;
1270 }
1270 }
1271
1271
1272 #content div.box div.form div.fields div.field div.label-summary {
1272 #content div.box div.form div.fields div.field div.label-summary {
1273 left: 30px;
1273 left: 30px;
1274 width: 155px;
1274 width: 155px;
1275 position: absolute;
1275 position: absolute;
1276 margin: 0;
1276 margin: 0;
1277 padding: 0px 0 0 0px;
1277 padding: 0px 0 0 0px;
1278 }
1278 }
1279
1279
1280 #content div.box-left div.form div.fields div.field div.label,
1280 #content div.box-left div.form div.fields div.field div.label,
1281 #content div.box-right div.form div.fields div.field div.label,
1281 #content div.box-right div.form div.fields div.field div.label,
1282 #content div.box-left div.form div.fields div.field div.label,
1282 #content div.box-left div.form div.fields div.field div.label,
1283 #content div.box-left div.form div.fields div.field div.label-summary,
1283 #content div.box-left div.form div.fields div.field div.label-summary,
1284 #content div.box-right div.form div.fields div.field div.label-summary,
1284 #content div.box-right div.form div.fields div.field div.label-summary,
1285 #content div.box-left div.form div.fields div.field div.label-summary
1285 #content div.box-left div.form div.fields div.field div.label-summary
1286 {
1286 {
1287 clear: both;
1287 clear: both;
1288 overflow: hidden;
1288 overflow: hidden;
1289 left: 0;
1289 left: 0;
1290 width: auto;
1290 width: auto;
1291 position: relative;
1291 position: relative;
1292 margin: 0;
1292 margin: 0;
1293 padding: 0 0 8px;
1293 padding: 0 0 8px;
1294 }
1294 }
1295
1295
1296 #content div.box div.form div.fields div.field div.label-select {
1296 #content div.box div.form div.fields div.field div.label-select {
1297 padding: 5px 0 0 5px;
1297 padding: 5px 0 0 5px;
1298 }
1298 }
1299
1299
1300 #content div.box-left div.form div.fields div.field div.label-select,
1300 #content div.box-left div.form div.fields div.field div.label-select,
1301 #content div.box-right div.form div.fields div.field div.label-select
1301 #content div.box-right div.form div.fields div.field div.label-select
1302 {
1302 {
1303 padding: 0 0 8px;
1303 padding: 0 0 8px;
1304 }
1304 }
1305
1305
1306 #content div.box-left div.form div.fields div.field div.label-textarea,
1306 #content div.box-left div.form div.fields div.field div.label-textarea,
1307 #content div.box-right div.form div.fields div.field div.label-textarea
1307 #content div.box-right div.form div.fields div.field div.label-textarea
1308 {
1308 {
1309 padding: 0 0 8px !important;
1309 padding: 0 0 8px !important;
1310 }
1310 }
1311
1311
1312 #content div.box div.form div.fields div.field div.label label,div.label label
1312 #content div.box div.form div.fields div.field div.label label,div.label label
1313 {
1313 {
1314 color: #393939;
1314 color: #393939;
1315 font-weight: 700;
1315 font-weight: 700;
1316 }
1316 }
1317 #content div.box div.form div.fields div.field div.label label,div.label-summary label
1317 #content div.box div.form div.fields div.field div.label label,div.label-summary label
1318 {
1318 {
1319 color: #393939;
1319 color: #393939;
1320 font-weight: 700;
1320 font-weight: 700;
1321 }
1321 }
1322 #content div.box div.form div.fields div.field div.input {
1322 #content div.box div.form div.fields div.field div.input {
1323 margin: 0 0 0 200px;
1323 margin: 0 0 0 200px;
1324 }
1324 }
1325
1325
1326 #content div.box div.form div.fields div.field div.input.summary {
1326 #content div.box div.form div.fields div.field div.input.summary {
1327 margin: 0 0 0 110px;
1327 margin: 0 0 0 110px;
1328 }
1328 }
1329 #content div.box div.form div.fields div.field div.input.summary-short {
1329 #content div.box div.form div.fields div.field div.input.summary-short {
1330 margin: 0 0 0 110px;
1330 margin: 0 0 0 110px;
1331 }
1331 }
1332 #content div.box div.form div.fields div.field div.file {
1332 #content div.box div.form div.fields div.field div.file {
1333 margin: 0 0 0 200px;
1333 margin: 0 0 0 200px;
1334 }
1334 }
1335
1335
1336 #content div.box-left div.form div.fields div.field div.input,#content div.box-right div.form div.fields div.field div.input
1336 #content div.box-left div.form div.fields div.field div.input,#content div.box-right div.form div.fields div.field div.input
1337 {
1337 {
1338 margin: 0 0 0 0px;
1338 margin: 0 0 0 0px;
1339 }
1339 }
1340
1340
1341 #content div.box div.form div.fields div.field div.input input {
1341 #content div.box div.form div.fields div.field div.input input {
1342 background: #FFF;
1342 background: #FFF;
1343 border-top: 1px solid #b3b3b3;
1343 border-top: 1px solid #b3b3b3;
1344 border-left: 1px solid #b3b3b3;
1344 border-left: 1px solid #b3b3b3;
1345 border-right: 1px solid #eaeaea;
1345 border-right: 1px solid #eaeaea;
1346 border-bottom: 1px solid #eaeaea;
1346 border-bottom: 1px solid #eaeaea;
1347 color: #000;
1347 color: #000;
1348 font-size: 11px;
1348 font-size: 11px;
1349 margin: 0;
1349 margin: 0;
1350 padding: 7px 7px 6px;
1350 padding: 7px 7px 6px;
1351 }
1351 }
1352
1352
1353 #content div.box div.form div.fields div.field div.input input#clone_url,
1353 #content div.box div.form div.fields div.field div.input input#clone_url,
1354 #content div.box div.form div.fields div.field div.input input#clone_url_id
1354 #content div.box div.form div.fields div.field div.input input#clone_url_id
1355 {
1355 {
1356 font-size: 16px;
1356 font-size: 16px;
1357 padding: 2px;
1357 padding: 2px;
1358 }
1358 }
1359
1359
1360 #content div.box div.form div.fields div.field div.file input {
1360 #content div.box div.form div.fields div.field div.file input {
1361 background: none repeat scroll 0 0 #FFFFFF;
1361 background: none repeat scroll 0 0 #FFFFFF;
1362 border-color: #B3B3B3 #EAEAEA #EAEAEA #B3B3B3;
1362 border-color: #B3B3B3 #EAEAEA #EAEAEA #B3B3B3;
1363 border-style: solid;
1363 border-style: solid;
1364 border-width: 1px;
1364 border-width: 1px;
1365 color: #000000;
1365 color: #000000;
1366 font-size: 11px;
1366 font-size: 11px;
1367 margin: 0;
1367 margin: 0;
1368 padding: 7px 7px 6px;
1368 padding: 7px 7px 6px;
1369 }
1369 }
1370
1370
1371 #content div.box div.form div.fields div.field div.input input.small {
1371 #content div.box div.form div.fields div.field div.input input.small {
1372 width: 30%;
1372 width: 30%;
1373 }
1373 }
1374
1374
1375 #content div.box div.form div.fields div.field div.input input.medium {
1375 #content div.box div.form div.fields div.field div.input input.medium {
1376 width: 55%;
1376 width: 55%;
1377 }
1377 }
1378
1378
1379 #content div.box div.form div.fields div.field div.input input.large {
1379 #content div.box div.form div.fields div.field div.input input.large {
1380 width: 85%;
1380 width: 85%;
1381 }
1381 }
1382
1382
1383 #content div.box div.form div.fields div.field div.input input.date {
1383 #content div.box div.form div.fields div.field div.input input.date {
1384 width: 177px;
1384 width: 177px;
1385 }
1385 }
1386
1386
1387 #content div.box div.form div.fields div.field div.input input.button {
1387 #content div.box div.form div.fields div.field div.input input.button {
1388 background: #D4D0C8;
1388 background: #D4D0C8;
1389 border-top: 1px solid #FFF;
1389 border-top: 1px solid #FFF;
1390 border-left: 1px solid #FFF;
1390 border-left: 1px solid #FFF;
1391 border-right: 1px solid #404040;
1391 border-right: 1px solid #404040;
1392 border-bottom: 1px solid #404040;
1392 border-bottom: 1px solid #404040;
1393 color: #000;
1393 color: #000;
1394 margin: 0;
1394 margin: 0;
1395 padding: 4px 8px;
1395 padding: 4px 8px;
1396 }
1396 }
1397
1397
1398 #content div.box div.form div.fields div.field div.textarea {
1398 #content div.box div.form div.fields div.field div.textarea {
1399 border-top: 1px solid #b3b3b3;
1399 border-top: 1px solid #b3b3b3;
1400 border-left: 1px solid #b3b3b3;
1400 border-left: 1px solid #b3b3b3;
1401 border-right: 1px solid #eaeaea;
1401 border-right: 1px solid #eaeaea;
1402 border-bottom: 1px solid #eaeaea;
1402 border-bottom: 1px solid #eaeaea;
1403 margin: 0 0 0 200px;
1403 margin: 0 0 0 200px;
1404 padding: 10px;
1404 padding: 10px;
1405 }
1405 }
1406
1406
1407 #content div.box div.form div.fields div.field div.textarea-editor {
1407 #content div.box div.form div.fields div.field div.textarea-editor {
1408 border: 1px solid #ddd;
1408 border: 1px solid #ddd;
1409 padding: 0;
1409 padding: 0;
1410 }
1410 }
1411
1411
1412 #content div.box div.form div.fields div.field div.textarea textarea {
1412 #content div.box div.form div.fields div.field div.textarea textarea {
1413 width: 100%;
1413 width: 100%;
1414 height: 220px;
1414 height: 220px;
1415 overflow: hidden;
1415 overflow: hidden;
1416 background: #FFF;
1416 background: #FFF;
1417 color: #000;
1417 color: #000;
1418 font-size: 11px;
1418 font-size: 11px;
1419 outline: none;
1419 outline: none;
1420 border-width: 0;
1420 border-width: 0;
1421 margin: 0;
1421 margin: 0;
1422 padding: 0;
1422 padding: 0;
1423 }
1423 }
1424
1424
1425 #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
1425 #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
1426 {
1426 {
1427 width: 100%;
1427 width: 100%;
1428 height: 100px;
1428 height: 100px;
1429 }
1429 }
1430
1430
1431 #content div.box div.form div.fields div.field div.textarea table {
1431 #content div.box div.form div.fields div.field div.textarea table {
1432 width: 100%;
1432 width: 100%;
1433 border: none;
1433 border: none;
1434 margin: 0;
1434 margin: 0;
1435 padding: 0;
1435 padding: 0;
1436 }
1436 }
1437
1437
1438 #content div.box div.form div.fields div.field div.textarea table td {
1438 #content div.box div.form div.fields div.field div.textarea table td {
1439 background: #DDD;
1439 background: #DDD;
1440 border: none;
1440 border: none;
1441 padding: 0;
1441 padding: 0;
1442 }
1442 }
1443
1443
1444 #content div.box div.form div.fields div.field div.textarea table td table
1444 #content div.box div.form div.fields div.field div.textarea table td table
1445 {
1445 {
1446 width: auto;
1446 width: auto;
1447 border: none;
1447 border: none;
1448 margin: 0;
1448 margin: 0;
1449 padding: 0;
1449 padding: 0;
1450 }
1450 }
1451
1451
1452 #content div.box div.form div.fields div.field div.textarea table td table td
1452 #content div.box div.form div.fields div.field div.textarea table td table td
1453 {
1453 {
1454 font-size: 11px;
1454 font-size: 11px;
1455 padding: 5px 5px 5px 0;
1455 padding: 5px 5px 5px 0;
1456 }
1456 }
1457
1457
1458 #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
1458 #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
1459 {
1459 {
1460 background: #f6f6f6;
1460 background: #f6f6f6;
1461 border-color: #666;
1461 border-color: #666;
1462 }
1462 }
1463
1463
1464 div.form div.fields div.field div.button {
1464 div.form div.fields div.field div.button {
1465 margin: 0;
1465 margin: 0;
1466 padding: 0 0 0 8px;
1466 padding: 0 0 0 8px;
1467 }
1467 }
1468 #content div.box table.noborder {
1468 #content div.box table.noborder {
1469 border: 1px solid transparent;
1469 border: 1px solid transparent;
1470 }
1470 }
1471
1471
1472 #content div.box table {
1472 #content div.box table {
1473 width: 100%;
1473 width: 100%;
1474 border-collapse: separate;
1474 border-collapse: separate;
1475 margin: 0;
1475 margin: 0;
1476 padding: 0;
1476 padding: 0;
1477 border: 1px solid #eee;
1477 border: 1px solid #eee;
1478 -webkit-border-radius: 4px;
1478 -webkit-border-radius: 4px;
1479 -moz-border-radius: 4px;
1479 -moz-border-radius: 4px;
1480 border-radius: 4px;
1480 border-radius: 4px;
1481 }
1481 }
1482
1482
1483 #content div.box table th {
1483 #content div.box table th {
1484 background: #eee;
1484 background: #eee;
1485 border-bottom: 1px solid #ddd;
1485 border-bottom: 1px solid #ddd;
1486 padding: 5px 0px 5px 5px;
1486 padding: 5px 0px 5px 5px;
1487 }
1487 }
1488
1488
1489 #content div.box table th.left {
1489 #content div.box table th.left {
1490 text-align: left;
1490 text-align: left;
1491 }
1491 }
1492
1492
1493 #content div.box table th.right {
1493 #content div.box table th.right {
1494 text-align: right;
1494 text-align: right;
1495 }
1495 }
1496
1496
1497 #content div.box table th.center {
1497 #content div.box table th.center {
1498 text-align: center;
1498 text-align: center;
1499 }
1499 }
1500
1500
1501 #content div.box table th.selected {
1501 #content div.box table th.selected {
1502 vertical-align: middle;
1502 vertical-align: middle;
1503 padding: 0;
1503 padding: 0;
1504 }
1504 }
1505
1505
1506 #content div.box table td {
1506 #content div.box table td {
1507 background: #fff;
1507 background: #fff;
1508 border-bottom: 1px solid #cdcdcd;
1508 border-bottom: 1px solid #cdcdcd;
1509 vertical-align: middle;
1509 vertical-align: middle;
1510 padding: 5px;
1510 padding: 5px;
1511 }
1511 }
1512
1512
1513 #content div.box table tr.selected td {
1513 #content div.box table tr.selected td {
1514 background: #FFC;
1514 background: #FFC;
1515 }
1515 }
1516
1516
1517 #content div.box table td.selected {
1517 #content div.box table td.selected {
1518 width: 3%;
1518 width: 3%;
1519 text-align: center;
1519 text-align: center;
1520 vertical-align: middle;
1520 vertical-align: middle;
1521 padding: 0;
1521 padding: 0;
1522 }
1522 }
1523
1523
1524 #content div.box table td.action {
1524 #content div.box table td.action {
1525 width: 45%;
1525 width: 45%;
1526 text-align: left;
1526 text-align: left;
1527 }
1527 }
1528
1528
1529 #content div.box table td.date {
1529 #content div.box table td.date {
1530 width: 33%;
1530 width: 33%;
1531 text-align: center;
1531 text-align: center;
1532 }
1532 }
1533
1533
1534 #content div.box div.action {
1534 #content div.box div.action {
1535 float: right;
1535 float: right;
1536 background: #FFF;
1536 background: #FFF;
1537 text-align: right;
1537 text-align: right;
1538 margin: 10px 0 0;
1538 margin: 10px 0 0;
1539 padding: 0;
1539 padding: 0;
1540 }
1540 }
1541
1541
1542 #content div.box div.action select {
1542 #content div.box div.action select {
1543 font-size: 11px;
1543 font-size: 11px;
1544 margin: 0;
1544 margin: 0;
1545 }
1545 }
1546
1546
1547 #content div.box div.action .ui-selectmenu {
1547 #content div.box div.action .ui-selectmenu {
1548 margin: 0;
1548 margin: 0;
1549 padding: 0;
1549 padding: 0;
1550 }
1550 }
1551
1551
1552 #content div.box div.pagination {
1552 #content div.box div.pagination {
1553 height: 1%;
1553 height: 1%;
1554 clear: both;
1554 clear: both;
1555 overflow: hidden;
1555 overflow: hidden;
1556 margin: 10px 0 0;
1556 margin: 10px 0 0;
1557 padding: 0;
1557 padding: 0;
1558 }
1558 }
1559
1559
1560 #content div.box div.pagination ul.pager {
1560 #content div.box div.pagination ul.pager {
1561 float: right;
1561 float: right;
1562 text-align: right;
1562 text-align: right;
1563 margin: 0;
1563 margin: 0;
1564 padding: 0;
1564 padding: 0;
1565 }
1565 }
1566
1566
1567 #content div.box div.pagination ul.pager li {
1567 #content div.box div.pagination ul.pager li {
1568 height: 1%;
1568 height: 1%;
1569 float: left;
1569 float: left;
1570 list-style: none;
1570 list-style: none;
1571 background: #ebebeb url("../images/pager.png") repeat-x;
1571 background: #ebebeb url("../images/pager.png") repeat-x;
1572 border-top: 1px solid #dedede;
1572 border-top: 1px solid #dedede;
1573 border-left: 1px solid #cfcfcf;
1573 border-left: 1px solid #cfcfcf;
1574 border-right: 1px solid #c4c4c4;
1574 border-right: 1px solid #c4c4c4;
1575 border-bottom: 1px solid #c4c4c4;
1575 border-bottom: 1px solid #c4c4c4;
1576 color: #4A4A4A;
1576 color: #4A4A4A;
1577 font-weight: 700;
1577 font-weight: 700;
1578 margin: 0 0 0 4px;
1578 margin: 0 0 0 4px;
1579 padding: 0;
1579 padding: 0;
1580 }
1580 }
1581
1581
1582 #content div.box div.pagination ul.pager li.separator {
1582 #content div.box div.pagination ul.pager li.separator {
1583 padding: 6px;
1583 padding: 6px;
1584 }
1584 }
1585
1585
1586 #content div.box div.pagination ul.pager li.current {
1586 #content div.box div.pagination ul.pager li.current {
1587 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1587 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1588 border-top: 1px solid #ccc;
1588 border-top: 1px solid #ccc;
1589 border-left: 1px solid #bebebe;
1589 border-left: 1px solid #bebebe;
1590 border-right: 1px solid #b1b1b1;
1590 border-right: 1px solid #b1b1b1;
1591 border-bottom: 1px solid #afafaf;
1591 border-bottom: 1px solid #afafaf;
1592 color: #515151;
1592 color: #515151;
1593 padding: 6px;
1593 padding: 6px;
1594 }
1594 }
1595
1595
1596 #content div.box div.pagination ul.pager li a {
1596 #content div.box div.pagination ul.pager li a {
1597 height: 1%;
1597 height: 1%;
1598 display: block;
1598 display: block;
1599 float: left;
1599 float: left;
1600 color: #515151;
1600 color: #515151;
1601 text-decoration: none;
1601 text-decoration: none;
1602 margin: 0;
1602 margin: 0;
1603 padding: 6px;
1603 padding: 6px;
1604 }
1604 }
1605
1605
1606 #content div.box div.pagination ul.pager li a:hover,#content div.box div.pagination ul.pager li a:active
1606 #content div.box div.pagination ul.pager li a:hover,#content div.box div.pagination ul.pager li a:active
1607 {
1607 {
1608 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1608 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1609 border-top: 1px solid #ccc;
1609 border-top: 1px solid #ccc;
1610 border-left: 1px solid #bebebe;
1610 border-left: 1px solid #bebebe;
1611 border-right: 1px solid #b1b1b1;
1611 border-right: 1px solid #b1b1b1;
1612 border-bottom: 1px solid #afafaf;
1612 border-bottom: 1px solid #afafaf;
1613 margin: -1px;
1613 margin: -1px;
1614 }
1614 }
1615
1615
1616 #content div.box div.pagination-wh {
1616 #content div.box div.pagination-wh {
1617 height: 1%;
1617 height: 1%;
1618 clear: both;
1618 clear: both;
1619 overflow: hidden;
1619 overflow: hidden;
1620 text-align: right;
1620 text-align: right;
1621 margin: 10px 0 0;
1621 margin: 10px 0 0;
1622 padding: 0;
1622 padding: 0;
1623 }
1623 }
1624
1624
1625 #content div.box div.pagination-right {
1625 #content div.box div.pagination-right {
1626 float: right;
1626 float: right;
1627 }
1627 }
1628
1628
1629 #content div.box div.pagination-wh a,#content div.box div.pagination-wh span.pager_dotdot
1629 #content div.box div.pagination-wh a,#content div.box div.pagination-wh span.pager_dotdot
1630 {
1630 {
1631 height: 1%;
1631 height: 1%;
1632 float: left;
1632 float: left;
1633 background: #ebebeb url("../images/pager.png") repeat-x;
1633 background: #ebebeb url("../images/pager.png") repeat-x;
1634 border-top: 1px solid #dedede;
1634 border-top: 1px solid #dedede;
1635 border-left: 1px solid #cfcfcf;
1635 border-left: 1px solid #cfcfcf;
1636 border-right: 1px solid #c4c4c4;
1636 border-right: 1px solid #c4c4c4;
1637 border-bottom: 1px solid #c4c4c4;
1637 border-bottom: 1px solid #c4c4c4;
1638 color: #4A4A4A;
1638 color: #4A4A4A;
1639 font-weight: 700;
1639 font-weight: 700;
1640 margin: 0 0 0 4px;
1640 margin: 0 0 0 4px;
1641 padding: 6px;
1641 padding: 6px;
1642 }
1642 }
1643
1643
1644 #content div.box div.pagination-wh span.pager_curpage {
1644 #content div.box div.pagination-wh span.pager_curpage {
1645 height: 1%;
1645 height: 1%;
1646 float: left;
1646 float: left;
1647 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1647 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1648 border-top: 1px solid #ccc;
1648 border-top: 1px solid #ccc;
1649 border-left: 1px solid #bebebe;
1649 border-left: 1px solid #bebebe;
1650 border-right: 1px solid #b1b1b1;
1650 border-right: 1px solid #b1b1b1;
1651 border-bottom: 1px solid #afafaf;
1651 border-bottom: 1px solid #afafaf;
1652 color: #515151;
1652 color: #515151;
1653 font-weight: 700;
1653 font-weight: 700;
1654 margin: 0 0 0 4px;
1654 margin: 0 0 0 4px;
1655 padding: 6px;
1655 padding: 6px;
1656 }
1656 }
1657
1657
1658 #content div.box div.pagination-wh a:hover,#content div.box div.pagination-wh a:active
1658 #content div.box div.pagination-wh a:hover,#content div.box div.pagination-wh a:active
1659 {
1659 {
1660 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1660 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
1661 border-top: 1px solid #ccc;
1661 border-top: 1px solid #ccc;
1662 border-left: 1px solid #bebebe;
1662 border-left: 1px solid #bebebe;
1663 border-right: 1px solid #b1b1b1;
1663 border-right: 1px solid #b1b1b1;
1664 border-bottom: 1px solid #afafaf;
1664 border-bottom: 1px solid #afafaf;
1665 text-decoration: none;
1665 text-decoration: none;
1666 }
1666 }
1667
1667
1668 #content div.box div.traffic div.legend {
1668 #content div.box div.traffic div.legend {
1669 clear: both;
1669 clear: both;
1670 overflow: hidden;
1670 overflow: hidden;
1671 border-bottom: 1px solid #ddd;
1671 border-bottom: 1px solid #ddd;
1672 margin: 0 0 10px;
1672 margin: 0 0 10px;
1673 padding: 0 0 10px;
1673 padding: 0 0 10px;
1674 }
1674 }
1675
1675
1676 #content div.box div.traffic div.legend h6 {
1676 #content div.box div.traffic div.legend h6 {
1677 float: left;
1677 float: left;
1678 border: none;
1678 border: none;
1679 margin: 0;
1679 margin: 0;
1680 padding: 0;
1680 padding: 0;
1681 }
1681 }
1682
1682
1683 #content div.box div.traffic div.legend li {
1683 #content div.box div.traffic div.legend li {
1684 list-style: none;
1684 list-style: none;
1685 float: left;
1685 float: left;
1686 font-size: 11px;
1686 font-size: 11px;
1687 margin: 0;
1687 margin: 0;
1688 padding: 0 8px 0 4px;
1688 padding: 0 8px 0 4px;
1689 }
1689 }
1690
1690
1691 #content div.box div.traffic div.legend li.visits {
1691 #content div.box div.traffic div.legend li.visits {
1692 border-left: 12px solid #edc240;
1692 border-left: 12px solid #edc240;
1693 }
1693 }
1694
1694
1695 #content div.box div.traffic div.legend li.pageviews {
1695 #content div.box div.traffic div.legend li.pageviews {
1696 border-left: 12px solid #afd8f8;
1696 border-left: 12px solid #afd8f8;
1697 }
1697 }
1698
1698
1699 #content div.box div.traffic table {
1699 #content div.box div.traffic table {
1700 width: auto;
1700 width: auto;
1701 }
1701 }
1702
1702
1703 #content div.box div.traffic table td {
1703 #content div.box div.traffic table td {
1704 background: transparent;
1704 background: transparent;
1705 border: none;
1705 border: none;
1706 padding: 2px 3px 3px;
1706 padding: 2px 3px 3px;
1707 }
1707 }
1708
1708
1709 #content div.box div.traffic table td.legendLabel {
1709 #content div.box div.traffic table td.legendLabel {
1710 padding: 0 3px 2px;
1710 padding: 0 3px 2px;
1711 }
1711 }
1712
1712
1713 #summary {
1713 #summary {
1714
1714
1715 }
1715 }
1716
1716
1717 #summary .desc {
1717 #summary .desc {
1718 white-space: pre;
1718 white-space: pre;
1719 width: 100%;
1719 width: 100%;
1720 }
1720 }
1721
1721
1722 #summary .repo_name {
1722 #summary .repo_name {
1723 font-size: 1.6em;
1723 font-size: 1.6em;
1724 font-weight: bold;
1724 font-weight: bold;
1725 vertical-align: baseline;
1725 vertical-align: baseline;
1726 clear: right
1726 clear: right
1727 }
1727 }
1728
1728
1729 #footer {
1729 #footer {
1730 clear: both;
1730 clear: both;
1731 overflow: hidden;
1731 overflow: hidden;
1732 text-align: right;
1732 text-align: right;
1733 margin: 0;
1733 margin: 0;
1734 padding: 0 10px 4px;
1734 padding: 0 10px 4px;
1735 margin: -10px 0 0;
1735 margin: -10px 0 0;
1736 }
1736 }
1737
1737
1738 #footer div#footer-inner {
1738 #footer div#footer-inner {
1739 background-color: #eedc94; background-repeat : repeat-x;
1739 background-color: #eedc94; background-repeat : repeat-x;
1740 background-image : -khtml-gradient( linear, left top, left bottom,
1740 background-image : -khtml-gradient( linear, left top, left bottom,
1741 from( #fceec1), to( #eedc94)); background-image : -moz-linear-gradient(
1741 from( #fceec1), to( #eedc94)); background-image : -moz-linear-gradient(
1742 top, #003b76, #00376e); background-image : -ms-linear-gradient( top,
1742 top, #003b76, #00376e); background-image : -ms-linear-gradient( top,
1743 #003b76, #00376e); background-image : -webkit-gradient( linear, left
1743 #003b76, #00376e); background-image : -webkit-gradient( linear, left
1744 top, left bottom, color-stop( 0%, #003b76), color-stop( 100%, #00376e));
1744 top, left bottom, color-stop( 0%, #003b76), color-stop( 100%, #00376e));
1745 background-image : -webkit-linear-gradient( top, #003b76, #00376e));
1745 background-image : -webkit-linear-gradient( top, #003b76, #00376e));
1746 background-image : -o-linear-gradient( top, #003b76, #00376e));
1746 background-image : -o-linear-gradient( top, #003b76, #00376e));
1747 background-image : linear-gradient( top, #003b76, #00376e); filter :
1747 background-image : linear-gradient( top, #003b76, #00376e); filter :
1748 progid : DXImageTransform.Microsoft.gradient ( startColorstr =
1748 progid : DXImageTransform.Microsoft.gradient ( startColorstr =
1749 '#003b76', endColorstr = '#00376e', GradientType = 0);
1749 '#003b76', endColorstr = '#00376e', GradientType = 0);
1750 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
1750 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
1751 -webkit-border-radius: 4px 4px 4px 4px;
1751 -webkit-border-radius: 4px 4px 4px 4px;
1752 -khtml-border-radius: 4px 4px 4px 4px;
1752 -khtml-border-radius: 4px 4px 4px 4px;
1753 -moz-border-radius: 4px 4px 4px 4px;
1753 -moz-border-radius: 4px 4px 4px 4px;
1754 border-radius: 4px 4px 4px 4px;
1754 border-radius: 4px 4px 4px 4px;
1755 background-repeat: repeat-x;
1755 background-repeat: repeat-x;
1756 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
1756 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
1757 to(#eedc94) );
1757 to(#eedc94) );
1758 background-image: -moz-linear-gradient(top, #003b76, #00376e);
1758 background-image: -moz-linear-gradient(top, #003b76, #00376e);
1759 background-image: -ms-linear-gradient(top, #003b76, #00376e);
1759 background-image: -ms-linear-gradient(top, #003b76, #00376e);
1760 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
1760 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
1761 color-stop(100%, #00376e) );
1761 color-stop(100%, #00376e) );
1762 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
1762 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
1763 background-image: -o-linear-gradient(top, #003b76, #00376e) );
1763 background-image: -o-linear-gradient(top, #003b76, #00376e) );
1764 background-image: linear-gradient(top, #003b76, #00376e);
1764 background-image: linear-gradient(top, #003b76, #00376e);
1765 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
1765 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
1766 endColorstr='#00376e', GradientType=0 );
1766 endColorstr='#00376e', GradientType=0 );
1767 }
1767 }
1768
1768
1769 #footer div#footer-inner p {
1769 #footer div#footer-inner p {
1770 padding: 15px 25px 15px 0;
1770 padding: 15px 25px 15px 0;
1771 color: #FFF;
1771 color: #FFF;
1772 font-weight: 700;
1772 font-weight: 700;
1773 }
1773 }
1774
1774
1775 #footer div#footer-inner .footer-link {
1775 #footer div#footer-inner .footer-link {
1776 float: left;
1776 float: left;
1777 padding-left: 10px;
1777 padding-left: 10px;
1778 }
1778 }
1779
1779
1780 #footer div#footer-inner .footer-link a,#footer div#footer-inner .footer-link-right a
1780 #footer div#footer-inner .footer-link a,#footer div#footer-inner .footer-link-right a
1781 {
1781 {
1782 color: #FFF;
1782 color: #FFF;
1783 }
1783 }
1784
1784
1785 #login div.title {
1785 #login div.title {
1786 width: 420px;
1786 width: 420px;
1787 clear: both;
1787 clear: both;
1788 overflow: hidden;
1788 overflow: hidden;
1789 position: relative;
1789 position: relative;
1790 background-color: #eedc94; background-repeat : repeat-x;
1790 background-color: #eedc94; background-repeat : repeat-x;
1791 background-image : -khtml-gradient( linear, left top, left bottom,
1791 background-image : -khtml-gradient( linear, left top, left bottom,
1792 from( #fceec1), to( #eedc94)); background-image : -moz-linear-gradient(
1792 from( #fceec1), to( #eedc94)); background-image : -moz-linear-gradient(
1793 top, #003b76, #00376e); background-image : -ms-linear-gradient( top,
1793 top, #003b76, #00376e); background-image : -ms-linear-gradient( top,
1794 #003b76, #00376e); background-image : -webkit-gradient( linear, left
1794 #003b76, #00376e); background-image : -webkit-gradient( linear, left
1795 top, left bottom, color-stop( 0%, #003b76), color-stop( 100%, #00376e));
1795 top, left bottom, color-stop( 0%, #003b76), color-stop( 100%, #00376e));
1796 background-image : -webkit-linear-gradient( top, #003b76, #00376e));
1796 background-image : -webkit-linear-gradient( top, #003b76, #00376e));
1797 background-image : -o-linear-gradient( top, #003b76, #00376e));
1797 background-image : -o-linear-gradient( top, #003b76, #00376e));
1798 background-image : linear-gradient( top, #003b76, #00376e); filter :
1798 background-image : linear-gradient( top, #003b76, #00376e); filter :
1799 progid : DXImageTransform.Microsoft.gradient ( startColorstr =
1799 progid : DXImageTransform.Microsoft.gradient ( startColorstr =
1800 '#003b76', endColorstr = '#00376e', GradientType = 0);
1800 '#003b76', endColorstr = '#00376e', GradientType = 0);
1801 margin: 0 auto;
1801 margin: 0 auto;
1802 padding: 0;
1802 padding: 0;
1803 background-repeat: repeat-x;
1803 background-repeat: repeat-x;
1804 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
1804 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
1805 to(#eedc94) );
1805 to(#eedc94) );
1806 background-image: -moz-linear-gradient(top, #003b76, #00376e);
1806 background-image: -moz-linear-gradient(top, #003b76, #00376e);
1807 background-image: -ms-linear-gradient(top, #003b76, #00376e);
1807 background-image: -ms-linear-gradient(top, #003b76, #00376e);
1808 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
1808 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
1809 color-stop(100%, #00376e) );
1809 color-stop(100%, #00376e) );
1810 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
1810 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
1811 background-image: -o-linear-gradient(top, #003b76, #00376e) );
1811 background-image: -o-linear-gradient(top, #003b76, #00376e) );
1812 background-image: linear-gradient(top, #003b76, #00376e);
1812 background-image: linear-gradient(top, #003b76, #00376e);
1813 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
1813 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
1814 endColorstr='#00376e', GradientType=0 );
1814 endColorstr='#00376e', GradientType=0 );
1815 }
1815 }
1816
1816
1817 #login div.inner {
1817 #login div.inner {
1818 width: 380px;
1818 width: 380px;
1819 background: #FFF url("../images/login.png") no-repeat top left;
1819 background: #FFF url("../images/login.png") no-repeat top left;
1820 border-top: none;
1820 border-top: none;
1821 border-bottom: none;
1821 border-bottom: none;
1822 margin: 0 auto;
1822 margin: 0 auto;
1823 padding: 20px;
1823 padding: 20px;
1824 }
1824 }
1825
1825
1826 #login div.form div.fields div.field div.label {
1826 #login div.form div.fields div.field div.label {
1827 width: 173px;
1827 width: 173px;
1828 float: left;
1828 float: left;
1829 text-align: right;
1829 text-align: right;
1830 margin: 2px 10px 0 0;
1830 margin: 2px 10px 0 0;
1831 padding: 5px 0 0 5px;
1831 padding: 5px 0 0 5px;
1832 }
1832 }
1833
1833
1834 #login div.form div.fields div.field div.input input {
1834 #login div.form div.fields div.field div.input input {
1835 width: 176px;
1835 width: 176px;
1836 background: #FFF;
1836 background: #FFF;
1837 border-top: 1px solid #b3b3b3;
1837 border-top: 1px solid #b3b3b3;
1838 border-left: 1px solid #b3b3b3;
1838 border-left: 1px solid #b3b3b3;
1839 border-right: 1px solid #eaeaea;
1839 border-right: 1px solid #eaeaea;
1840 border-bottom: 1px solid #eaeaea;
1840 border-bottom: 1px solid #eaeaea;
1841 color: #000;
1841 color: #000;
1842 font-size: 11px;
1842 font-size: 11px;
1843 margin: 0;
1843 margin: 0;
1844 padding: 7px 7px 6px;
1844 padding: 7px 7px 6px;
1845 }
1845 }
1846
1846
1847 #login div.form div.fields div.buttons {
1847 #login div.form div.fields div.buttons {
1848 clear: both;
1848 clear: both;
1849 overflow: hidden;
1849 overflow: hidden;
1850 border-top: 1px solid #DDD;
1850 border-top: 1px solid #DDD;
1851 text-align: right;
1851 text-align: right;
1852 margin: 0;
1852 margin: 0;
1853 padding: 10px 0 0;
1853 padding: 10px 0 0;
1854 }
1854 }
1855
1855
1856 #login div.form div.links {
1856 #login div.form div.links {
1857 clear: both;
1857 clear: both;
1858 overflow: hidden;
1858 overflow: hidden;
1859 margin: 10px 0 0;
1859 margin: 10px 0 0;
1860 padding: 0 0 2px;
1860 padding: 0 0 2px;
1861 }
1861 }
1862
1862
1863 #quick_login {
1863 #quick_login {
1864 top: 31px;
1864 top: 31px;
1865 background-color: rgb(0, 51, 103);
1865 background-color: rgb(0, 51, 103);
1866 z-index: 999;
1866 z-index: 999;
1867 height: 150px;
1867 height: 150px;
1868 position: absolute;
1868 position: absolute;
1869 margin-left: -16px;
1869 margin-left: -16px;
1870 width: 281px;
1870 width: 281px;
1871 -webkit-border-radius: 0px 0px 4px 4px;
1871 -webkit-border-radius: 0px 0px 4px 4px;
1872 -khtml-border-radius: 0px 0px 4px 4px;
1872 -khtml-border-radius: 0px 0px 4px 4px;
1873 -moz-border-radius: 0px 0px 4px 4px;
1873 -moz-border-radius: 0px 0px 4px 4px;
1874 border-radius: 0px 0px 4px 4px;
1874 border-radius: 0px 0px 4px 4px;
1875 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
1875 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
1876 }
1876 }
1877
1877
1878 #quick_login .password_forgoten {
1878 #quick_login .password_forgoten {
1879 padding-right: 10px;
1879 padding-right: 10px;
1880 padding-top: 0px;
1880 padding-top: 0px;
1881 float: left;
1881 float: left;
1882 }
1882 }
1883
1883
1884 #quick_login .password_forgoten a {
1884 #quick_login .password_forgoten a {
1885 font-size: 10px
1885 font-size: 10px
1886 }
1886 }
1887
1887
1888 #quick_login .register {
1888 #quick_login .register {
1889 padding-right: 10px;
1889 padding-right: 10px;
1890 padding-top: 5px;
1890 padding-top: 5px;
1891 float: left;
1891 float: left;
1892 }
1892 }
1893
1893
1894 #quick_login .register a {
1894 #quick_login .register a {
1895 font-size: 10px
1895 font-size: 10px
1896 }
1896 }
1897
1897
1898 #quick_login div.form div.fields {
1898 #quick_login div.form div.fields {
1899 padding-top: 2px;
1899 padding-top: 2px;
1900 padding-left: 10px;
1900 padding-left: 10px;
1901 }
1901 }
1902
1902
1903 #quick_login div.form div.fields div.field {
1903 #quick_login div.form div.fields div.field {
1904 padding: 5px;
1904 padding: 5px;
1905 }
1905 }
1906
1906
1907 #quick_login div.form div.fields div.field div.label label {
1907 #quick_login div.form div.fields div.field div.label label {
1908 color: #fff;
1908 color: #fff;
1909 padding-bottom: 3px;
1909 padding-bottom: 3px;
1910 }
1910 }
1911
1911
1912 #quick_login div.form div.fields div.field div.input input {
1912 #quick_login div.form div.fields div.field div.input input {
1913 width: 236px;
1913 width: 236px;
1914 background: #FFF;
1914 background: #FFF;
1915 border-top: 1px solid #b3b3b3;
1915 border-top: 1px solid #b3b3b3;
1916 border-left: 1px solid #b3b3b3;
1916 border-left: 1px solid #b3b3b3;
1917 border-right: 1px solid #eaeaea;
1917 border-right: 1px solid #eaeaea;
1918 border-bottom: 1px solid #eaeaea;
1918 border-bottom: 1px solid #eaeaea;
1919 color: #000;
1919 color: #000;
1920 font-size: 11px;
1920 font-size: 11px;
1921 margin: 0;
1921 margin: 0;
1922 padding: 5px 7px 4px;
1922 padding: 5px 7px 4px;
1923 }
1923 }
1924
1924
1925 #quick_login div.form div.fields div.buttons {
1925 #quick_login div.form div.fields div.buttons {
1926 clear: both;
1926 clear: both;
1927 overflow: hidden;
1927 overflow: hidden;
1928 text-align: right;
1928 text-align: right;
1929 margin: 0;
1929 margin: 0;
1930 padding: 10px 14px 0px 5px;
1930 padding: 10px 14px 0px 5px;
1931 }
1931 }
1932
1932
1933 #quick_login div.form div.links {
1933 #quick_login div.form div.links {
1934 clear: both;
1934 clear: both;
1935 overflow: hidden;
1935 overflow: hidden;
1936 margin: 10px 0 0;
1936 margin: 10px 0 0;
1937 padding: 0 0 2px;
1937 padding: 0 0 2px;
1938 }
1938 }
1939
1939
1940 #register div.title {
1940 #register div.title {
1941 clear: both;
1941 clear: both;
1942 overflow: hidden;
1942 overflow: hidden;
1943 position: relative;
1943 position: relative;
1944 background-color: #eedc94;
1944 background-color: #eedc94;
1945 background-repeat: repeat-x;
1945 background-repeat: repeat-x;
1946 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
1946 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
1947 to(#eedc94) );
1947 to(#eedc94) );
1948 background-image: -moz-linear-gradient(top, #003b76, #00376e);
1948 background-image: -moz-linear-gradient(top, #003b76, #00376e);
1949 background-image: -ms-linear-gradient(top, #003b76, #00376e);
1949 background-image: -ms-linear-gradient(top, #003b76, #00376e);
1950 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
1950 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76),
1951 color-stop(100%, #00376e) );
1951 color-stop(100%, #00376e) );
1952 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
1952 background-image: -webkit-linear-gradient(top, #003b76, #00376e) );
1953 background-image: -o-linear-gradient(top, #003b76, #00376e) );
1953 background-image: -o-linear-gradient(top, #003b76, #00376e) );
1954 background-image: linear-gradient(top, #003b76, #00376e);
1954 background-image: linear-gradient(top, #003b76, #00376e);
1955 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
1955 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76',
1956 endColorstr='#00376e', GradientType=0 );
1956 endColorstr='#00376e', GradientType=0 );
1957 margin: 0 auto;
1957 margin: 0 auto;
1958 padding: 0;
1958 padding: 0;
1959 }
1959 }
1960
1960
1961 #register div.inner {
1961 #register div.inner {
1962 background: #FFF;
1962 background: #FFF;
1963 border-top: none;
1963 border-top: none;
1964 border-bottom: none;
1964 border-bottom: none;
1965 margin: 0 auto;
1965 margin: 0 auto;
1966 padding: 20px;
1966 padding: 20px;
1967 }
1967 }
1968
1968
1969 #register div.form div.fields div.field div.label {
1969 #register div.form div.fields div.field div.label {
1970 width: 135px;
1970 width: 135px;
1971 float: left;
1971 float: left;
1972 text-align: right;
1972 text-align: right;
1973 margin: 2px 10px 0 0;
1973 margin: 2px 10px 0 0;
1974 padding: 5px 0 0 5px;
1974 padding: 5px 0 0 5px;
1975 }
1975 }
1976
1976
1977 #register div.form div.fields div.field div.input input {
1977 #register div.form div.fields div.field div.input input {
1978 width: 300px;
1978 width: 300px;
1979 background: #FFF;
1979 background: #FFF;
1980 border-top: 1px solid #b3b3b3;
1980 border-top: 1px solid #b3b3b3;
1981 border-left: 1px solid #b3b3b3;
1981 border-left: 1px solid #b3b3b3;
1982 border-right: 1px solid #eaeaea;
1982 border-right: 1px solid #eaeaea;
1983 border-bottom: 1px solid #eaeaea;
1983 border-bottom: 1px solid #eaeaea;
1984 color: #000;
1984 color: #000;
1985 font-size: 11px;
1985 font-size: 11px;
1986 margin: 0;
1986 margin: 0;
1987 padding: 7px 7px 6px;
1987 padding: 7px 7px 6px;
1988 }
1988 }
1989
1989
1990 #register div.form div.fields div.buttons {
1990 #register div.form div.fields div.buttons {
1991 clear: both;
1991 clear: both;
1992 overflow: hidden;
1992 overflow: hidden;
1993 border-top: 1px solid #DDD;
1993 border-top: 1px solid #DDD;
1994 text-align: left;
1994 text-align: left;
1995 margin: 0;
1995 margin: 0;
1996 padding: 10px 0 0 150px;
1996 padding: 10px 0 0 150px;
1997 }
1997 }
1998
1998
1999 #register div.form div.activation_msg {
1999 #register div.form div.activation_msg {
2000 padding-top: 4px;
2000 padding-top: 4px;
2001 padding-bottom: 4px;
2001 padding-bottom: 4px;
2002 }
2002 }
2003
2003
2004 #journal .journal_day {
2004 #journal .journal_day {
2005 font-size: 20px;
2005 font-size: 20px;
2006 padding: 10px 0px;
2006 padding: 10px 0px;
2007 border-bottom: 2px solid #DDD;
2007 border-bottom: 2px solid #DDD;
2008 margin-left: 10px;
2008 margin-left: 10px;
2009 margin-right: 10px;
2009 margin-right: 10px;
2010 }
2010 }
2011
2011
2012 #journal .journal_container {
2012 #journal .journal_container {
2013 padding: 5px;
2013 padding: 5px;
2014 clear: both;
2014 clear: both;
2015 margin: 0px 5px 0px 10px;
2015 margin: 0px 5px 0px 10px;
2016 }
2016 }
2017
2017
2018 #journal .journal_action_container {
2018 #journal .journal_action_container {
2019 padding-left: 38px;
2019 padding-left: 38px;
2020 }
2020 }
2021
2021
2022 #journal .journal_user {
2022 #journal .journal_user {
2023 color: #747474;
2023 color: #747474;
2024 font-size: 14px;
2024 font-size: 14px;
2025 font-weight: bold;
2025 font-weight: bold;
2026 height: 30px;
2026 height: 30px;
2027 }
2027 }
2028
2028
2029 #journal .journal_icon {
2029 #journal .journal_icon {
2030 clear: both;
2030 clear: both;
2031 float: left;
2031 float: left;
2032 padding-right: 4px;
2032 padding-right: 4px;
2033 padding-top: 3px;
2033 padding-top: 3px;
2034 }
2034 }
2035
2035
2036 #journal .journal_action {
2036 #journal .journal_action {
2037 padding-top: 4px;
2037 padding-top: 4px;
2038 min-height: 2px;
2038 min-height: 2px;
2039 float: left
2039 float: left
2040 }
2040 }
2041
2041
2042 #journal .journal_action_params {
2042 #journal .journal_action_params {
2043 clear: left;
2043 clear: left;
2044 padding-left: 22px;
2044 padding-left: 22px;
2045 }
2045 }
2046
2046
2047 #journal .journal_repo {
2047 #journal .journal_repo {
2048 float: left;
2048 float: left;
2049 margin-left: 6px;
2049 margin-left: 6px;
2050 padding-top: 3px;
2050 padding-top: 3px;
2051 }
2051 }
2052
2052
2053 #journal .date {
2053 #journal .date {
2054 clear: both;
2054 clear: both;
2055 color: #777777;
2055 color: #777777;
2056 font-size: 11px;
2056 font-size: 11px;
2057 padding-left: 22px;
2057 padding-left: 22px;
2058 }
2058 }
2059
2059
2060 #journal .journal_repo .journal_repo_name {
2060 #journal .journal_repo .journal_repo_name {
2061 font-weight: bold;
2061 font-weight: bold;
2062 font-size: 1.1em;
2062 font-size: 1.1em;
2063 }
2063 }
2064
2064
2065 #journal .compare_view {
2065 #journal .compare_view {
2066 padding: 5px 0px 5px 0px;
2066 padding: 5px 0px 5px 0px;
2067 width: 95px;
2067 width: 95px;
2068 }
2068 }
2069
2069
2070 .journal_highlight {
2070 .journal_highlight {
2071 font-weight: bold;
2071 font-weight: bold;
2072 padding: 0 2px;
2072 padding: 0 2px;
2073 vertical-align: bottom;
2073 vertical-align: bottom;
2074 }
2074 }
2075
2075
2076 .trending_language_tbl,.trending_language_tbl td {
2076 .trending_language_tbl,.trending_language_tbl td {
2077 border: 0 !important;
2077 border: 0 !important;
2078 margin: 0 !important;
2078 margin: 0 !important;
2079 padding: 0 !important;
2079 padding: 0 !important;
2080 }
2080 }
2081
2081
2082 .trending_language_tbl,.trending_language_tbl tr {
2082 .trending_language_tbl,.trending_language_tbl tr {
2083 border-spacing: 1px;
2083 border-spacing: 1px;
2084 }
2084 }
2085
2085
2086 .trending_language {
2086 .trending_language {
2087 background-color: #003367;
2087 background-color: #003367;
2088 color: #FFF;
2088 color: #FFF;
2089 display: block;
2089 display: block;
2090 min-width: 20px;
2090 min-width: 20px;
2091 text-decoration: none;
2091 text-decoration: none;
2092 height: 12px;
2092 height: 12px;
2093 margin-bottom: 0px;
2093 margin-bottom: 0px;
2094 margin-left: 5px;
2094 margin-left: 5px;
2095 white-space: pre;
2095 white-space: pre;
2096 padding: 3px;
2096 padding: 3px;
2097 }
2097 }
2098
2098
2099 h3.files_location {
2099 h3.files_location {
2100 font-size: 1.8em;
2100 font-size: 1.8em;
2101 font-weight: 700;
2101 font-weight: 700;
2102 border-bottom: none !important;
2102 border-bottom: none !important;
2103 margin: 10px 0 !important;
2103 margin: 10px 0 !important;
2104 }
2104 }
2105
2105
2106 #files_data dl dt {
2106 #files_data dl dt {
2107 float: left;
2107 float: left;
2108 width: 60px;
2108 width: 60px;
2109 margin: 0 !important;
2109 margin: 0 !important;
2110 padding: 5px;
2110 padding: 5px;
2111 }
2111 }
2112
2112
2113 #files_data dl dd {
2113 #files_data dl dd {
2114 margin: 0 !important;
2114 margin: 0 !important;
2115 padding: 5px !important;
2115 padding: 5px !important;
2116 }
2116 }
2117
2117
2118 .tablerow1 {
2118 .tablerow1 {
2119 background-color: #F8F8F8;
2119 background-color: #F8F8F8;
2120 }
2120 }
2121
2121
2122 .changeset_id {
2122 .changeset_id {
2123 font-family: monospace;
2123 font-family: monospace;
2124 color: #666666;
2124 color: #666666;
2125 }
2125 }
2126
2126
2127 .changeset_hash {
2127 .changeset_hash {
2128 color: #000000;
2128 color: #000000;
2129 }
2129 }
2130
2130
2131 #changeset_content {
2131 #changeset_content {
2132 border: 1px solid #CCC;
2132 border-left: 1px solid #CCC;
2133 border-right: 1px solid #CCC;
2134 border-bottom: 1px solid #CCC;
2133 padding: 5px;
2135 padding: 5px;
2134 }
2136 }
2135
2137
2136 #changeset_compare_view_content {
2138 #changeset_compare_view_content {
2137 border: 1px solid #CCC;
2139 border: 1px solid #CCC;
2138 padding: 5px;
2140 padding: 5px;
2139 }
2141 }
2140
2142
2141 #changeset_content .container {
2143 #changeset_content .container {
2142 min-height: 120px;
2144 min-height: 100px;
2143 font-size: 1.2em;
2145 font-size: 1.2em;
2144 overflow: hidden;
2146 overflow: hidden;
2145 }
2147 }
2146
2148
2147 #changeset_compare_view_content .compare_view_commits {
2149 #changeset_compare_view_content .compare_view_commits {
2148 width: auto !important;
2150 width: auto !important;
2149 }
2151 }
2150
2152
2151 #changeset_compare_view_content .compare_view_commits td {
2153 #changeset_compare_view_content .compare_view_commits td {
2152 padding: 0px 0px 0px 12px !important;
2154 padding: 0px 0px 0px 12px !important;
2153 }
2155 }
2154
2156
2155 #changeset_content .container .right {
2157 #changeset_content .container .right {
2156 float: right;
2158 float: right;
2157 width: 20%;
2159 width: 20%;
2158 text-align: right;
2160 text-align: right;
2159 }
2161 }
2160
2162
2161 #changeset_content .container .left .message {
2163 #changeset_content .container .left .message {
2162 white-space: pre-wrap;
2164 white-space: pre-wrap;
2163 }
2165 }
2164 #changeset_content .container .left .message a:hover {
2166 #changeset_content .container .left .message a:hover {
2165 text-decoration: none;
2167 text-decoration: none;
2166 }
2168 }
2167 .cs_files .cur_cs {
2169 .cs_files .cur_cs {
2168 margin: 10px 2px;
2170 margin: 10px 2px;
2169 font-weight: bold;
2171 font-weight: bold;
2170 }
2172 }
2171
2173
2172 .cs_files .node {
2174 .cs_files .node {
2173 float: left;
2175 float: left;
2174 }
2176 }
2175
2177
2176 .cs_files .changes {
2178 .cs_files .changes {
2177 float: right;
2179 float: right;
2178 color:#003367;
2180 color:#003367;
2179
2181
2180 }
2182 }
2181
2183
2182 .cs_files .changes .added {
2184 .cs_files .changes .added {
2183 background-color: #BBFFBB;
2185 background-color: #BBFFBB;
2184 float: left;
2186 float: left;
2185 text-align: center;
2187 text-align: center;
2186 font-size: 9px;
2188 font-size: 9px;
2187 padding: 2px 0px 2px 0px;
2189 padding: 2px 0px 2px 0px;
2188 }
2190 }
2189
2191
2190 .cs_files .changes .deleted {
2192 .cs_files .changes .deleted {
2191 background-color: #FF8888;
2193 background-color: #FF8888;
2192 float: left;
2194 float: left;
2193 text-align: center;
2195 text-align: center;
2194 font-size: 9px;
2196 font-size: 9px;
2195 padding: 2px 0px 2px 0px;
2197 padding: 2px 0px 2px 0px;
2196 }
2198 }
2197
2199
2198 .cs_files .cs_added {
2200 .cs_files .cs_added {
2199 background: url("../images/icons/page_white_add.png") no-repeat scroll
2201 background: url("../images/icons/page_white_add.png") no-repeat scroll
2200 3px;
2202 3px;
2201 height: 16px;
2203 height: 16px;
2202 padding-left: 20px;
2204 padding-left: 20px;
2203 margin-top: 7px;
2205 margin-top: 7px;
2204 text-align: left;
2206 text-align: left;
2205 }
2207 }
2206
2208
2207 .cs_files .cs_changed {
2209 .cs_files .cs_changed {
2208 background: url("../images/icons/page_white_edit.png") no-repeat scroll
2210 background: url("../images/icons/page_white_edit.png") no-repeat scroll
2209 3px;
2211 3px;
2210 height: 16px;
2212 height: 16px;
2211 padding-left: 20px;
2213 padding-left: 20px;
2212 margin-top: 7px;
2214 margin-top: 7px;
2213 text-align: left;
2215 text-align: left;
2214 }
2216 }
2215
2217
2216 .cs_files .cs_removed {
2218 .cs_files .cs_removed {
2217 background: url("../images/icons/page_white_delete.png") no-repeat
2219 background: url("../images/icons/page_white_delete.png") no-repeat
2218 scroll 3px;
2220 scroll 3px;
2219 height: 16px;
2221 height: 16px;
2220 padding-left: 20px;
2222 padding-left: 20px;
2221 margin-top: 7px;
2223 margin-top: 7px;
2222 text-align: left;
2224 text-align: left;
2223 }
2225 }
2224
2226
2225 #graph {
2227 #graph {
2226 overflow: hidden;
2228 overflow: hidden;
2227 }
2229 }
2228
2230
2229 #graph_nodes {
2231 #graph_nodes {
2230 float: left;
2232 float: left;
2231 margin-right: -6px;
2233 margin-right: -6px;
2232 margin-top: 0px;
2234 margin-top: 0px;
2233 }
2235 }
2234
2236
2235 #graph_content {
2237 #graph_content {
2236 width: 80%;
2238 width: 80%;
2237 float: left;
2239 float: left;
2238 }
2240 }
2239
2241
2240 #graph_content .container_header {
2242 #graph_content .container_header {
2241 border-bottom: 1px solid #DDD;
2243 border-bottom: 1px solid #DDD;
2242 padding: 10px;
2244 padding: 10px;
2243 height: 25px;
2245 height: 25px;
2244 }
2246 }
2245
2247
2246 #graph_content #rev_range_container {
2248 #graph_content #rev_range_container {
2247 padding: 5px 20px;
2249 padding: 5px 20px;
2248 float: left;
2250 float: left;
2249 }
2251 }
2250
2252
2251 #graph_content .container {
2253 #graph_content .container {
2252 border-bottom: 1px solid #DDD;
2254 border-bottom: 1px solid #DDD;
2253 height: 55px;
2255 height: 55px;
2254 overflow: hidden;
2256 overflow: hidden;
2255 }
2257 }
2256
2258
2257 #graph_content .container .right {
2259 #graph_content .container .right {
2258 float: right;
2260 float: right;
2259 width: 23%;
2261 width: 23%;
2260 text-align: right;
2262 text-align: right;
2261 }
2263 }
2262
2264
2263 #graph_content .container .left {
2265 #graph_content .container .left {
2264 float: left;
2266 float: left;
2265 width: 25%;
2267 width: 25%;
2266 padding-left: 5px;
2268 padding-left: 5px;
2267 }
2269 }
2268
2270
2269 #graph_content .container .mid {
2271 #graph_content .container .mid {
2270 float: left;
2272 float: left;
2271 width: 49%;
2273 width: 49%;
2272 }
2274 }
2273
2275
2274
2276
2275 #graph_content .container .left .date {
2277 #graph_content .container .left .date {
2276 color: #444444;
2278 color: #444444;
2277 }
2279 }
2278
2280
2279 #graph_content .container .left .author {
2281 #graph_content .container .left .author {
2280 height: 22px;
2282 height: 22px;
2281 }
2283 }
2282
2284
2283 #graph_content .container .left .author .user {
2285 #graph_content .container .left .author .user {
2284 color: #444444;
2286 color: #444444;
2285 float: left;
2287 float: left;
2286 margin-left: -4px;
2288 margin-left: -4px;
2287 margin-top: 4px;
2289 margin-top: 4px;
2288 }
2290 }
2289
2291
2290 #graph_content .container .left .message {
2292 #graph_content .container .left .message {
2291 font-size: 100%;
2293 font-size: 100%;
2292 padding-top: 3px;
2294 padding-top: 3px;
2293 white-space: pre-wrap;
2295 white-space: pre-wrap;
2294 border: 1px solid red;
2296 border: 1px solid red;
2295 position: relative;
2297 position: relative;
2296 top: -30px;
2298 top: -30px;
2297 left: 40%;
2299 left: 40%;
2298 width: 30%;
2300 width: 30%;
2299 }
2301 }
2300
2302
2301 #graph_content .container .left .message a:hover{
2303 #graph_content .container .left .message a:hover{
2302 text-decoration: none;
2304 text-decoration: none;
2303 }
2305 }
2304
2306
2305 .right div {
2307 .right div {
2306 clear: both;
2308 clear: both;
2307 }
2309 }
2308
2310
2309 .right .changes .changed_total {
2311 .right .changes .changed_total {
2310 display: block;
2312 display: block;
2311 float: right;
2313 float: right;
2312 text-align: center;
2314 text-align: center;
2313 min-width: 45px;
2315 min-width: 45px;
2314 cursor: pointer;
2316 cursor: pointer;
2315 color: #444444;
2317 color: #444444;
2316 background: #FEA;
2318 background: #FEA;
2317 -webkit-border-radius: 0px 0px 0px 6px;
2319 -webkit-border-radius: 0px 0px 0px 6px;
2318 -moz-border-radius: 0px 0px 0px 6px;
2320 -moz-border-radius: 0px 0px 0px 6px;
2319 border-radius: 0px 0px 0px 6px;
2321 border-radius: 0px 0px 0px 6px;
2320 padding: 1px;
2322 padding: 1px;
2321 }
2323 }
2322
2324
2323 .right .changes .added,.changed,.removed {
2325 .right .changes .added,.changed,.removed {
2324 display: block;
2326 display: block;
2325 padding: 1px;
2327 padding: 1px;
2326 color: #444444;
2328 color: #444444;
2327 float: right;
2329 float: right;
2328 text-align: center;
2330 text-align: center;
2329 min-width: 15px;
2331 min-width: 15px;
2330 }
2332 }
2331
2333
2332 .right .changes .added {
2334 .right .changes .added {
2333 background: #CFC;
2335 background: #CFC;
2334 }
2336 }
2335
2337
2336 .right .changes .changed {
2338 .right .changes .changed {
2337 background: #FEA;
2339 background: #FEA;
2338 }
2340 }
2339
2341
2340 .right .changes .removed {
2342 .right .changes .removed {
2341 background: #FAA;
2343 background: #FAA;
2342 }
2344 }
2343
2345
2344 .right .merge {
2346 .right .merge {
2345 padding: 1px 3px 1px 3px;
2347 padding: 1px 3px 1px 3px;
2346 background-color: #fca062;
2348 background-color: #fca062;
2347 font-size: 10px;
2349 font-size: 10px;
2348 font-weight: bold;
2350 font-weight: bold;
2349 color: #ffffff;
2351 color: #ffffff;
2350 text-transform: uppercase;
2352 text-transform: uppercase;
2351 white-space: nowrap;
2353 white-space: nowrap;
2352 -webkit-border-radius: 3px;
2354 -webkit-border-radius: 3px;
2353 -moz-border-radius: 3px;
2355 -moz-border-radius: 3px;
2354 border-radius: 3px;
2356 border-radius: 3px;
2355 margin-right: 2px;
2357 margin-right: 2px;
2356 }
2358 }
2357
2359
2358 .right .parent {
2360 .right .parent {
2359 color: #666666;
2361 color: #666666;
2360 }
2362 }
2361 .right .logtags{
2363 .right .logtags{
2362 padding: 2px 2px 2px 2px;
2364 padding: 2px 2px 2px 2px;
2363 }
2365 }
2364 .right .logtags .branchtag,.logtags .branchtag {
2366 .right .logtags .branchtag,.logtags .branchtag {
2365 padding: 1px 3px 1px 3px;
2367 padding: 1px 3px 1px 3px;
2366 background-color: #bfbfbf;
2368 background-color: #bfbfbf;
2367 font-size: 10px;
2369 font-size: 10px;
2368 font-weight: bold;
2370 font-weight: bold;
2369 color: #ffffff;
2371 color: #ffffff;
2370 text-transform: uppercase;
2372 text-transform: uppercase;
2371 white-space: nowrap;
2373 white-space: nowrap;
2372 -webkit-border-radius: 3px;
2374 -webkit-border-radius: 3px;
2373 -moz-border-radius: 3px;
2375 -moz-border-radius: 3px;
2374 border-radius: 3px;
2376 border-radius: 3px;
2375 }
2377 }
2376 .right .logtags .branchtag a:hover,.logtags .branchtag a{
2378 .right .logtags .branchtag a:hover,.logtags .branchtag a{
2377 color: #ffffff;
2379 color: #ffffff;
2378 }
2380 }
2379 .right .logtags .branchtag a:hover,.logtags .branchtag a:hover{
2381 .right .logtags .branchtag a:hover,.logtags .branchtag a:hover{
2380 text-decoration: none;
2382 text-decoration: none;
2381 color: #ffffff;
2383 color: #ffffff;
2382 }
2384 }
2383 .right .logtags .tagtag,.logtags .tagtag {
2385 .right .logtags .tagtag,.logtags .tagtag {
2384 padding: 1px 3px 1px 3px;
2386 padding: 1px 3px 1px 3px;
2385 background-color: #62cffc;
2387 background-color: #62cffc;
2386 font-size: 10px;
2388 font-size: 10px;
2387 font-weight: bold;
2389 font-weight: bold;
2388 color: #ffffff;
2390 color: #ffffff;
2389 text-transform: uppercase;
2391 text-transform: uppercase;
2390 white-space: nowrap;
2392 white-space: nowrap;
2391 -webkit-border-radius: 3px;
2393 -webkit-border-radius: 3px;
2392 -moz-border-radius: 3px;
2394 -moz-border-radius: 3px;
2393 border-radius: 3px;
2395 border-radius: 3px;
2394 }
2396 }
2395 .right .logtags .tagtag a:hover,.logtags .tagtag a{
2397 .right .logtags .tagtag a:hover,.logtags .tagtag a{
2396 color: #ffffff;
2398 color: #ffffff;
2397 }
2399 }
2398 .right .logtags .tagtag a:hover,.logtags .tagtag a:hover{
2400 .right .logtags .tagtag a:hover,.logtags .tagtag a:hover{
2399 text-decoration: none;
2401 text-decoration: none;
2400 color: #ffffff;
2402 color: #ffffff;
2401 }
2403 }
2402 .right .logbooks .bookbook,.logbooks .bookbook {
2404 .right .logbooks .bookbook,.logbooks .bookbook {
2403 padding: 1px 3px 2px;
2405 padding: 1px 3px 2px;
2404 background-color: #46A546;
2406 background-color: #46A546;
2405 font-size: 9.75px;
2407 font-size: 9.75px;
2406 font-weight: bold;
2408 font-weight: bold;
2407 color: #ffffff;
2409 color: #ffffff;
2408 text-transform: uppercase;
2410 text-transform: uppercase;
2409 white-space: nowrap;
2411 white-space: nowrap;
2410 -webkit-border-radius: 3px;
2412 -webkit-border-radius: 3px;
2411 -moz-border-radius: 3px;
2413 -moz-border-radius: 3px;
2412 border-radius: 3px;
2414 border-radius: 3px;
2413 }
2415 }
2414 .right .logbooks .bookbook,.logbooks .bookbook a{
2416 .right .logbooks .bookbook,.logbooks .bookbook a{
2415 color: #ffffff;
2417 color: #ffffff;
2416 }
2418 }
2417 .right .logbooks .bookbook,.logbooks .bookbook a:hover{
2419 .right .logbooks .bookbook,.logbooks .bookbook a:hover{
2418 text-decoration: none;
2420 text-decoration: none;
2419 color: #ffffff;
2421 color: #ffffff;
2420 }
2422 }
2421 div.browserblock {
2423 div.browserblock {
2422 overflow: hidden;
2424 overflow: hidden;
2423 border: 1px solid #ccc;
2425 border: 1px solid #ccc;
2424 background: #f8f8f8;
2426 background: #f8f8f8;
2425 font-size: 100%;
2427 font-size: 100%;
2426 line-height: 125%;
2428 line-height: 125%;
2427 padding: 0;
2429 padding: 0;
2428 -webkit-border-radius: 6px 6px 0px 0px;
2430 -webkit-border-radius: 6px 6px 0px 0px;
2429 -moz-border-radius: 6px 6px 0px 0px;
2431 -moz-border-radius: 6px 6px 0px 0px;
2430 border-radius: 6px 6px 0px 0px;
2432 border-radius: 6px 6px 0px 0px;
2431 }
2433 }
2432
2434
2433 div.browserblock .browser-header {
2435 div.browserblock .browser-header {
2434 background: #FFF;
2436 background: #FFF;
2435 padding: 10px 0px 15px 0px;
2437 padding: 10px 0px 15px 0px;
2436 width: 100%;
2438 width: 100%;
2437 }
2439 }
2438
2440
2439 div.browserblock .browser-nav {
2441 div.browserblock .browser-nav {
2440 float: left
2442 float: left
2441 }
2443 }
2442
2444
2443 div.browserblock .browser-branch {
2445 div.browserblock .browser-branch {
2444 float: left;
2446 float: left;
2445 }
2447 }
2446
2448
2447 div.browserblock .browser-branch label {
2449 div.browserblock .browser-branch label {
2448 color: #4A4A4A;
2450 color: #4A4A4A;
2449 vertical-align: text-top;
2451 vertical-align: text-top;
2450 }
2452 }
2451
2453
2452 div.browserblock .browser-header span {
2454 div.browserblock .browser-header span {
2453 margin-left: 5px;
2455 margin-left: 5px;
2454 font-weight: 700;
2456 font-weight: 700;
2455 }
2457 }
2456
2458
2457 div.browserblock .browser-search {
2459 div.browserblock .browser-search {
2458 clear: both;
2460 clear: both;
2459 padding: 8px 8px 0px 5px;
2461 padding: 8px 8px 0px 5px;
2460 height: 20px;
2462 height: 20px;
2461 }
2463 }
2462
2464
2463 div.browserblock #node_filter_box {
2465 div.browserblock #node_filter_box {
2464
2466
2465 }
2467 }
2466
2468
2467 div.browserblock .search_activate {
2469 div.browserblock .search_activate {
2468 float: left
2470 float: left
2469 }
2471 }
2470
2472
2471 div.browserblock .add_node {
2473 div.browserblock .add_node {
2472 float: left;
2474 float: left;
2473 padding-left: 5px;
2475 padding-left: 5px;
2474 }
2476 }
2475
2477
2476 div.browserblock .search_activate a:hover,div.browserblock .add_node a:hover
2478 div.browserblock .search_activate a:hover,div.browserblock .add_node a:hover
2477 {
2479 {
2478 text-decoration: none !important;
2480 text-decoration: none !important;
2479 }
2481 }
2480
2482
2481 div.browserblock .browser-body {
2483 div.browserblock .browser-body {
2482 background: #EEE;
2484 background: #EEE;
2483 border-top: 1px solid #CCC;
2485 border-top: 1px solid #CCC;
2484 }
2486 }
2485
2487
2486 table.code-browser {
2488 table.code-browser {
2487 border-collapse: collapse;
2489 border-collapse: collapse;
2488 width: 100%;
2490 width: 100%;
2489 }
2491 }
2490
2492
2491 table.code-browser tr {
2493 table.code-browser tr {
2492 margin: 3px;
2494 margin: 3px;
2493 }
2495 }
2494
2496
2495 table.code-browser thead th {
2497 table.code-browser thead th {
2496 background-color: #EEE;
2498 background-color: #EEE;
2497 height: 20px;
2499 height: 20px;
2498 font-size: 1.1em;
2500 font-size: 1.1em;
2499 font-weight: 700;
2501 font-weight: 700;
2500 text-align: left;
2502 text-align: left;
2501 padding-left: 10px;
2503 padding-left: 10px;
2502 }
2504 }
2503
2505
2504 table.code-browser tbody td {
2506 table.code-browser tbody td {
2505 padding-left: 10px;
2507 padding-left: 10px;
2506 height: 20px;
2508 height: 20px;
2507 }
2509 }
2508
2510
2509 table.code-browser .browser-file {
2511 table.code-browser .browser-file {
2510 background: url("../images/icons/document_16.png") no-repeat scroll 3px;
2512 background: url("../images/icons/document_16.png") no-repeat scroll 3px;
2511 height: 16px;
2513 height: 16px;
2512 padding-left: 20px;
2514 padding-left: 20px;
2513 text-align: left;
2515 text-align: left;
2514 }
2516 }
2515 .diffblock .changeset_header {
2517 .diffblock .changeset_header {
2516 height: 16px;
2518 height: 16px;
2517 }
2519 }
2518 .diffblock .changeset_file {
2520 .diffblock .changeset_file {
2519 background: url("../images/icons/file.png") no-repeat scroll 3px;
2521 background: url("../images/icons/file.png") no-repeat scroll 3px;
2520 text-align: left;
2522 text-align: left;
2521 float: left;
2523 float: left;
2522 padding: 2px 0px 2px 22px;
2524 padding: 2px 0px 2px 22px;
2523 }
2525 }
2524 .diffblock .diff-menu-wrapper{
2526 .diffblock .diff-menu-wrapper{
2525 float: left;
2527 float: left;
2526 }
2528 }
2527
2529
2528 .diffblock .diff-menu{
2530 .diffblock .diff-menu{
2529 position: absolute;
2531 position: absolute;
2530 background: none repeat scroll 0 0 #FFFFFF;
2532 background: none repeat scroll 0 0 #FFFFFF;
2531 border-color: #003367 #666666 #666666;
2533 border-color: #003367 #666666 #666666;
2532 border-right: 1px solid #666666;
2534 border-right: 1px solid #666666;
2533 border-style: solid solid solid;
2535 border-style: solid solid solid;
2534 border-width: 1px;
2536 border-width: 1px;
2535 box-shadow: 2px 8px 4px rgba(0, 0, 0, 0.2);
2537 box-shadow: 2px 8px 4px rgba(0, 0, 0, 0.2);
2536 margin-top:5px;
2538 margin-top:5px;
2537 margin-left:1px;
2539 margin-left:1px;
2538
2540
2539 }
2541 }
2540
2542
2541 .diffblock .diff-menu ul li {
2543 .diffblock .diff-menu ul li {
2542 padding: 0px 0px 0px 0px !important;
2544 padding: 0px 0px 0px 0px !important;
2543 }
2545 }
2544 .diffblock .diff-menu ul li a{
2546 .diffblock .diff-menu ul li a{
2545 display: block;
2547 display: block;
2546 padding: 3px 8px 3px 8px !important;
2548 padding: 3px 8px 3px 8px !important;
2547 }
2549 }
2548 .diffblock .diff-menu ul li a:hover{
2550 .diffblock .diff-menu ul li a:hover{
2549 text-decoration: none;
2551 text-decoration: none;
2550 background-color: #EEEEEE;
2552 background-color: #EEEEEE;
2551 }
2553 }
2552 table.code-browser .browser-dir {
2554 table.code-browser .browser-dir {
2553 background: url("../images/icons/folder_16.png") no-repeat scroll 3px;
2555 background: url("../images/icons/folder_16.png") no-repeat scroll 3px;
2554 height: 16px;
2556 height: 16px;
2555 padding-left: 20px;
2557 padding-left: 20px;
2556 text-align: left;
2558 text-align: left;
2557 }
2559 }
2558
2560
2559 .box .search {
2561 .box .search {
2560 clear: both;
2562 clear: both;
2561 overflow: hidden;
2563 overflow: hidden;
2562 margin: 0;
2564 margin: 0;
2563 padding: 0 20px 10px;
2565 padding: 0 20px 10px;
2564 }
2566 }
2565
2567
2566 .box .search div.search_path {
2568 .box .search div.search_path {
2567 background: none repeat scroll 0 0 #EEE;
2569 background: none repeat scroll 0 0 #EEE;
2568 border: 1px solid #CCC;
2570 border: 1px solid #CCC;
2569 color: blue;
2571 color: blue;
2570 margin-bottom: 10px;
2572 margin-bottom: 10px;
2571 padding: 10px 0;
2573 padding: 10px 0;
2572 }
2574 }
2573
2575
2574 .box .search div.search_path div.link {
2576 .box .search div.search_path div.link {
2575 font-weight: 700;
2577 font-weight: 700;
2576 margin-left: 25px;
2578 margin-left: 25px;
2577 }
2579 }
2578
2580
2579 .box .search div.search_path div.link a {
2581 .box .search div.search_path div.link a {
2580 color: #003367;
2582 color: #003367;
2581 cursor: pointer;
2583 cursor: pointer;
2582 text-decoration: none;
2584 text-decoration: none;
2583 }
2585 }
2584
2586
2585 #path_unlock {
2587 #path_unlock {
2586 color: red;
2588 color: red;
2587 font-size: 1.2em;
2589 font-size: 1.2em;
2588 padding-left: 4px;
2590 padding-left: 4px;
2589 }
2591 }
2590
2592
2591 .info_box span {
2593 .info_box span {
2592 margin-left: 3px;
2594 margin-left: 3px;
2593 margin-right: 3px;
2595 margin-right: 3px;
2594 }
2596 }
2595
2597
2596 .info_box .rev {
2598 .info_box .rev {
2597 color: #003367;
2599 color: #003367;
2598 font-size: 1.6em;
2600 font-size: 1.6em;
2599 font-weight: bold;
2601 font-weight: bold;
2600 vertical-align: sub;
2602 vertical-align: sub;
2601 }
2603 }
2602
2604
2603 .info_box input#at_rev,.info_box input#size {
2605 .info_box input#at_rev,.info_box input#size {
2604 background: #FFF;
2606 background: #FFF;
2605 border-top: 1px solid #b3b3b3;
2607 border-top: 1px solid #b3b3b3;
2606 border-left: 1px solid #b3b3b3;
2608 border-left: 1px solid #b3b3b3;
2607 border-right: 1px solid #eaeaea;
2609 border-right: 1px solid #eaeaea;
2608 border-bottom: 1px solid #eaeaea;
2610 border-bottom: 1px solid #eaeaea;
2609 color: #000;
2611 color: #000;
2610 font-size: 12px;
2612 font-size: 12px;
2611 margin: 0;
2613 margin: 0;
2612 padding: 1px 5px 1px;
2614 padding: 1px 5px 1px;
2613 }
2615 }
2614
2616
2615 .info_box input#view {
2617 .info_box input#view {
2616 text-align: center;
2618 text-align: center;
2617 padding: 4px 3px 2px 2px;
2619 padding: 4px 3px 2px 2px;
2618 }
2620 }
2619
2621
2620 .yui-overlay,.yui-panel-container {
2622 .yui-overlay,.yui-panel-container {
2621 visibility: hidden;
2623 visibility: hidden;
2622 position: absolute;
2624 position: absolute;
2623 z-index: 2;
2625 z-index: 2;
2624 }
2626 }
2625
2627
2626 .yui-tt {
2628 .yui-tt {
2627 visibility: hidden;
2629 visibility: hidden;
2628 position: absolute;
2630 position: absolute;
2629 color: #666;
2631 color: #666;
2630 background-color: #FFF;
2632 background-color: #FFF;
2631 border: 2px solid #003367;
2633 border: 2px solid #003367;
2632 font: 100% sans-serif;
2634 font: 100% sans-serif;
2633 width: auto;
2635 width: auto;
2634 opacity: 1px;
2636 opacity: 1px;
2635 padding: 8px;
2637 padding: 8px;
2636 white-space: pre-wrap;
2638 white-space: pre-wrap;
2637 -webkit-border-radius: 8px 8px 8px 8px;
2639 -webkit-border-radius: 8px 8px 8px 8px;
2638 -khtml-border-radius: 8px 8px 8px 8px;
2640 -khtml-border-radius: 8px 8px 8px 8px;
2639 -moz-border-radius: 8px 8px 8px 8px;
2641 -moz-border-radius: 8px 8px 8px 8px;
2640 border-radius: 8px 8px 8px 8px;
2642 border-radius: 8px 8px 8px 8px;
2641 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
2643 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
2642 }
2644 }
2643
2645
2644 .ac {
2646 .ac {
2645 vertical-align: top;
2647 vertical-align: top;
2646 }
2648 }
2647
2649
2648 .ac .yui-ac {
2650 .ac .yui-ac {
2649 position: relative;
2651 position: relative;
2650 font-size: 100%;
2652 font-size: 100%;
2651 }
2653 }
2652
2654
2653 .ac .perm_ac {
2655 .ac .perm_ac {
2654 width: 15em;
2656 width: 15em;
2655 }
2657 }
2656
2658
2657 .ac .yui-ac-input {
2659 .ac .yui-ac-input {
2658 width: 100%;
2660 width: 100%;
2659 }
2661 }
2660
2662
2661 .ac .yui-ac-container {
2663 .ac .yui-ac-container {
2662 position: absolute;
2664 position: absolute;
2663 top: 1.6em;
2665 top: 1.6em;
2664 width: 100%;
2666 width: 100%;
2665 }
2667 }
2666
2668
2667 .ac .yui-ac-content {
2669 .ac .yui-ac-content {
2668 position: absolute;
2670 position: absolute;
2669 width: 100%;
2671 width: 100%;
2670 border: 1px solid gray;
2672 border: 1px solid gray;
2671 background: #fff;
2673 background: #fff;
2672 overflow: hidden;
2674 overflow: hidden;
2673 z-index: 9050;
2675 z-index: 9050;
2674 }
2676 }
2675
2677
2676 .ac .yui-ac-shadow {
2678 .ac .yui-ac-shadow {
2677 position: absolute;
2679 position: absolute;
2678 width: 100%;
2680 width: 100%;
2679 background: #000;
2681 background: #000;
2680 -moz-opacity: 0.1px;
2682 -moz-opacity: 0.1px;
2681 opacity: .10;
2683 opacity: .10;
2682 filter: alpha(opacity = 10);
2684 filter: alpha(opacity = 10);
2683 z-index: 9049;
2685 z-index: 9049;
2684 margin: .3em;
2686 margin: .3em;
2685 }
2687 }
2686
2688
2687 .ac .yui-ac-content ul {
2689 .ac .yui-ac-content ul {
2688 width: 100%;
2690 width: 100%;
2689 margin: 0;
2691 margin: 0;
2690 padding: 0;
2692 padding: 0;
2691 }
2693 }
2692
2694
2693 .ac .yui-ac-content li {
2695 .ac .yui-ac-content li {
2694 cursor: default;
2696 cursor: default;
2695 white-space: nowrap;
2697 white-space: nowrap;
2696 margin: 0;
2698 margin: 0;
2697 padding: 2px 5px;
2699 padding: 2px 5px;
2698 }
2700 }
2699
2701
2700 .ac .yui-ac-content li.yui-ac-prehighlight {
2702 .ac .yui-ac-content li.yui-ac-prehighlight {
2701 background: #B3D4FF;
2703 background: #B3D4FF;
2702 }
2704 }
2703
2705
2704 .ac .yui-ac-content li.yui-ac-highlight {
2706 .ac .yui-ac-content li.yui-ac-highlight {
2705 background: #556CB5;
2707 background: #556CB5;
2706 color: #FFF;
2708 color: #FFF;
2707 }
2709 }
2708
2710
2709 .follow {
2711 .follow {
2710 background: url("../images/icons/heart_add.png") no-repeat scroll 3px;
2712 background: url("../images/icons/heart_add.png") no-repeat scroll 3px;
2711 height: 16px;
2713 height: 16px;
2712 width: 20px;
2714 width: 20px;
2713 cursor: pointer;
2715 cursor: pointer;
2714 display: block;
2716 display: block;
2715 float: right;
2717 float: right;
2716 margin-top: 2px;
2718 margin-top: 2px;
2717 }
2719 }
2718
2720
2719 .following {
2721 .following {
2720 background: url("../images/icons/heart_delete.png") no-repeat scroll 3px;
2722 background: url("../images/icons/heart_delete.png") no-repeat scroll 3px;
2721 height: 16px;
2723 height: 16px;
2722 width: 20px;
2724 width: 20px;
2723 cursor: pointer;
2725 cursor: pointer;
2724 display: block;
2726 display: block;
2725 float: right;
2727 float: right;
2726 margin-top: 2px;
2728 margin-top: 2px;
2727 }
2729 }
2728
2730
2729 .currently_following {
2731 .currently_following {
2730 padding-left: 10px;
2732 padding-left: 10px;
2731 padding-bottom: 5px;
2733 padding-bottom: 5px;
2732 }
2734 }
2733
2735
2734 .add_icon {
2736 .add_icon {
2735 background: url("../images/icons/add.png") no-repeat scroll 3px;
2737 background: url("../images/icons/add.png") no-repeat scroll 3px;
2736 padding-left: 20px;
2738 padding-left: 20px;
2737 padding-top: 0px;
2739 padding-top: 0px;
2738 text-align: left;
2740 text-align: left;
2739 }
2741 }
2740
2742
2741 .edit_icon {
2743 .edit_icon {
2742 background: url("../images/icons/folder_edit.png") no-repeat scroll 3px;
2744 background: url("../images/icons/folder_edit.png") no-repeat scroll 3px;
2743 padding-left: 20px;
2745 padding-left: 20px;
2744 padding-top: 0px;
2746 padding-top: 0px;
2745 text-align: left;
2747 text-align: left;
2746 }
2748 }
2747
2749
2748 .delete_icon {
2750 .delete_icon {
2749 background: url("../images/icons/delete.png") no-repeat scroll 3px;
2751 background: url("../images/icons/delete.png") no-repeat scroll 3px;
2750 padding-left: 20px;
2752 padding-left: 20px;
2751 padding-top: 0px;
2753 padding-top: 0px;
2752 text-align: left;
2754 text-align: left;
2753 }
2755 }
2754
2756
2755 .refresh_icon {
2757 .refresh_icon {
2756 background: url("../images/icons/arrow_refresh.png") no-repeat scroll
2758 background: url("../images/icons/arrow_refresh.png") no-repeat scroll
2757 3px;
2759 3px;
2758 padding-left: 20px;
2760 padding-left: 20px;
2759 padding-top: 0px;
2761 padding-top: 0px;
2760 text-align: left;
2762 text-align: left;
2761 }
2763 }
2762
2764
2763 .pull_icon {
2765 .pull_icon {
2764 background: url("../images/icons/connect.png") no-repeat scroll 3px;
2766 background: url("../images/icons/connect.png") no-repeat scroll 3px;
2765 padding-left: 20px;
2767 padding-left: 20px;
2766 padding-top: 0px;
2768 padding-top: 0px;
2767 text-align: left;
2769 text-align: left;
2768 }
2770 }
2769
2771
2770 .rss_icon {
2772 .rss_icon {
2771 background: url("../images/icons/rss_16.png") no-repeat scroll 3px;
2773 background: url("../images/icons/rss_16.png") no-repeat scroll 3px;
2772 padding-left: 20px;
2774 padding-left: 20px;
2773 padding-top: 4px;
2775 padding-top: 4px;
2774 text-align: left;
2776 text-align: left;
2775 font-size: 8px
2777 font-size: 8px
2776 }
2778 }
2777
2779
2778 .atom_icon {
2780 .atom_icon {
2779 background: url("../images/icons/atom.png") no-repeat scroll 3px;
2781 background: url("../images/icons/atom.png") no-repeat scroll 3px;
2780 padding-left: 20px;
2782 padding-left: 20px;
2781 padding-top: 4px;
2783 padding-top: 4px;
2782 text-align: left;
2784 text-align: left;
2783 font-size: 8px
2785 font-size: 8px
2784 }
2786 }
2785
2787
2786 .archive_icon {
2788 .archive_icon {
2787 background: url("../images/icons/compress.png") no-repeat scroll 3px;
2789 background: url("../images/icons/compress.png") no-repeat scroll 3px;
2788 padding-left: 20px;
2790 padding-left: 20px;
2789 text-align: left;
2791 text-align: left;
2790 padding-top: 1px;
2792 padding-top: 1px;
2791 }
2793 }
2792
2794
2793 .start_following_icon {
2795 .start_following_icon {
2794 background: url("../images/icons/heart_add.png") no-repeat scroll 3px;
2796 background: url("../images/icons/heart_add.png") no-repeat scroll 3px;
2795 padding-left: 20px;
2797 padding-left: 20px;
2796 text-align: left;
2798 text-align: left;
2797 padding-top: 0px;
2799 padding-top: 0px;
2798 }
2800 }
2799
2801
2800 .stop_following_icon {
2802 .stop_following_icon {
2801 background: url("../images/icons/heart_delete.png") no-repeat scroll 3px;
2803 background: url("../images/icons/heart_delete.png") no-repeat scroll 3px;
2802 padding-left: 20px;
2804 padding-left: 20px;
2803 text-align: left;
2805 text-align: left;
2804 padding-top: 0px;
2806 padding-top: 0px;
2805 }
2807 }
2806
2808
2807 .action_button {
2809 .action_button {
2808 border: 0;
2810 border: 0;
2809 display: inline;
2811 display: inline;
2810 }
2812 }
2811
2813
2812 .action_button:hover {
2814 .action_button:hover {
2813 border: 0;
2815 border: 0;
2814 text-decoration: underline;
2816 text-decoration: underline;
2815 cursor: pointer;
2817 cursor: pointer;
2816 }
2818 }
2817
2819
2818 #switch_repos {
2820 #switch_repos {
2819 position: absolute;
2821 position: absolute;
2820 height: 25px;
2822 height: 25px;
2821 z-index: 1;
2823 z-index: 1;
2822 }
2824 }
2823
2825
2824 #switch_repos select {
2826 #switch_repos select {
2825 min-width: 150px;
2827 min-width: 150px;
2826 max-height: 250px;
2828 max-height: 250px;
2827 z-index: 1;
2829 z-index: 1;
2828 }
2830 }
2829
2831
2830 .breadcrumbs {
2832 .breadcrumbs {
2831 border: medium none;
2833 border: medium none;
2832 color: #FFF;
2834 color: #FFF;
2833 float: left;
2835 float: left;
2834 text-transform: uppercase;
2836 text-transform: uppercase;
2835 font-weight: 700;
2837 font-weight: 700;
2836 font-size: 14px;
2838 font-size: 14px;
2837 margin: 0;
2839 margin: 0;
2838 padding: 11px 0 11px 10px;
2840 padding: 11px 0 11px 10px;
2839 }
2841 }
2840
2842
2841 .breadcrumbs a {
2843 .breadcrumbs a {
2842 color: #FFF;
2844 color: #FFF;
2843 }
2845 }
2844
2846
2845 .flash_msg {
2847 .flash_msg {
2846
2848
2847 }
2849 }
2848
2850
2849 .flash_msg ul {
2851 .flash_msg ul {
2850
2852
2851 }
2853 }
2852
2854
2853 .error_msg {
2855 .error_msg {
2854 background-color: #c43c35;
2856 background-color: #c43c35;
2855 background-repeat: repeat-x;
2857 background-repeat: repeat-x;
2856 background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b),
2858 background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b),
2857 to(#c43c35) );
2859 to(#c43c35) );
2858 background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
2860 background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
2859 background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
2861 background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
2860 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b),
2862 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b),
2861 color-stop(100%, #c43c35) );
2863 color-stop(100%, #c43c35) );
2862 background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
2864 background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
2863 background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
2865 background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
2864 background-image: linear-gradient(top, #ee5f5b, #c43c35);
2866 background-image: linear-gradient(top, #ee5f5b, #c43c35);
2865 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b',
2867 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b',
2866 endColorstr='#c43c35', GradientType=0 );
2868 endColorstr='#c43c35', GradientType=0 );
2867 border-color: #c43c35 #c43c35 #882a25;
2869 border-color: #c43c35 #c43c35 #882a25;
2868 }
2870 }
2869
2871
2870 .warning_msg {
2872 .warning_msg {
2871 color: #404040 !important;
2873 color: #404040 !important;
2872 background-color: #eedc94;
2874 background-color: #eedc94;
2873 background-repeat: repeat-x;
2875 background-repeat: repeat-x;
2874 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
2876 background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1),
2875 to(#eedc94) );
2877 to(#eedc94) );
2876 background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
2878 background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
2877 background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
2879 background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
2878 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1),
2880 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1),
2879 color-stop(100%, #eedc94) );
2881 color-stop(100%, #eedc94) );
2880 background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
2882 background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
2881 background-image: -o-linear-gradient(top, #fceec1, #eedc94);
2883 background-image: -o-linear-gradient(top, #fceec1, #eedc94);
2882 background-image: linear-gradient(top, #fceec1, #eedc94);
2884 background-image: linear-gradient(top, #fceec1, #eedc94);
2883 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1',
2885 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1',
2884 endColorstr='#eedc94', GradientType=0 );
2886 endColorstr='#eedc94', GradientType=0 );
2885 border-color: #eedc94 #eedc94 #e4c652;
2887 border-color: #eedc94 #eedc94 #e4c652;
2886 }
2888 }
2887
2889
2888 .success_msg {
2890 .success_msg {
2889 background-color: #57a957;
2891 background-color: #57a957;
2890 background-repeat: repeat-x !important;
2892 background-repeat: repeat-x !important;
2891 background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462),
2893 background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462),
2892 to(#57a957) );
2894 to(#57a957) );
2893 background-image: -moz-linear-gradient(top, #62c462, #57a957);
2895 background-image: -moz-linear-gradient(top, #62c462, #57a957);
2894 background-image: -ms-linear-gradient(top, #62c462, #57a957);
2896 background-image: -ms-linear-gradient(top, #62c462, #57a957);
2895 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462),
2897 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462),
2896 color-stop(100%, #57a957) );
2898 color-stop(100%, #57a957) );
2897 background-image: -webkit-linear-gradient(top, #62c462, #57a957);
2899 background-image: -webkit-linear-gradient(top, #62c462, #57a957);
2898 background-image: -o-linear-gradient(top, #62c462, #57a957);
2900 background-image: -o-linear-gradient(top, #62c462, #57a957);
2899 background-image: linear-gradient(top, #62c462, #57a957);
2901 background-image: linear-gradient(top, #62c462, #57a957);
2900 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462',
2902 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462',
2901 endColorstr='#57a957', GradientType=0 );
2903 endColorstr='#57a957', GradientType=0 );
2902 border-color: #57a957 #57a957 #3d773d;
2904 border-color: #57a957 #57a957 #3d773d;
2903 }
2905 }
2904
2906
2905 .notice_msg {
2907 .notice_msg {
2906 background-color: #339bb9;
2908 background-color: #339bb9;
2907 background-repeat: repeat-x;
2909 background-repeat: repeat-x;
2908 background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de),
2910 background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de),
2909 to(#339bb9) );
2911 to(#339bb9) );
2910 background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
2912 background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
2911 background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
2913 background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
2912 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de),
2914 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de),
2913 color-stop(100%, #339bb9) );
2915 color-stop(100%, #339bb9) );
2914 background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
2916 background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
2915 background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
2917 background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
2916 background-image: linear-gradient(top, #5bc0de, #339bb9);
2918 background-image: linear-gradient(top, #5bc0de, #339bb9);
2917 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de',
2919 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de',
2918 endColorstr='#339bb9', GradientType=0 );
2920 endColorstr='#339bb9', GradientType=0 );
2919 border-color: #339bb9 #339bb9 #22697d;
2921 border-color: #339bb9 #339bb9 #22697d;
2920 }
2922 }
2921
2923
2922 .success_msg,.error_msg,.notice_msg,.warning_msg {
2924 .success_msg,.error_msg,.notice_msg,.warning_msg {
2923 font-size: 12px;
2925 font-size: 12px;
2924 font-weight: 700;
2926 font-weight: 700;
2925 min-height: 14px;
2927 min-height: 14px;
2926 line-height: 14px;
2928 line-height: 14px;
2927 margin-bottom: 10px;
2929 margin-bottom: 10px;
2928 margin-top: 0;
2930 margin-top: 0;
2929 display: block;
2931 display: block;
2930 overflow: auto;
2932 overflow: auto;
2931 padding: 6px 10px 6px 10px;
2933 padding: 6px 10px 6px 10px;
2932 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2934 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2933 position: relative;
2935 position: relative;
2934 color: #FFF;
2936 color: #FFF;
2935 border-width: 1px;
2937 border-width: 1px;
2936 border-style: solid;
2938 border-style: solid;
2937 -webkit-border-radius: 4px;
2939 -webkit-border-radius: 4px;
2938 -moz-border-radius: 4px;
2940 -moz-border-radius: 4px;
2939 border-radius: 4px;
2941 border-radius: 4px;
2940 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2942 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2941 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2943 -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2942 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2944 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2943 }
2945 }
2944
2946
2945 #msg_close {
2947 #msg_close {
2946 background: transparent url("../icons/cross_grey_small.png") no-repeat
2948 background: transparent url("../icons/cross_grey_small.png") no-repeat
2947 scroll 0 0;
2949 scroll 0 0;
2948 cursor: pointer;
2950 cursor: pointer;
2949 height: 16px;
2951 height: 16px;
2950 position: absolute;
2952 position: absolute;
2951 right: 5px;
2953 right: 5px;
2952 top: 5px;
2954 top: 5px;
2953 width: 16px;
2955 width: 16px;
2954 }
2956 }
2955
2957
2956 div#legend_container table,div#legend_choices table {
2958 div#legend_container table,div#legend_choices table {
2957 width: auto !important;
2959 width: auto !important;
2958 }
2960 }
2959
2961
2960 table#permissions_manage {
2962 table#permissions_manage {
2961 width: 0 !important;
2963 width: 0 !important;
2962 }
2964 }
2963
2965
2964 table#permissions_manage span.private_repo_msg {
2966 table#permissions_manage span.private_repo_msg {
2965 font-size: 0.8em;
2967 font-size: 0.8em;
2966 opacity: 0.6px;
2968 opacity: 0.6px;
2967 }
2969 }
2968
2970
2969 table#permissions_manage td.private_repo_msg {
2971 table#permissions_manage td.private_repo_msg {
2970 font-size: 0.8em;
2972 font-size: 0.8em;
2971 }
2973 }
2972
2974
2973 table#permissions_manage tr#add_perm_input td {
2975 table#permissions_manage tr#add_perm_input td {
2974 vertical-align: middle;
2976 vertical-align: middle;
2975 }
2977 }
2976
2978
2977 div.gravatar {
2979 div.gravatar {
2978 background-color: #FFF;
2980 background-color: #FFF;
2979 float: left;
2981 float: left;
2980 margin-right: 0.7em;
2982 margin-right: 0.7em;
2981 padding: 1px 1px 1px 1px;
2983 padding: 1px 1px 1px 1px;
2982 line-height:0;
2984 line-height:0;
2983 -webkit-border-radius: 3px;
2985 -webkit-border-radius: 3px;
2984 -khtml-border-radius: 3px;
2986 -khtml-border-radius: 3px;
2985 -moz-border-radius: 3px;
2987 -moz-border-radius: 3px;
2986 border-radius: 3px;
2988 border-radius: 3px;
2987 }
2989 }
2988
2990
2989 div.gravatar img {
2991 div.gravatar img {
2990 -webkit-border-radius: 2px;
2992 -webkit-border-radius: 2px;
2991 -khtml-border-radius: 2px;
2993 -khtml-border-radius: 2px;
2992 -moz-border-radius: 2px;
2994 -moz-border-radius: 2px;
2993 border-radius: 2px;
2995 border-radius: 2px;
2994 }
2996 }
2995
2997
2996 #header,#content,#footer {
2998 #header,#content,#footer {
2997 min-width: 978px;
2999 min-width: 978px;
2998 }
3000 }
2999
3001
3000 #content {
3002 #content {
3001 clear: both;
3003 clear: both;
3002 overflow: hidden;
3004 overflow: hidden;
3003 padding: 14px 10px;
3005 padding: 14px 10px;
3004 }
3006 }
3005
3007
3006 #content div.box div.title div.search {
3008 #content div.box div.title div.search {
3007
3009
3008 border-left: 1px solid #316293;
3010 border-left: 1px solid #316293;
3009 }
3011 }
3010
3012
3011 #content div.box div.title div.search div.input input {
3013 #content div.box div.title div.search div.input input {
3012 border: 1px solid #316293;
3014 border: 1px solid #316293;
3013 }
3015 }
3014
3016
3015 .ui-btn{
3017 .ui-btn{
3016 color: #515151;
3018 color: #515151;
3017 background-color: #DADADA;
3019 background-color: #DADADA;
3018 background-repeat: repeat-x;
3020 background-repeat: repeat-x;
3019 background-image: -khtml-gradient(linear, left top, left bottom, from(#F4F4F4),to(#DADADA) );
3021 background-image: -khtml-gradient(linear, left top, left bottom, from(#F4F4F4),to(#DADADA) );
3020 background-image: -moz-linear-gradient(top, #F4F4F4, #DADADA);
3022 background-image: -moz-linear-gradient(top, #F4F4F4, #DADADA);
3021 background-image: -ms-linear-gradient(top, #F4F4F4, #DADADA);
3023 background-image: -ms-linear-gradient(top, #F4F4F4, #DADADA);
3022 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F4F4F4),color-stop(100%, #DADADA) );
3024 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F4F4F4),color-stop(100%, #DADADA) );
3023 background-image: -webkit-linear-gradient(top, #F4F4F4, #DADADA) );
3025 background-image: -webkit-linear-gradient(top, #F4F4F4, #DADADA) );
3024 background-image: -o-linear-gradient(top, #F4F4F4, #DADADA) );
3026 background-image: -o-linear-gradient(top, #F4F4F4, #DADADA) );
3025 background-image: linear-gradient(top, #F4F4F4, #DADADA);
3027 background-image: linear-gradient(top, #F4F4F4, #DADADA);
3026 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F4F4F4', endColorstr='#DADADA', GradientType=0);
3028 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F4F4F4', endColorstr='#DADADA', GradientType=0);
3027
3029
3028 border-top: 1px solid #DDD;
3030 border-top: 1px solid #DDD;
3029 border-left: 1px solid #c6c6c6;
3031 border-left: 1px solid #c6c6c6;
3030 border-right: 1px solid #DDD;
3032 border-right: 1px solid #DDD;
3031 border-bottom: 1px solid #c6c6c6;
3033 border-bottom: 1px solid #c6c6c6;
3032 color: #515151;
3034 color: #515151;
3033 outline: none;
3035 outline: none;
3034 margin: 0px 3px 3px 0px;
3036 margin: 0px 3px 3px 0px;
3035 -webkit-border-radius: 4px 4px 4px 4px !important;
3037 -webkit-border-radius: 4px 4px 4px 4px !important;
3036 -khtml-border-radius: 4px 4px 4px 4px !important;
3038 -khtml-border-radius: 4px 4px 4px 4px !important;
3037 -moz-border-radius: 4px 4px 4px 4px !important;
3039 -moz-border-radius: 4px 4px 4px 4px !important;
3038 border-radius: 4px 4px 4px 4px !important;
3040 border-radius: 4px 4px 4px 4px !important;
3039 cursor: pointer !important;
3041 cursor: pointer !important;
3040 padding: 3px 3px 3px 3px;
3042 padding: 3px 3px 3px 3px;
3041 background-position: 0 -15px;
3043 background-position: 0 -15px;
3042
3044
3043 }
3045 }
3044 .ui-btn.xsmall{
3046 .ui-btn.xsmall{
3045 padding: 1px 2px 1px 1px;
3047 padding: 1px 2px 1px 1px;
3046 }
3048 }
3047 .ui-btn.clone{
3049 .ui-btn.clone{
3048 padding: 5px 2px 6px 1px;
3050 padding: 5px 2px 6px 1px;
3049 margin: 0px -4px 3px 0px;
3051 margin: 0px -4px 3px 0px;
3050 -webkit-border-radius: 4px 0px 0px 4px !important;
3052 -webkit-border-radius: 4px 0px 0px 4px !important;
3051 -khtml-border-radius: 4px 0px 0px 4px !important;
3053 -khtml-border-radius: 4px 0px 0px 4px !important;
3052 -moz-border-radius: 4px 0px 0px 4px !important;
3054 -moz-border-radius: 4px 0px 0px 4px !important;
3053 border-radius: 4px 0px 0px 4px !important;
3055 border-radius: 4px 0px 0px 4px !important;
3054 width: 100px;
3056 width: 100px;
3055 text-align: center;
3057 text-align: center;
3056 float: left;
3058 float: left;
3057 position: absolute;
3059 position: absolute;
3058 }
3060 }
3059 .ui-btn:focus {
3061 .ui-btn:focus {
3060 outline: none;
3062 outline: none;
3061 }
3063 }
3062 .ui-btn:hover{
3064 .ui-btn:hover{
3063 background-position: 0 0px;
3065 background-position: 0 0px;
3064 text-decoration: none;
3066 text-decoration: none;
3065 color: #515151;
3067 color: #515151;
3066 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 0 3px #FFFFFF !important;
3068 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 0 3px #FFFFFF !important;
3067 }
3069 }
3068
3070
3069 .ui-btn.red{
3071 .ui-btn.red{
3070 color:#fff;
3072 color:#fff;
3071 background-color: #c43c35;
3073 background-color: #c43c35;
3072 background-repeat: repeat-x;
3074 background-repeat: repeat-x;
3073 background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
3075 background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
3074 background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
3076 background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
3075 background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
3077 background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
3076 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
3078 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
3077 background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
3079 background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
3078 background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
3080 background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
3079 background-image: linear-gradient(top, #ee5f5b, #c43c35);
3081 background-image: linear-gradient(top, #ee5f5b, #c43c35);
3080 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
3082 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
3081 border-color: #c43c35 #c43c35 #882a25;
3083 border-color: #c43c35 #c43c35 #882a25;
3082 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3084 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3083 }
3085 }
3084
3086
3085
3087
3086 .ui-btn.blue{
3088 .ui-btn.blue{
3087 background-color: #339bb9;
3089 background-color: #339bb9;
3088 background-repeat: repeat-x;
3090 background-repeat: repeat-x;
3089 background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
3091 background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
3090 background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
3092 background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
3091 background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
3093 background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
3092 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
3094 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
3093 background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
3095 background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
3094 background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
3096 background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
3095 background-image: linear-gradient(top, #5bc0de, #339bb9);
3097 background-image: linear-gradient(top, #5bc0de, #339bb9);
3096 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
3098 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
3097 border-color: #339bb9 #339bb9 #22697d;
3099 border-color: #339bb9 #339bb9 #22697d;
3098 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3100 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3099 }
3101 }
3100
3102
3101 .ui-btn.green{
3103 .ui-btn.green{
3102 background-color: #57a957;
3104 background-color: #57a957;
3103 background-repeat: repeat-x;
3105 background-repeat: repeat-x;
3104 background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
3106 background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
3105 background-image: -moz-linear-gradient(top, #62c462, #57a957);
3107 background-image: -moz-linear-gradient(top, #62c462, #57a957);
3106 background-image: -ms-linear-gradient(top, #62c462, #57a957);
3108 background-image: -ms-linear-gradient(top, #62c462, #57a957);
3107 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
3109 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
3108 background-image: -webkit-linear-gradient(top, #62c462, #57a957);
3110 background-image: -webkit-linear-gradient(top, #62c462, #57a957);
3109 background-image: -o-linear-gradient(top, #62c462, #57a957);
3111 background-image: -o-linear-gradient(top, #62c462, #57a957);
3110 background-image: linear-gradient(top, #62c462, #57a957);
3112 background-image: linear-gradient(top, #62c462, #57a957);
3111 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
3113 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
3112 border-color: #57a957 #57a957 #3d773d;
3114 border-color: #57a957 #57a957 #3d773d;
3113 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3115 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3114 }
3116 }
3115
3117
3116 ins,div.options a:hover {
3118 ins,div.options a:hover {
3117 text-decoration: none;
3119 text-decoration: none;
3118 }
3120 }
3119
3121
3120 img,
3122 img,
3121 #header #header-inner #quick li a:hover span.normal,
3123 #header #header-inner #quick li a:hover span.normal,
3122 #header #header-inner #quick li ul li.last,
3124 #header #header-inner #quick li ul li.last,
3123 #content div.box div.form div.fields div.field div.textarea table td table td a,
3125 #content div.box div.form div.fields div.field div.textarea table td table td a,
3124 #clone_url,
3126 #clone_url,
3125 #clone_url_id
3127 #clone_url_id
3126 {
3128 {
3127 border: none;
3129 border: none;
3128 }
3130 }
3129
3131
3130 img.icon,.right .merge img {
3132 img.icon,.right .merge img {
3131 vertical-align: bottom;
3133 vertical-align: bottom;
3132 }
3134 }
3133
3135
3134 #header ul#logged-user,#content div.box div.title ul.links,
3136 #header ul#logged-user,#content div.box div.title ul.links,
3135 #content div.box div.message div.dismiss,
3137 #content div.box div.message div.dismiss,
3136 #content div.box div.traffic div.legend ul
3138 #content div.box div.traffic div.legend ul
3137 {
3139 {
3138 float: right;
3140 float: right;
3139 margin: 0;
3141 margin: 0;
3140 padding: 0;
3142 padding: 0;
3141 }
3143 }
3142
3144
3143 #header #header-inner #home,#header #header-inner #logo,
3145 #header #header-inner #home,#header #header-inner #logo,
3144 #content div.box ul.left,#content div.box ol.left,
3146 #content div.box ul.left,#content div.box ol.left,
3145 #content div.box div.pagination-left,div#commit_history,
3147 #content div.box div.pagination-left,div#commit_history,
3146 div#legend_data,div#legend_container,div#legend_choices
3148 div#legend_data,div#legend_container,div#legend_choices
3147 {
3149 {
3148 float: left;
3150 float: left;
3149 }
3151 }
3150
3152
3151 #header #header-inner #quick li:hover ul ul,
3153 #header #header-inner #quick li:hover ul ul,
3152 #header #header-inner #quick li:hover ul ul ul,
3154 #header #header-inner #quick li:hover ul ul ul,
3153 #header #header-inner #quick li:hover ul ul ul ul,
3155 #header #header-inner #quick li:hover ul ul ul ul,
3154 #content #left #menu ul.closed,#content #left #menu li ul.collapsed,.yui-tt-shadow
3156 #content #left #menu ul.closed,#content #left #menu li ul.collapsed,.yui-tt-shadow
3155 {
3157 {
3156 display: none;
3158 display: none;
3157 }
3159 }
3158
3160
3159 #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
3161 #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
3160 {
3162 {
3161 display: block;
3163 display: block;
3162 }
3164 }
3163
3165
3164 #content div.graph {
3166 #content div.graph {
3165 padding: 0 10px 10px;
3167 padding: 0 10px 10px;
3166 }
3168 }
3167
3169
3168 #content div.box div.title ul.links li a:hover,#content div.box div.title ul.links li.ui-tabs-selected a
3170 #content div.box div.title ul.links li a:hover,#content div.box div.title ul.links li.ui-tabs-selected a
3169 {
3171 {
3170 color: #bfe3ff;
3172 color: #bfe3ff;
3171 }
3173 }
3172
3174
3173 #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
3175 #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
3174 {
3176 {
3175 margin: 10px 24px 10px 44px;
3177 margin: 10px 24px 10px 44px;
3176 }
3178 }
3177
3179
3178 #content div.box div.form,#content div.box div.table,#content div.box div.traffic
3180 #content div.box div.form,#content div.box div.table,#content div.box div.traffic
3179 {
3181 {
3180 clear: both;
3182 clear: both;
3181 overflow: hidden;
3183 overflow: hidden;
3182 margin: 0;
3184 margin: 0;
3183 padding: 0 20px 10px;
3185 padding: 0 20px 10px;
3184 }
3186 }
3185
3187
3186 #content div.box div.form div.fields,#login div.form,#login div.form div.fields,#register div.form,#register div.form div.fields
3188 #content div.box div.form div.fields,#login div.form,#login div.form div.fields,#register div.form,#register div.form div.fields
3187 {
3189 {
3188 clear: both;
3190 clear: both;
3189 overflow: hidden;
3191 overflow: hidden;
3190 margin: 0;
3192 margin: 0;
3191 padding: 0;
3193 padding: 0;
3192 }
3194 }
3193
3195
3194 #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
3196 #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
3195 {
3197 {
3196 height: 1%;
3198 height: 1%;
3197 display: block;
3199 display: block;
3198 color: #363636;
3200 color: #363636;
3199 margin: 0;
3201 margin: 0;
3200 padding: 2px 0 0;
3202 padding: 2px 0 0;
3201 }
3203 }
3202
3204
3203 #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
3205 #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
3204 {
3206 {
3205 background: #FBE3E4;
3207 background: #FBE3E4;
3206 border-top: 1px solid #e1b2b3;
3208 border-top: 1px solid #e1b2b3;
3207 border-left: 1px solid #e1b2b3;
3209 border-left: 1px solid #e1b2b3;
3208 border-right: 1px solid #FBC2C4;
3210 border-right: 1px solid #FBC2C4;
3209 border-bottom: 1px solid #FBC2C4;
3211 border-bottom: 1px solid #FBC2C4;
3210 }
3212 }
3211
3213
3212 #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
3214 #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
3213 {
3215 {
3214 background: #E6EFC2;
3216 background: #E6EFC2;
3215 border-top: 1px solid #cebb98;
3217 border-top: 1px solid #cebb98;
3216 border-left: 1px solid #cebb98;
3218 border-left: 1px solid #cebb98;
3217 border-right: 1px solid #c6d880;
3219 border-right: 1px solid #c6d880;
3218 border-bottom: 1px solid #c6d880;
3220 border-bottom: 1px solid #c6d880;
3219 }
3221 }
3220
3222
3221 #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
3223 #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
3222 {
3224 {
3223 margin: 0;
3225 margin: 0;
3224 }
3226 }
3225
3227
3226 #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
3228 #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
3227 {
3229 {
3228 margin: 0 0 0 0px !important;
3230 margin: 0 0 0 0px !important;
3229 padding: 0;
3231 padding: 0;
3230 }
3232 }
3231
3233
3232 #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
3234 #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
3233 {
3235 {
3234 margin: 0 0 0 200px;
3236 margin: 0 0 0 200px;
3235 padding: 0;
3237 padding: 0;
3236 }
3238 }
3237
3239
3238 #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
3240 #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
3239 {
3241 {
3240 color: #000;
3242 color: #000;
3241 text-decoration: none;
3243 text-decoration: none;
3242 }
3244 }
3243
3245
3244 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus,#content div.box div.action a.ui-selectmenu-focus
3246 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus,#content div.box div.action a.ui-selectmenu-focus
3245 {
3247 {
3246 border: 1px solid #666;
3248 border: 1px solid #666;
3247 }
3249 }
3248
3250
3249 #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
3251 #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
3250 {
3252 {
3251 clear: both;
3253 clear: both;
3252 overflow: hidden;
3254 overflow: hidden;
3253 margin: 0;
3255 margin: 0;
3254 padding: 8px 0 2px;
3256 padding: 8px 0 2px;
3255 }
3257 }
3256
3258
3257 #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
3259 #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
3258 {
3260 {
3259 float: left;
3261 float: left;
3260 margin: 0;
3262 margin: 0;
3261 }
3263 }
3262
3264
3263 #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
3265 #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
3264 {
3266 {
3265 height: 1%;
3267 height: 1%;
3266 display: block;
3268 display: block;
3267 float: left;
3269 float: left;
3268 margin: 2px 0 0 4px;
3270 margin: 2px 0 0 4px;
3269 }
3271 }
3270
3272
3271 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
3273 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
3272 {
3274 {
3273 color: #000;
3275 color: #000;
3274 font-size: 11px;
3276 font-size: 11px;
3275 font-weight: 700;
3277 font-weight: 700;
3276 margin: 0;
3278 margin: 0;
3277 }
3279 }
3278
3280
3279 input.ui-button {
3281 input.ui-button {
3280 background: #e5e3e3 url("../images/button.png") repeat-x;
3282 background: #e5e3e3 url("../images/button.png") repeat-x;
3281 border-top: 1px solid #DDD;
3283 border-top: 1px solid #DDD;
3282 border-left: 1px solid #c6c6c6;
3284 border-left: 1px solid #c6c6c6;
3283 border-right: 1px solid #DDD;
3285 border-right: 1px solid #DDD;
3284 border-bottom: 1px solid #c6c6c6;
3286 border-bottom: 1px solid #c6c6c6;
3285 color: #515151 !important;
3287 color: #515151 !important;
3286 outline: none;
3288 outline: none;
3287 margin: 0;
3289 margin: 0;
3288 padding: 6px 12px;
3290 padding: 6px 12px;
3289 -webkit-border-radius: 4px 4px 4px 4px;
3291 -webkit-border-radius: 4px 4px 4px 4px;
3290 -khtml-border-radius: 4px 4px 4px 4px;
3292 -khtml-border-radius: 4px 4px 4px 4px;
3291 -moz-border-radius: 4px 4px 4px 4px;
3293 -moz-border-radius: 4px 4px 4px 4px;
3292 border-radius: 4px 4px 4px 4px;
3294 border-radius: 4px 4px 4px 4px;
3293 box-shadow: 0 1px 0 #ececec;
3295 box-shadow: 0 1px 0 #ececec;
3294 cursor: pointer;
3296 cursor: pointer;
3295 }
3297 }
3296
3298
3297 input.ui-button:hover {
3299 input.ui-button:hover {
3298 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
3300 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
3299 border-top: 1px solid #ccc;
3301 border-top: 1px solid #ccc;
3300 border-left: 1px solid #bebebe;
3302 border-left: 1px solid #bebebe;
3301 border-right: 1px solid #b1b1b1;
3303 border-right: 1px solid #b1b1b1;
3302 border-bottom: 1px solid #afafaf;
3304 border-bottom: 1px solid #afafaf;
3303 }
3305 }
3304
3306
3305 div.form div.fields div.field div.highlight,#content div.box div.form div.fields div.buttons div.highlight
3307 div.form div.fields div.field div.highlight,#content div.box div.form div.fields div.buttons div.highlight
3306 {
3308 {
3307 display: inline;
3309 display: inline;
3308 }
3310 }
3309
3311
3310 #content div.box div.form div.fields div.buttons,div.form div.fields div.buttons
3312 #content div.box div.form div.fields div.buttons,div.form div.fields div.buttons
3311 {
3313 {
3312 margin: 10px 0 0 200px;
3314 margin: 10px 0 0 200px;
3313 padding: 0;
3315 padding: 0;
3314 }
3316 }
3315
3317
3316 #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
3318 #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
3317 {
3319 {
3318 margin: 10px 0 0;
3320 margin: 10px 0 0;
3319 }
3321 }
3320
3322
3321 #content div.box table td.user,#content div.box table td.address {
3323 #content div.box table td.user,#content div.box table td.address {
3322 width: 10%;
3324 width: 10%;
3323 text-align: center;
3325 text-align: center;
3324 }
3326 }
3325
3327
3326 #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
3328 #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
3327 {
3329 {
3328 text-align: right;
3330 text-align: right;
3329 margin: 6px 0 0;
3331 margin: 6px 0 0;
3330 padding: 0;
3332 padding: 0;
3331 }
3333 }
3332
3334
3333 #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
3335 #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
3334 {
3336 {
3335 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
3337 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
3336 border-top: 1px solid #ccc;
3338 border-top: 1px solid #ccc;
3337 border-left: 1px solid #bebebe;
3339 border-left: 1px solid #bebebe;
3338 border-right: 1px solid #b1b1b1;
3340 border-right: 1px solid #b1b1b1;
3339 border-bottom: 1px solid #afafaf;
3341 border-bottom: 1px solid #afafaf;
3340 color: #515151;
3342 color: #515151;
3341 margin: 0;
3343 margin: 0;
3342 padding: 6px 12px;
3344 padding: 6px 12px;
3343 }
3345 }
3344
3346
3345 #content div.box div.pagination div.results,#content div.box div.pagination-wh div.results
3347 #content div.box div.pagination div.results,#content div.box div.pagination-wh div.results
3346 {
3348 {
3347 text-align: left;
3349 text-align: left;
3348 float: left;
3350 float: left;
3349 margin: 0;
3351 margin: 0;
3350 padding: 0;
3352 padding: 0;
3351 }
3353 }
3352
3354
3353 #content div.box div.pagination div.results span,#content div.box div.pagination-wh div.results span
3355 #content div.box div.pagination div.results span,#content div.box div.pagination-wh div.results span
3354 {
3356 {
3355 height: 1%;
3357 height: 1%;
3356 display: block;
3358 display: block;
3357 float: left;
3359 float: left;
3358 background: #ebebeb url("../images/pager.png") repeat-x;
3360 background: #ebebeb url("../images/pager.png") repeat-x;
3359 border-top: 1px solid #dedede;
3361 border-top: 1px solid #dedede;
3360 border-left: 1px solid #cfcfcf;
3362 border-left: 1px solid #cfcfcf;
3361 border-right: 1px solid #c4c4c4;
3363 border-right: 1px solid #c4c4c4;
3362 border-bottom: 1px solid #c4c4c4;
3364 border-bottom: 1px solid #c4c4c4;
3363 color: #4A4A4A;
3365 color: #4A4A4A;
3364 font-weight: 700;
3366 font-weight: 700;
3365 margin: 0;
3367 margin: 0;
3366 padding: 6px 8px;
3368 padding: 6px 8px;
3367 }
3369 }
3368
3370
3369 #content div.box div.pagination ul.pager li.disabled,#content div.box div.pagination-wh a.disabled
3371 #content div.box div.pagination ul.pager li.disabled,#content div.box div.pagination-wh a.disabled
3370 {
3372 {
3371 color: #B4B4B4;
3373 color: #B4B4B4;
3372 padding: 6px;
3374 padding: 6px;
3373 }
3375 }
3374
3376
3375 #login,#register {
3377 #login,#register {
3376 width: 520px;
3378 width: 520px;
3377 margin: 10% auto 0;
3379 margin: 10% auto 0;
3378 padding: 0;
3380 padding: 0;
3379 }
3381 }
3380
3382
3381 #login div.color,#register div.color {
3383 #login div.color,#register div.color {
3382 clear: both;
3384 clear: both;
3383 overflow: hidden;
3385 overflow: hidden;
3384 background: #FFF;
3386 background: #FFF;
3385 margin: 10px auto 0;
3387 margin: 10px auto 0;
3386 padding: 3px 3px 3px 0;
3388 padding: 3px 3px 3px 0;
3387 }
3389 }
3388
3390
3389 #login div.color a,#register div.color a {
3391 #login div.color a,#register div.color a {
3390 width: 20px;
3392 width: 20px;
3391 height: 20px;
3393 height: 20px;
3392 display: block;
3394 display: block;
3393 float: left;
3395 float: left;
3394 margin: 0 0 0 3px;
3396 margin: 0 0 0 3px;
3395 padding: 0;
3397 padding: 0;
3396 }
3398 }
3397
3399
3398 #login div.title h5,#register div.title h5 {
3400 #login div.title h5,#register div.title h5 {
3399 color: #fff;
3401 color: #fff;
3400 margin: 10px;
3402 margin: 10px;
3401 padding: 0;
3403 padding: 0;
3402 }
3404 }
3403
3405
3404 #login div.form div.fields div.field,#register div.form div.fields div.field
3406 #login div.form div.fields div.field,#register div.form div.fields div.field
3405 {
3407 {
3406 clear: both;
3408 clear: both;
3407 overflow: hidden;
3409 overflow: hidden;
3408 margin: 0;
3410 margin: 0;
3409 padding: 0 0 10px;
3411 padding: 0 0 10px;
3410 }
3412 }
3411
3413
3412 #login div.form div.fields div.field span.error-message,#register div.form div.fields div.field span.error-message
3414 #login div.form div.fields div.field span.error-message,#register div.form div.fields div.field span.error-message
3413 {
3415 {
3414 height: 1%;
3416 height: 1%;
3415 display: block;
3417 display: block;
3416 color: red;
3418 color: red;
3417 margin: 8px 0 0;
3419 margin: 8px 0 0;
3418 padding: 0;
3420 padding: 0;
3419 max-width: 320px;
3421 max-width: 320px;
3420 }
3422 }
3421
3423
3422 #login div.form div.fields div.field div.label label,#register div.form div.fields div.field div.label label
3424 #login div.form div.fields div.field div.label label,#register div.form div.fields div.field div.label label
3423 {
3425 {
3424 color: #000;
3426 color: #000;
3425 font-weight: 700;
3427 font-weight: 700;
3426 }
3428 }
3427
3429
3428 #login div.form div.fields div.field div.input,#register div.form div.fields div.field div.input
3430 #login div.form div.fields div.field div.input,#register div.form div.fields div.field div.input
3429 {
3431 {
3430 float: left;
3432 float: left;
3431 margin: 0;
3433 margin: 0;
3432 padding: 0;
3434 padding: 0;
3433 }
3435 }
3434
3436
3435 #login div.form div.fields div.field div.checkbox,#register div.form div.fields div.field div.checkbox
3437 #login div.form div.fields div.field div.checkbox,#register div.form div.fields div.field div.checkbox
3436 {
3438 {
3437 margin: 0 0 0 184px;
3439 margin: 0 0 0 184px;
3438 padding: 0;
3440 padding: 0;
3439 }
3441 }
3440
3442
3441 #login div.form div.fields div.field div.checkbox label,#register div.form div.fields div.field div.checkbox label
3443 #login div.form div.fields div.field div.checkbox label,#register div.form div.fields div.field div.checkbox label
3442 {
3444 {
3443 color: #565656;
3445 color: #565656;
3444 font-weight: 700;
3446 font-weight: 700;
3445 }
3447 }
3446
3448
3447 #login div.form div.fields div.buttons input,#register div.form div.fields div.buttons input
3449 #login div.form div.fields div.buttons input,#register div.form div.fields div.buttons input
3448 {
3450 {
3449 color: #000;
3451 color: #000;
3450 font-size: 1em;
3452 font-size: 1em;
3451 font-weight: 700;
3453 font-weight: 700;
3452 margin: 0;
3454 margin: 0;
3453 }
3455 }
3454
3456
3455 #changeset_content .container .wrapper,#graph_content .container .wrapper
3457 #changeset_content .container .wrapper,#graph_content .container .wrapper
3456 {
3458 {
3457 width: 600px;
3459 width: 600px;
3458 }
3460 }
3459
3461
3460 #changeset_content .container .left {
3462 #changeset_content .container .left {
3461 float: left;
3463 float: left;
3462 width: 75%;
3464 width: 75%;
3463 padding-left: 5px;
3465 padding-left: 5px;
3464 }
3466 }
3465
3467
3466 #changeset_content .container .left .date,.ac .match {
3468 #changeset_content .container .left .date,.ac .match {
3467 font-weight: 700;
3469 font-weight: 700;
3468 padding-top: 5px;
3470 padding-top: 5px;
3469 padding-bottom: 5px;
3471 padding-bottom: 5px;
3470 }
3472 }
3471
3473
3472 div#legend_container table td,div#legend_choices table td {
3474 div#legend_container table td,div#legend_choices table td {
3473 border: none !important;
3475 border: none !important;
3474 height: 20px !important;
3476 height: 20px !important;
3475 padding: 0 !important;
3477 padding: 0 !important;
3476 }
3478 }
3477
3479
3478 .q_filter_box {
3480 .q_filter_box {
3479 -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset;
3481 -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset;
3480 -webkit-border-radius: 4px;
3482 -webkit-border-radius: 4px;
3481 -moz-border-radius: 4px;
3483 -moz-border-radius: 4px;
3482 border-radius: 4px;
3484 border-radius: 4px;
3483 border: 0 none;
3485 border: 0 none;
3484 color: #AAAAAA;
3486 color: #AAAAAA;
3485 margin-bottom: -4px;
3487 margin-bottom: -4px;
3486 margin-top: -4px;
3488 margin-top: -4px;
3487 padding-left: 3px;
3489 padding-left: 3px;
3488 }
3490 }
3489
3491
3490 #node_filter {
3492 #node_filter {
3491 border: 0px solid #545454;
3493 border: 0px solid #545454;
3492 color: #AAAAAA;
3494 color: #AAAAAA;
3493 padding-left: 3px;
3495 padding-left: 3px;
3494 }
3496 }
3495
3497
3496 /*README STYLE*/
3498 /*README STYLE*/
3497
3499
3498 div.readme {
3500 div.readme {
3499 padding:0px;
3501 padding:0px;
3500 }
3502 }
3501
3503
3502 div.readme h2 {
3504 div.readme h2 {
3503 font-weight: normal;
3505 font-weight: normal;
3504 }
3506 }
3505
3507
3506 div.readme .readme_box {
3508 div.readme .readme_box {
3507 background-color: #fafafa;
3509 background-color: #fafafa;
3508 }
3510 }
3509
3511
3510 div.readme .readme_box {
3512 div.readme .readme_box {
3511 clear:both;
3513 clear:both;
3512 overflow:hidden;
3514 overflow:hidden;
3513 margin:0;
3515 margin:0;
3514 padding:0 20px 10px;
3516 padding:0 20px 10px;
3515 }
3517 }
3516
3518
3517 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 {
3519 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 {
3518 border-bottom: 0 !important;
3520 border-bottom: 0 !important;
3519 margin: 0 !important;
3521 margin: 0 !important;
3520 padding: 0 !important;
3522 padding: 0 !important;
3521 line-height: 1.5em !important;
3523 line-height: 1.5em !important;
3522 }
3524 }
3523
3525
3524
3526
3525 div.readme .readme_box h1:first-child {
3527 div.readme .readme_box h1:first-child {
3526 padding-top: .25em !important;
3528 padding-top: .25em !important;
3527 }
3529 }
3528
3530
3529 div.readme .readme_box h2, div.readme .readme_box h3 {
3531 div.readme .readme_box h2, div.readme .readme_box h3 {
3530 margin: 1em 0 !important;
3532 margin: 1em 0 !important;
3531 }
3533 }
3532
3534
3533 div.readme .readme_box h2 {
3535 div.readme .readme_box h2 {
3534 margin-top: 1.5em !important;
3536 margin-top: 1.5em !important;
3535 border-top: 4px solid #e0e0e0 !important;
3537 border-top: 4px solid #e0e0e0 !important;
3536 padding-top: .5em !important;
3538 padding-top: .5em !important;
3537 }
3539 }
3538
3540
3539 div.readme .readme_box p {
3541 div.readme .readme_box p {
3540 color: black !important;
3542 color: black !important;
3541 margin: 1em 0 !important;
3543 margin: 1em 0 !important;
3542 line-height: 1.5em !important;
3544 line-height: 1.5em !important;
3543 }
3545 }
3544
3546
3545 div.readme .readme_box ul {
3547 div.readme .readme_box ul {
3546 list-style: disc !important;
3548 list-style: disc !important;
3547 margin: 1em 0 1em 2em !important;
3549 margin: 1em 0 1em 2em !important;
3548 }
3550 }
3549
3551
3550 div.readme .readme_box ol {
3552 div.readme .readme_box ol {
3551 list-style: decimal;
3553 list-style: decimal;
3552 margin: 1em 0 1em 2em !important;
3554 margin: 1em 0 1em 2em !important;
3553 }
3555 }
3554
3556
3555 div.readme .readme_box pre, code {
3557 div.readme .readme_box pre, code {
3556 font: 12px "Bitstream Vera Sans Mono","Courier",monospace;
3558 font: 12px "Bitstream Vera Sans Mono","Courier",monospace;
3557 }
3559 }
3558
3560
3559 div.readme .readme_box code {
3561 div.readme .readme_box code {
3560 font-size: 12px !important;
3562 font-size: 12px !important;
3561 background-color: ghostWhite !important;
3563 background-color: ghostWhite !important;
3562 color: #444 !important;
3564 color: #444 !important;
3563 padding: 0 .2em !important;
3565 padding: 0 .2em !important;
3564 border: 1px solid #dedede !important;
3566 border: 1px solid #dedede !important;
3565 }
3567 }
3566
3568
3567 div.readme .readme_box pre code {
3569 div.readme .readme_box pre code {
3568 padding: 0 !important;
3570 padding: 0 !important;
3569 font-size: 12px !important;
3571 font-size: 12px !important;
3570 background-color: #eee !important;
3572 background-color: #eee !important;
3571 border: none !important;
3573 border: none !important;
3572 }
3574 }
3573
3575
3574 div.readme .readme_box pre {
3576 div.readme .readme_box pre {
3575 margin: 1em 0;
3577 margin: 1em 0;
3576 font-size: 12px;
3578 font-size: 12px;
3577 background-color: #eee;
3579 background-color: #eee;
3578 border: 1px solid #ddd;
3580 border: 1px solid #ddd;
3579 padding: 5px;
3581 padding: 5px;
3580 color: #444;
3582 color: #444;
3581 overflow: auto;
3583 overflow: auto;
3582 -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset;
3584 -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset;
3583 -webkit-border-radius: 3px;
3585 -webkit-border-radius: 3px;
3584 -moz-border-radius: 3px;
3586 -moz-border-radius: 3px;
3585 border-radius: 3px;
3587 border-radius: 3px;
3586 }
3588 }
3587
3589
3588
3590
3589 /** RST STYLE **/
3591 /** RST STYLE **/
3590
3592
3591
3593
3592 div.rst-block {
3594 div.rst-block {
3593 padding:0px;
3595 padding:0px;
3594 }
3596 }
3595
3597
3596 div.rst-block h2 {
3598 div.rst-block h2 {
3597 font-weight: normal;
3599 font-weight: normal;
3598 }
3600 }
3599
3601
3600 div.rst-block {
3602 div.rst-block {
3601 background-color: #fafafa;
3603 background-color: #fafafa;
3602 }
3604 }
3603
3605
3604 div.rst-block {
3606 div.rst-block {
3605 clear:both;
3607 clear:both;
3606 overflow:hidden;
3608 overflow:hidden;
3607 margin:0;
3609 margin:0;
3608 padding:0 20px 10px;
3610 padding:0 20px 10px;
3609 }
3611 }
3610
3612
3611 div.rst-block h1, div.rst-block h2, div.rst-block h3, div.rst-block h4, div.rst-block h5, div.rst-block h6 {
3613 div.rst-block h1, div.rst-block h2, div.rst-block h3, div.rst-block h4, div.rst-block h5, div.rst-block h6 {
3612 border-bottom: 0 !important;
3614 border-bottom: 0 !important;
3613 margin: 0 !important;
3615 margin: 0 !important;
3614 padding: 0 !important;
3616 padding: 0 !important;
3615 line-height: 1.5em !important;
3617 line-height: 1.5em !important;
3616 }
3618 }
3617
3619
3618
3620
3619 div.rst-block h1:first-child {
3621 div.rst-block h1:first-child {
3620 padding-top: .25em !important;
3622 padding-top: .25em !important;
3621 }
3623 }
3622
3624
3623 div.rst-block h2, div.rst-block h3 {
3625 div.rst-block h2, div.rst-block h3 {
3624 margin: 1em 0 !important;
3626 margin: 1em 0 !important;
3625 }
3627 }
3626
3628
3627 div.rst-block h2 {
3629 div.rst-block h2 {
3628 margin-top: 1.5em !important;
3630 margin-top: 1.5em !important;
3629 border-top: 4px solid #e0e0e0 !important;
3631 border-top: 4px solid #e0e0e0 !important;
3630 padding-top: .5em !important;
3632 padding-top: .5em !important;
3631 }
3633 }
3632
3634
3633 div.rst-block p {
3635 div.rst-block p {
3634 color: black !important;
3636 color: black !important;
3635 margin: 1em 0 !important;
3637 margin: 1em 0 !important;
3636 line-height: 1.5em !important;
3638 line-height: 1.5em !important;
3637 }
3639 }
3638
3640
3639 div.rst-block ul {
3641 div.rst-block ul {
3640 list-style: disc !important;
3642 list-style: disc !important;
3641 margin: 1em 0 1em 2em !important;
3643 margin: 1em 0 1em 2em !important;
3642 }
3644 }
3643
3645
3644 div.rst-block ol {
3646 div.rst-block ol {
3645 list-style: decimal;
3647 list-style: decimal;
3646 margin: 1em 0 1em 2em !important;
3648 margin: 1em 0 1em 2em !important;
3647 }
3649 }
3648
3650
3649 div.rst-block pre, code {
3651 div.rst-block pre, code {
3650 font: 12px "Bitstream Vera Sans Mono","Courier",monospace;
3652 font: 12px "Bitstream Vera Sans Mono","Courier",monospace;
3651 }
3653 }
3652
3654
3653 div.rst-block code {
3655 div.rst-block code {
3654 font-size: 12px !important;
3656 font-size: 12px !important;
3655 background-color: ghostWhite !important;
3657 background-color: ghostWhite !important;
3656 color: #444 !important;
3658 color: #444 !important;
3657 padding: 0 .2em !important;
3659 padding: 0 .2em !important;
3658 border: 1px solid #dedede !important;
3660 border: 1px solid #dedede !important;
3659 }
3661 }
3660
3662
3661 div.rst-block pre code {
3663 div.rst-block pre code {
3662 padding: 0 !important;
3664 padding: 0 !important;
3663 font-size: 12px !important;
3665 font-size: 12px !important;
3664 background-color: #eee !important;
3666 background-color: #eee !important;
3665 border: none !important;
3667 border: none !important;
3666 }
3668 }
3667
3669
3668 div.rst-block pre {
3670 div.rst-block pre {
3669 margin: 1em 0;
3671 margin: 1em 0;
3670 font-size: 12px;
3672 font-size: 12px;
3671 background-color: #eee;
3673 background-color: #eee;
3672 border: 1px solid #ddd;
3674 border: 1px solid #ddd;
3673 padding: 5px;
3675 padding: 5px;
3674 color: #444;
3676 color: #444;
3675 overflow: auto;
3677 overflow: auto;
3676 -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset;
3678 -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset;
3677 -webkit-border-radius: 3px;
3679 -webkit-border-radius: 3px;
3678 -moz-border-radius: 3px;
3680 -moz-border-radius: 3px;
3679 border-radius: 3px;
3681 border-radius: 3px;
3680 }
3682 }
3681
3683
3682
3684
3683 /** comment main **/
3685 /** comment main **/
3684 .comments {
3686 .comments {
3685 padding:10px 20px;
3687 padding:10px 20px;
3686 }
3688 }
3687
3689
3688 .comments .comment {
3690 .comments .comment {
3689 border: 1px solid #ddd;
3691 border: 1px solid #ddd;
3690 margin-top: 10px;
3692 margin-top: 10px;
3691 -webkit-border-radius: 4px;
3693 -webkit-border-radius: 4px;
3692 -moz-border-radius: 4px;
3694 -moz-border-radius: 4px;
3693 border-radius: 4px;
3695 border-radius: 4px;
3694 }
3696 }
3695
3697
3696 .comments .comment .meta {
3698 .comments .comment .meta {
3697 background: #f8f8f8;
3699 background: #f8f8f8;
3698 padding: 6px;
3700 padding: 6px;
3699 border-bottom: 1px solid #ddd;
3701 border-bottom: 1px solid #ddd;
3700 }
3702 }
3701
3703
3702 .comments .comment .meta img {
3704 .comments .comment .meta img {
3703 vertical-align: middle;
3705 vertical-align: middle;
3704 }
3706 }
3705
3707
3706 .comments .comment .meta .user {
3708 .comments .comment .meta .user {
3707 font-weight: bold;
3709 font-weight: bold;
3708 }
3710 }
3709
3711
3710 .comments .comment .meta .date {
3712 .comments .comment .meta .date {
3711 float: right;
3713 float: right;
3712 }
3714 }
3713
3715
3714 .comments .comment .text {
3716 .comments .comment .text {
3715 padding: 8px 6px 6px 14px;
3717 padding: 8px 6px 6px 14px;
3716 background-color: #FAFAFA;
3718 background-color: #FAFAFA;
3717 }
3719 }
3718
3720
3719 .comments .comments-number{
3721 .comments .comments-number{
3720 padding:0px 0px 10px 0px;
3722 padding:0px 0px 10px 0px;
3721 font-weight: bold;
3723 font-weight: bold;
3722 color: #666;
3724 color: #666;
3723 font-size: 16px;
3725 font-size: 16px;
3724 }
3726 }
3725
3727
3726 /** comment form **/
3728 /** comment form **/
3727
3729
3728 .comment-form .clearfix{
3730 .comment-form .clearfix{
3729 background: #EEE;
3731 background: #EEE;
3730 -webkit-border-radius: 4px;
3732 -webkit-border-radius: 4px;
3731 -moz-border-radius: 4px;
3733 -moz-border-radius: 4px;
3732 border-radius: 4px;
3734 border-radius: 4px;
3733 padding: 10px;
3735 padding: 10px;
3734 }
3736 }
3735
3737
3736 div.comment-form {
3738 div.comment-form {
3737 margin-top: 20px;
3739 margin-top: 20px;
3738 }
3740 }
3739
3741
3740 .comment-form strong {
3742 .comment-form strong {
3741 display: block;
3743 display: block;
3742 margin-bottom: 15px;
3744 margin-bottom: 15px;
3743 }
3745 }
3744
3746
3745 .comment-form textarea {
3747 .comment-form textarea {
3746 width: 100%;
3748 width: 100%;
3747 height: 100px;
3749 height: 100px;
3748 font-family: 'Monaco', 'Courier', 'Courier New', monospace;
3750 font-family: 'Monaco', 'Courier', 'Courier New', monospace;
3749 }
3751 }
3750
3752
3751 form.comment-form {
3753 form.comment-form {
3752 margin-top: 10px;
3754 margin-top: 10px;
3753 margin-left: 10px;
3755 margin-left: 10px;
3754 }
3756 }
3755
3757
3756 .comment-form-submit {
3758 .comment-form-submit {
3757 margin-top: 5px;
3759 margin-top: 5px;
3758 margin-left: 525px;
3760 margin-left: 525px;
3759 }
3761 }
3760
3762
3761 .file-comments {
3763 .file-comments {
3762 display: none;
3764 display: none;
3763 }
3765 }
3764
3766
3765 .comment-form .comment {
3767 .comment-form .comment {
3766 margin-left: 10px;
3768 margin-left: 10px;
3767 }
3769 }
3768
3770
3769 .comment-form .comment-help{
3771 .comment-form .comment-help{
3770 padding: 0px 0px 5px 0px;
3772 padding: 0px 0px 5px 0px;
3771 color: #666;
3773 color: #666;
3772 }
3774 }
3773
3775
3774 .comment-form .comment-button{
3776 .comment-form .comment-button{
3775 padding-top:5px;
3777 padding-top:5px;
3776 }
3778 }
3777
3779
3778 .add-another-button {
3780 .add-another-button {
3779 margin-left: 10px;
3781 margin-left: 10px;
3780 margin-top: 10px;
3782 margin-top: 10px;
3781 margin-bottom: 10px;
3783 margin-bottom: 10px;
3782 }
3784 }
3783
3785
3784 .comment .buttons {
3786 .comment .buttons {
3785 position: absolute;
3787 position: absolute;
3786 right:40px;
3788 right:40px;
3787 }
3789 }
3788
3790
3789
3791
3790 .show-inline-comments{
3792 .show-inline-comments{
3791 position: relative;
3793 position: relative;
3792 top:1px
3794 top:1px
3793 }
3795 }
3794
3796
3795 /** comment inline form **/
3797 /** comment inline form **/
3796
3798
3797 .comment-inline-form .clearfix{
3799 .comment-inline-form .clearfix{
3798 background: #EEE;
3800 background: #EEE;
3799 -webkit-border-radius: 4px;
3801 -webkit-border-radius: 4px;
3800 -moz-border-radius: 4px;
3802 -moz-border-radius: 4px;
3801 border-radius: 4px;
3803 border-radius: 4px;
3802 padding: 5px;
3804 padding: 5px;
3803 }
3805 }
3804
3806
3805 div.comment-inline-form {
3807 div.comment-inline-form {
3806 margin-top: 5px;
3808 margin-top: 5px;
3807 padding:2px 6px 8px 6px;
3809 padding:2px 6px 8px 6px;
3808 }
3810 }
3809
3811
3810 .comment-inline-form strong {
3812 .comment-inline-form strong {
3811 display: block;
3813 display: block;
3812 margin-bottom: 15px;
3814 margin-bottom: 15px;
3813 }
3815 }
3814
3816
3815 .comment-inline-form textarea {
3817 .comment-inline-form textarea {
3816 width: 100%;
3818 width: 100%;
3817 height: 100px;
3819 height: 100px;
3818 font-family: 'Monaco', 'Courier', 'Courier New', monospace;
3820 font-family: 'Monaco', 'Courier', 'Courier New', monospace;
3819 }
3821 }
3820
3822
3821 form.comment-inline-form {
3823 form.comment-inline-form {
3822 margin-top: 10px;
3824 margin-top: 10px;
3823 margin-left: 10px;
3825 margin-left: 10px;
3824 }
3826 }
3825
3827
3826 .comment-inline-form-submit {
3828 .comment-inline-form-submit {
3827 margin-top: 5px;
3829 margin-top: 5px;
3828 margin-left: 525px;
3830 margin-left: 525px;
3829 }
3831 }
3830
3832
3831 .file-comments {
3833 .file-comments {
3832 display: none;
3834 display: none;
3833 }
3835 }
3834
3836
3835 .comment-inline-form .comment {
3837 .comment-inline-form .comment {
3836 margin-left: 10px;
3838 margin-left: 10px;
3837 }
3839 }
3838
3840
3839 .comment-inline-form .comment-help{
3841 .comment-inline-form .comment-help{
3840 padding: 0px 0px 2px 0px;
3842 padding: 0px 0px 2px 0px;
3841 color: #666666;
3843 color: #666666;
3842 font-size: 10px;
3844 font-size: 10px;
3843 }
3845 }
3844
3846
3845 .comment-inline-form .comment-button{
3847 .comment-inline-form .comment-button{
3846 padding-top:5px;
3848 padding-top:5px;
3847 }
3849 }
3848
3850
3849 /** comment inline **/
3851 /** comment inline **/
3850 .inline-comments {
3852 .inline-comments {
3851 padding:10px 20px;
3853 padding:10px 20px;
3852 }
3854 }
3853
3855
3854 .inline-comments div.rst-block {
3856 .inline-comments div.rst-block {
3855 clear:both;
3857 clear:both;
3856 overflow:hidden;
3858 overflow:hidden;
3857 margin:0;
3859 margin:0;
3858 padding:0 20px 0px;
3860 padding:0 20px 0px;
3859 }
3861 }
3860 .inline-comments .comment {
3862 .inline-comments .comment {
3861 border: 1px solid #ddd;
3863 border: 1px solid #ddd;
3862 -webkit-border-radius: 4px;
3864 -webkit-border-radius: 4px;
3863 -moz-border-radius: 4px;
3865 -moz-border-radius: 4px;
3864 border-radius: 4px;
3866 border-radius: 4px;
3865 margin: 3px 3px 5px 5px;
3867 margin: 3px 3px 5px 5px;
3866 background-color: #FAFAFA;
3868 background-color: #FAFAFA;
3867 }
3869 }
3868 .inline-comments .comment-wrapp{
3870 .inline-comments .comment-wrapp{
3869 padding:1px;
3871 padding:1px;
3870 }
3872 }
3871 .inline-comments .comment .meta {
3873 .inline-comments .comment .meta {
3872 background: #f8f8f8;
3874 background: #f8f8f8;
3873 padding: 6px;
3875 padding: 6px;
3874 border-bottom: 1px solid #ddd;
3876 border-bottom: 1px solid #ddd;
3875 }
3877 }
3876
3878
3877 .inline-comments .comment .meta img {
3879 .inline-comments .comment .meta img {
3878 vertical-align: middle;
3880 vertical-align: middle;
3879 }
3881 }
3880
3882
3881 .inline-comments .comment .meta .user {
3883 .inline-comments .comment .meta .user {
3882 font-weight: bold;
3884 font-weight: bold;
3883 }
3885 }
3884
3886
3885 .inline-comments .comment .meta .date {
3887 .inline-comments .comment .meta .date {
3886 float: right;
3888 float: right;
3887 }
3889 }
3888
3890
3889 .inline-comments .comment .text {
3891 .inline-comments .comment .text {
3890 padding: 8px 6px 6px 14px;
3892 padding: 8px 6px 6px 14px;
3891 background-color: #FAFAFA;
3893 background-color: #FAFAFA;
3892 }
3894 }
3893
3895
3894 .inline-comments .comments-number{
3896 .inline-comments .comments-number{
3895 padding:0px 0px 10px 0px;
3897 padding:0px 0px 10px 0px;
3896 font-weight: bold;
3898 font-weight: bold;
3897 color: #666;
3899 color: #666;
3898 font-size: 16px;
3900 font-size: 16px;
3899 }
3901 }
3900 .inline-comments-button .add-comment{
3902 .inline-comments-button .add-comment{
3901 margin:10px 5px !important;
3903 margin:10px 5px !important;
3902 }
3904 }
3903 .notifications{
3905 .notifications{
3904 width:22px;
3906 width:22px;
3905 padding:2px;
3907 padding:2px;
3906 float:right;
3908 float:right;
3907 -webkit-border-radius: 4px;
3909 -webkit-border-radius: 4px;
3908 -moz-border-radius: 4px;
3910 -moz-border-radius: 4px;
3909 border-radius: 4px;
3911 border-radius: 4px;
3910 text-align: center;
3912 text-align: center;
3911 margin: 0px -10px 0px 5px;
3913 margin: 0px -10px 0px 5px;
3912 background-color: #DEDEDE;
3914 background-color: #DEDEDE;
3913 }
3915 }
3914 .notifications a{
3916 .notifications a{
3915 color:#888 !important;
3917 color:#888 !important;
3916 display: block;
3918 display: block;
3917 font-size: 10px
3919 font-size: 10px
3918 }
3920 }
3919 .notifications a:hover{
3921 .notifications a:hover{
3920 text-decoration: none !important;
3922 text-decoration: none !important;
3921 }
3923 }
3922 .notification-header{
3924 .notification-header{
3923 padding-top:6px;
3925 padding-top:6px;
3924 }
3926 }
3925 .notification-header .desc{
3927 .notification-header .desc{
3926 font-size: 16px;
3928 font-size: 16px;
3927 height: 24px;
3929 height: 24px;
3928 float: left
3930 float: left
3929 }
3931 }
3930 .notification-list .container.unread{
3932 .notification-list .container.unread{
3931
3933
3932 }
3934 }
3933 .notification-header .gravatar{
3935 .notification-header .gravatar{
3934
3936
3935 }
3937 }
3936 .notification-header .desc.unread{
3938 .notification-header .desc.unread{
3937 font-weight: bold;
3939 font-weight: bold;
3938 font-size: 17px;
3940 font-size: 17px;
3939 }
3941 }
3940
3942
3941 .notification-header .delete-notifications{
3943 .notification-header .delete-notifications{
3942 float: right;
3944 float: right;
3943 padding-top: 8px;
3945 padding-top: 8px;
3944 cursor: pointer;
3946 cursor: pointer;
3945 }
3947 }
3946 .notification-subject{
3948 .notification-subject{
3947 clear:both;
3949 clear:both;
3948 border-bottom: 1px solid #eee;
3950 border-bottom: 1px solid #eee;
3949 padding:5px 0px 5px 38px;
3951 padding:5px 0px 5px 38px;
3950 }
3952 }
3951
3953
3952
3954
3953 /*****************************************************************************
3955 /*****************************************************************************
3954 DIFFS CSS
3956 DIFFS CSS
3955 ******************************************************************************/
3957 ******************************************************************************/
3956
3958
3957 div.diffblock {
3959 div.diffblock {
3958 overflow: auto;
3960 overflow: auto;
3959 padding: 0px;
3961 padding: 0px;
3960 border: 1px solid #ccc;
3962 border: 1px solid #ccc;
3961 background: #f8f8f8;
3963 background: #f8f8f8;
3962 font-size: 100%;
3964 font-size: 100%;
3963 line-height: 100%;
3965 line-height: 100%;
3964 /* new */
3966 /* new */
3965 line-height: 125%;
3967 line-height: 125%;
3966 -webkit-border-radius: 6px 6px 0px 0px;
3968 -webkit-border-radius: 6px 6px 0px 0px;
3967 -moz-border-radius: 6px 6px 0px 0px;
3969 -moz-border-radius: 6px 6px 0px 0px;
3968 border-radius: 6px 6px 0px 0px;
3970 border-radius: 6px 6px 0px 0px;
3969 }
3971 }
3970 div.diffblock.margined{
3972 div.diffblock.margined{
3971 margin: 0px 20px 0px 20px;
3973 margin: 0px 20px 0px 20px;
3972 }
3974 }
3973 div.diffblock .code-header{
3975 div.diffblock .code-header{
3974 border-bottom: 1px solid #CCCCCC;
3976 border-bottom: 1px solid #CCCCCC;
3975 background: #EEEEEE;
3977 background: #EEEEEE;
3976 padding:10px 0 10px 0;
3978 padding:10px 0 10px 0;
3977 height: 14px;
3979 height: 14px;
3978 }
3980 }
3979 div.diffblock .code-header.cv{
3981 div.diffblock .code-header.cv{
3980 height: 34px;
3982 height: 34px;
3981 }
3983 }
3982 div.diffblock .code-header-title{
3984 div.diffblock .code-header-title{
3983 padding: 0px 0px 10px 5px !important;
3985 padding: 0px 0px 10px 5px !important;
3984 margin: 0 !important;
3986 margin: 0 !important;
3985 }
3987 }
3986
3988
3987 div.diffblock .code-header .date{
3989 div.diffblock .code-header .date{
3988 float:left;
3990 float:left;
3989 text-transform: uppercase;
3991 text-transform: uppercase;
3990 }
3992 }
3991 div.diffblock .code-header div{
3993 div.diffblock .code-header div{
3992 margin-left:4px;
3994 margin-left:4px;
3993 font-weight: bold;
3995 font-weight: bold;
3994 font-size: 14px;
3996 font-size: 14px;
3995 }
3997 }
3996 div.diffblock .code-body{
3998 div.diffblock .code-body{
3997 background: #FFFFFF;
3999 background: #FFFFFF;
3998 }
4000 }
3999 div.diffblock pre.raw{
4001 div.diffblock pre.raw{
4000 background: #FFFFFF;
4002 background: #FFFFFF;
4001 color:#000000;
4003 color:#000000;
4002 }
4004 }
4003 table.code-difftable{
4005 table.code-difftable{
4004 border-collapse: collapse;
4006 border-collapse: collapse;
4005 width: 99%;
4007 width: 99%;
4006 }
4008 }
4007 table.code-difftable td {
4009 table.code-difftable td {
4008 padding: 0 !important;
4010 padding: 0 !important;
4009 background: none !important;
4011 background: none !important;
4010 border:0 !important;
4012 border:0 !important;
4011 vertical-align: none !important;
4013 vertical-align: none !important;
4012 }
4014 }
4013 table.code-difftable .context{
4015 table.code-difftable .context{
4014 background:none repeat scroll 0 0 #DDE7EF;
4016 background:none repeat scroll 0 0 #DDE7EF;
4015 }
4017 }
4016 table.code-difftable .add{
4018 table.code-difftable .add{
4017 background:none repeat scroll 0 0 #DDFFDD;
4019 background:none repeat scroll 0 0 #DDFFDD;
4018 }
4020 }
4019 table.code-difftable .add ins{
4021 table.code-difftable .add ins{
4020 background:none repeat scroll 0 0 #AAFFAA;
4022 background:none repeat scroll 0 0 #AAFFAA;
4021 text-decoration:none;
4023 text-decoration:none;
4022 }
4024 }
4023 table.code-difftable .del{
4025 table.code-difftable .del{
4024 background:none repeat scroll 0 0 #FFDDDD;
4026 background:none repeat scroll 0 0 #FFDDDD;
4025 }
4027 }
4026 table.code-difftable .del del{
4028 table.code-difftable .del del{
4027 background:none repeat scroll 0 0 #FFAAAA;
4029 background:none repeat scroll 0 0 #FFAAAA;
4028 text-decoration:none;
4030 text-decoration:none;
4029 }
4031 }
4030
4032
4031 /** LINE NUMBERS **/
4033 /** LINE NUMBERS **/
4032 table.code-difftable .lineno{
4034 table.code-difftable .lineno{
4033
4035
4034 padding-left:2px;
4036 padding-left:2px;
4035 padding-right:2px;
4037 padding-right:2px;
4036 text-align:right;
4038 text-align:right;
4037 width:32px;
4039 width:32px;
4038 -moz-user-select:none;
4040 -moz-user-select:none;
4039 -webkit-user-select: none;
4041 -webkit-user-select: none;
4040 border-right: 1px solid #CCC !important;
4042 border-right: 1px solid #CCC !important;
4041 border-left: 0px solid #CCC !important;
4043 border-left: 0px solid #CCC !important;
4042 border-top: 0px solid #CCC !important;
4044 border-top: 0px solid #CCC !important;
4043 border-bottom: none !important;
4045 border-bottom: none !important;
4044 vertical-align: middle !important;
4046 vertical-align: middle !important;
4045
4047
4046 }
4048 }
4047 table.code-difftable .lineno.new {
4049 table.code-difftable .lineno.new {
4048 }
4050 }
4049 table.code-difftable .lineno.old {
4051 table.code-difftable .lineno.old {
4050 }
4052 }
4051 table.code-difftable .lineno a{
4053 table.code-difftable .lineno a{
4052 color:#747474 !important;
4054 color:#747474 !important;
4053 font:11px "Bitstream Vera Sans Mono",Monaco,"Courier New",Courier,monospace !important;
4055 font:11px "Bitstream Vera Sans Mono",Monaco,"Courier New",Courier,monospace !important;
4054 letter-spacing:-1px;
4056 letter-spacing:-1px;
4055 text-align:right;
4057 text-align:right;
4056 padding-right: 2px;
4058 padding-right: 2px;
4057 cursor: pointer;
4059 cursor: pointer;
4058 display: block;
4060 display: block;
4059 width: 32px;
4061 width: 32px;
4060 }
4062 }
4061
4063
4062 table.code-difftable .lineno-inline{
4064 table.code-difftable .lineno-inline{
4063 background:none repeat scroll 0 0 #FFF !important;
4065 background:none repeat scroll 0 0 #FFF !important;
4064 padding-left:2px;
4066 padding-left:2px;
4065 padding-right:2px;
4067 padding-right:2px;
4066 text-align:right;
4068 text-align:right;
4067 width:30px;
4069 width:30px;
4068 -moz-user-select:none;
4070 -moz-user-select:none;
4069 -webkit-user-select: none;
4071 -webkit-user-select: none;
4070 }
4072 }
4071
4073
4072 /** CODE **/
4074 /** CODE **/
4073 table.code-difftable .code {
4075 table.code-difftable .code {
4074 display: block;
4076 display: block;
4075 width: 100%;
4077 width: 100%;
4076 }
4078 }
4077 table.code-difftable .code td{
4079 table.code-difftable .code td{
4078 margin:0;
4080 margin:0;
4079 padding:0;
4081 padding:0;
4080 }
4082 }
4081 table.code-difftable .code pre{
4083 table.code-difftable .code pre{
4082 margin:0;
4084 margin:0;
4083 padding:0;
4085 padding:0;
4084 height: 17px;
4086 height: 17px;
4085 line-height: 17px;
4087 line-height: 17px;
4086 }
4088 }
4087
4089
4088
4090
4089 .diffblock.margined.comm .line .code:hover{
4091 .diffblock.margined.comm .line .code:hover{
4090 background-color:#FFFFCC !important;
4092 background-color:#FFFFCC !important;
4091 cursor: pointer !important;
4093 cursor: pointer !important;
4092 background-image:url("../images/icons/comment_add.png") !important;
4094 background-image:url("../images/icons/comment_add.png") !important;
4093 background-repeat:no-repeat !important;
4095 background-repeat:no-repeat !important;
4094 background-position: right !important;
4096 background-position: right !important;
4095 background-position: 0% 50% !important;
4097 background-position: 0% 50% !important;
4096 }
4098 }
4097 .diffblock.margined.comm .line .code.no-comment:hover{
4099 .diffblock.margined.comm .line .code.no-comment:hover{
4098 background-image: none !important;
4100 background-image: none !important;
4099 cursor: auto !important;
4101 cursor: auto !important;
4100 background-color: inherit !important;
4102 background-color: inherit !important;
4101
4103
4102 } No newline at end of file
4104 }
@@ -1,206 +1,206 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} ${_('Changeset')} - r${c.changeset.revision}:${h.short_id(c.changeset.raw_id)} - ${c.rhodecode_name}
6 ${c.repo_name} ${_('Changeset')} - r${c.changeset.revision}:${h.short_id(c.changeset.raw_id)} - ${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 ${_('Changeset')} - r${c.changeset.revision}:${h.short_id(c.changeset.raw_id)}
14 ${_('Changeset')} - r${c.changeset.revision}:${h.short_id(c.changeset.raw_id)}
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 <div class="diffblock">
28 <div class="diffblock">
29 <div class="code-header">
29 <div class="code-header">
30 <div class="date">${c.changeset.revision}:
30 <div class="date">${c.changeset.revision}:
31 ${h.link_to(h.short_id(c.changeset.raw_id),h.url('changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}
31 ${h.link_to(h.short_id(c.changeset.raw_id),h.url('changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}
32 ${c.changeset.date}</div>
32 ${c.changeset.date}</div>
33 <div class="diff-menu-wrapper">
33 <div class="diff-menu-wrapper">
34 <img class="diff-menu-activate" style="cursor: pointer" alt="diff-menu" src="${h.url('/images/icons/script_gear.png')}" />
34 <img class="diff-menu-activate" style="cursor: pointer" alt="diff-menu" src="${h.url('/images/icons/script_gear.png')}" />
35 <div class="diff-menu" style="display:none">
35 <div class="diff-menu" style="display:none">
36 <ul>
36 <ul>
37 <li>${h.link_to(_('raw diff'),h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='show'))}</li>
37 <li>${h.link_to(_('raw diff'),h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='show'))}</li>
38 <li>${h.link_to(_('download diff'),h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='download'))}</li>
38 <li>${h.link_to(_('download diff'),h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='download'))}</li>
39 <li>${c.ignorews_url()}</li>
39 <li>${c.ignorews_url()}</li>
40 <li>${c.context_url()}</li>
40 <li>${c.context_url()}</li>
41 </ul>
41 </ul>
42 </div>
42 </div>
43 </div>
43 </div>
44 <div class="comments-number" style="float:right;padding-right:5px">${len(c.comments)} comment(s) (${c.inline_cnt} ${_('inline')})</div>
44 <div class="comments-number" style="float:right;padding-right:5px">${len(c.comments)} comment(s) (${c.inline_cnt} ${_('inline')})</div>
45 </div>
45 </div>
46 </div>
46 </div>
47 <div id="changeset_content">
47 <div id="changeset_content">
48 <div class="container">
48 <div class="container">
49 <div class="left">
49 <div class="left">
50 <div class="author">
50 <div class="author">
51 <div class="gravatar">
51 <div class="gravatar">
52 <img alt="gravatar" src="${h.gravatar_url(h.email(c.changeset.author),20)}"/>
52 <img alt="gravatar" src="${h.gravatar_url(h.email(c.changeset.author),20)}"/>
53 </div>
53 </div>
54 <span>${h.person(c.changeset.author)}</span><br/>
54 <span>${h.person(c.changeset.author)}</span><br/>
55 <span><a href="mailto:${h.email_or_none(c.changeset.author)}">${h.email_or_none(c.changeset.author)}</a></span><br/>
55 <span><a href="mailto:${h.email_or_none(c.changeset.author)}">${h.email_or_none(c.changeset.author)}</a></span><br/>
56 </div>
56 </div>
57 <div class="message">${h.wrap_paragraphs(c.changeset.message)}</div>
57 <div class="message">${h.wrap_paragraphs(c.changeset.message)}</div>
58 </div>
58 </div>
59 <div class="right">
59 <div class="right">
60 <div class="changes">
60 <div class="changes">
61 % if len(c.changeset.affected_files) <= c.affected_files_cut_off:
61 % if len(c.changeset.affected_files) <= c.affected_files_cut_off:
62 <span class="removed" title="${_('removed')}">${len(c.changeset.removed)}</span>
62 <span class="removed" title="${_('removed')}">${len(c.changeset.removed)}</span>
63 <span class="changed" title="${_('changed')}">${len(c.changeset.changed)}</span>
63 <span class="changed" title="${_('changed')}">${len(c.changeset.changed)}</span>
64 <span class="added" title="${_('added')}">${len(c.changeset.added)}</span>
64 <span class="added" title="${_('added')}">${len(c.changeset.added)}</span>
65 % else:
65 % else:
66 <span class="removed" title="${_('affected %s files') % len(c.changeset.affected_files)}">!</span>
66 <span class="removed" title="${_('affected %s files') % len(c.changeset.affected_files)}">!</span>
67 <span class="changed" title="${_('affected %s files') % len(c.changeset.affected_files)}">!</span>
67 <span class="changed" title="${_('affected %s files') % len(c.changeset.affected_files)}">!</span>
68 <span class="added" title="${_('affected %s files') % len(c.changeset.affected_files)}">!</span>
68 <span class="added" title="${_('affected %s files') % len(c.changeset.affected_files)}">!</span>
69 % endif
69 % endif
70 </div>
70 </div>
71
71
72 %if c.changeset.parents:
72 %if c.changeset.parents:
73 %for p_cs in reversed(c.changeset.parents):
73 %for p_cs in reversed(c.changeset.parents):
74 <div class="parent">${_('Parent')}
74 <div class="parent">${_('Parent')}
75 <span class="changeset_id">${p_cs.revision}:<span class="changeset_hash">${h.link_to(h.short_id(p_cs.raw_id),
75 <span class="changeset_id">${p_cs.revision}:<span class="changeset_hash">${h.link_to(h.short_id(p_cs.raw_id),
76 h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}</span></span>
76 h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}</span></span>
77 </div>
77 </div>
78 %endfor
78 %endfor
79 %else:
79 %else:
80 <div class="parent">${_('No parents')}</div>
80 <div class="parent">${_('No parents')}</div>
81 %endif
81 %endif
82 <span class="logtags">
82 <span class="logtags">
83 %if len(c.changeset.parents)>1:
83 %if len(c.changeset.parents)>1:
84 <span class="merge">${_('merge')}</span>
84 <span class="merge">${_('merge')}</span>
85 %endif
85 %endif
86 <span class="branchtag" title="${'%s %s' % (_('branch'),c.changeset.branch)}">
86 <span class="branchtag" title="${'%s %s' % (_('branch'),c.changeset.branch)}">
87 ${h.link_to(c.changeset.branch,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}</span>
87 ${h.link_to(c.changeset.branch,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}</span>
88 %for tag in c.changeset.tags:
88 %for tag in c.changeset.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=c.changeset.raw_id))}</span>
90 ${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}</span>
91 %endfor
91 %endfor
92 </span>
92 </span>
93 </div>
93 </div>
94 </div>
94 </div>
95 <span style="font-size:1.1em;font-weight: bold">
95 <span>
96 ${_('%s files affected with %s additions and %s deletions.') % (len(c.changeset.affected_files),c.lines_added,c.lines_deleted)}
96 ${_('%s files affected with %s additions and %s deletions:') % (len(c.changeset.affected_files),c.lines_added,c.lines_deleted)}
97 </span>
97 </span>
98 <div class="cs_files">
98 <div class="cs_files">
99 %for change,filenode,diff,cs1,cs2,stat in c.changes:
99 %for change,filenode,diff,cs1,cs2,stat in c.changes:
100 <div class="cs_${change}">
100 <div class="cs_${change}">
101 <div class="node">
101 <div class="node">
102 %if change != 'removed':
102 %if change != 'removed':
103 ${h.link_to(h.safe_unicode(filenode.path),c.anchor_url(filenode.changeset.raw_id,filenode.path))}
103 ${h.link_to(h.safe_unicode(filenode.path),c.anchor_url(filenode.changeset.raw_id,filenode.path))}
104 %else:
104 %else:
105 ${h.link_to(h.safe_unicode(filenode.path),h.url.current(anchor=h.FID('',filenode.path)))}
105 ${h.link_to(h.safe_unicode(filenode.path),h.url.current(anchor=h.FID('',filenode.path)))}
106 %endif
106 %endif
107 </div>
107 </div>
108 <div class="changes">${h.fancy_file_stats(stat)}</div>
108 <div class="changes">${h.fancy_file_stats(stat)}</div>
109 </div>
109 </div>
110 %endfor
110 %endfor
111 % if c.cut_off:
111 % if c.cut_off:
112 ${_('Changeset was too big and was cut off...')}
112 ${_('Changeset was too big and was cut off...')}
113 % endif
113 % endif
114 </div>
114 </div>
115 </div>
115 </div>
116
116
117 </div>
117 </div>
118
118
119 ## diff block
119 ## diff block
120 <%namespace name="diff_block" file="/changeset/diff_block.html"/>
120 <%namespace name="diff_block" file="/changeset/diff_block.html"/>
121 ${diff_block.diff_block(c.changes)}
121 ${diff_block.diff_block(c.changes)}
122
122
123 ## template for inline comment form
123 ## template for inline comment form
124 <%namespace name="comment" file="/changeset/changeset_file_comment.html"/>
124 <%namespace name="comment" file="/changeset/changeset_file_comment.html"/>
125 ${comment.comment_inline_form(c.changeset)}
125 ${comment.comment_inline_form(c.changeset)}
126
126
127 ${comment.comments(c.changeset)}
127 ${comment.comments(c.changeset)}
128
128
129 <script type="text/javascript">
129 <script type="text/javascript">
130 var deleteComment = function(comment_id){
130 var deleteComment = function(comment_id){
131
131
132 var url = "${url('changeset_comment_delete',repo_name=c.repo_name,comment_id='__COMMENT_ID__')}".replace('__COMMENT_ID__',comment_id);
132 var url = "${url('changeset_comment_delete',repo_name=c.repo_name,comment_id='__COMMENT_ID__')}".replace('__COMMENT_ID__',comment_id);
133 var postData = '_method=delete';
133 var postData = '_method=delete';
134 var success = function(o){
134 var success = function(o){
135 var n = YUD.get('comment-'+comment_id);
135 var n = YUD.get('comment-'+comment_id);
136 n.parentNode.removeChild(n);
136 n.parentNode.removeChild(n);
137 }
137 }
138 ajaxPOST(url,postData,success);
138 ajaxPOST(url,postData,success);
139 }
139 }
140
140
141 YUE.onDOMReady(function(){
141 YUE.onDOMReady(function(){
142
142
143 YUE.on(YUQ('.diff-menu-activate'),'click',function(e){
143 YUE.on(YUQ('.diff-menu-activate'),'click',function(e){
144 var act = e.currentTarget.nextElementSibling;
144 var act = e.currentTarget.nextElementSibling;
145
145
146 if(YUD.hasClass(act,'active')){
146 if(YUD.hasClass(act,'active')){
147 YUD.removeClass(act,'active');
147 YUD.removeClass(act,'active');
148 YUD.setStyle(act,'display','none');
148 YUD.setStyle(act,'display','none');
149 }else{
149 }else{
150 YUD.addClass(act,'active');
150 YUD.addClass(act,'active');
151 YUD.setStyle(act,'display','');
151 YUD.setStyle(act,'display','');
152 }
152 }
153 });
153 });
154
154
155 YUE.on(YUQ('.show-inline-comments'),'change',function(e){
155 YUE.on(YUQ('.show-inline-comments'),'change',function(e){
156 var show = 'none';
156 var show = 'none';
157 var target = e.currentTarget;
157 var target = e.currentTarget;
158 if(target.checked){
158 if(target.checked){
159 var show = ''
159 var show = ''
160 }
160 }
161 var boxid = YUD.getAttribute(target,'id_for');
161 var boxid = YUD.getAttribute(target,'id_for');
162 var comments = YUQ('#{0} .inline-comments'.format(boxid));
162 var comments = YUQ('#{0} .inline-comments'.format(boxid));
163 for(c in comments){
163 for(c in comments){
164 YUD.setStyle(comments[c],'display',show);
164 YUD.setStyle(comments[c],'display',show);
165 }
165 }
166 var btns = YUQ('#{0} .inline-comments-button'.format(boxid));
166 var btns = YUQ('#{0} .inline-comments-button'.format(boxid));
167 for(c in btns){
167 for(c in btns){
168 YUD.setStyle(btns[c],'display',show);
168 YUD.setStyle(btns[c],'display',show);
169 }
169 }
170 })
170 })
171
171
172 YUE.on(YUQ('.line'),'click',function(e){
172 YUE.on(YUQ('.line'),'click',function(e){
173 var tr = e.currentTarget;
173 var tr = e.currentTarget;
174 injectInlineForm(tr);
174 injectInlineForm(tr);
175 });
175 });
176
176
177 // inject comments into they proper positions
177 // inject comments into they proper positions
178 var file_comments = YUQ('.inline-comment-placeholder');
178 var file_comments = YUQ('.inline-comment-placeholder');
179
179
180 for (f in file_comments){
180 for (f in file_comments){
181 var box = file_comments[f];
181 var box = file_comments[f];
182 var inlines = box.children;
182 var inlines = box.children;
183 for(var i=0; i<inlines.length; i++){
183 for(var i=0; i<inlines.length; i++){
184 try{
184 try{
185
185
186 var inline = inlines[i];
186 var inline = inlines[i];
187 var lineno = YUD.getAttribute(inlines[i],'line');
187 var lineno = YUD.getAttribute(inlines[i],'line');
188 var lineid = "{0}_{1}".format(YUD.getAttribute(inline,'target_id'),lineno);
188 var lineid = "{0}_{1}".format(YUD.getAttribute(inline,'target_id'),lineno);
189 var target_line = YUD.get(lineid);
189 var target_line = YUD.get(lineid);
190
190
191 var add = createInlineAddButton(target_line.parentNode,'${_("add another comment")}');
191 var add = createInlineAddButton(target_line.parentNode,'${_("add another comment")}');
192 YUD.insertAfter(add,target_line.parentNode);
192 YUD.insertAfter(add,target_line.parentNode);
193
193
194 var comment = new YAHOO.util.Element(tableTr('inline-comments',inline.innerHTML))
194 var comment = new YAHOO.util.Element(tableTr('inline-comments',inline.innerHTML))
195 YUD.insertAfter(comment,target_line.parentNode);
195 YUD.insertAfter(comment,target_line.parentNode);
196 }catch(e){
196 }catch(e){
197 console.log(e);
197 console.log(e);
198 }
198 }
199 }
199 }
200 }
200 }
201 })
201 })
202
202
203 </script>
203 </script>
204
204
205 </div>
205 </div>
206 </%def>
206 </%def>
General Comments 0
You need to be logged in to leave comments. Login now