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