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