##// END OF EJS Templates
gui-improvments
marcink -
r1304:5a96551e beta
parent child Browse files
Show More
@@ -1,71 +1,79 b''
1 """The base Controller API
1 """The base Controller API
2
2
3 Provides the BaseController class for subclassing.
3 Provides the BaseController class for subclassing.
4 """
4 """
5 import copy
6
5 from pylons import config, tmpl_context as c, request, session
7 from pylons import config, tmpl_context as c, request, session
6 from pylons.controllers import WSGIController
8 from pylons.controllers import WSGIController
7 from pylons.templating import render_mako as render
9 from pylons.templating import render_mako as render
10
8 from rhodecode import __version__
11 from rhodecode import __version__
9 from rhodecode.lib.auth import AuthUser
12 from rhodecode.lib.auth import AuthUser
10 from rhodecode.lib.utils import get_repo_slug
13 from rhodecode.lib.utils import get_repo_slug
11 from rhodecode.model import meta
14 from rhodecode.model import meta
12 from rhodecode.model.scm import ScmModel
15 from rhodecode.model.scm import ScmModel
13 from rhodecode import BACKENDS
16 from rhodecode import BACKENDS
14
17
15 class BaseController(WSGIController):
18 class BaseController(WSGIController):
16
19
17 def __before__(self):
20 def __before__(self):
18 c.rhodecode_version = __version__
21 c.rhodecode_version = __version__
19 c.rhodecode_name = config.get('rhodecode_title')
22 c.rhodecode_name = config.get('rhodecode_title')
20 c.ga_code = config.get('rhodecode_ga_code')
23 c.ga_code = config.get('rhodecode_ga_code')
21 c.repo_name = get_repo_slug(request)
24 c.repo_name = get_repo_slug(request)
22 c.backends = BACKENDS.keys()
25 c.backends = BACKENDS.keys()
23 self.cut_off_limit = int(config.get('cut_off_limit'))
26 self.cut_off_limit = int(config.get('cut_off_limit'))
24
27
25 self.sa = meta.Session()
28 self.sa = meta.Session()
26 self.scm_model = ScmModel(self.sa)
29 self.scm_model = ScmModel(self.sa)
27 c.cached_repo_list = self.scm_model.get_repos()
30 c.cached_repo_list = self.scm_model.get_repos()
28 #c.unread_journal = scm_model.get_unread_journal()
31 #c.unread_journal = scm_model.get_unread_journal()
29
32
30 def __call__(self, environ, start_response):
33 def __call__(self, environ, start_response):
31 """Invoke the Controller"""
34 """Invoke the Controller"""
32 # WSGIController.__call__ dispatches to the Controller method
35 # WSGIController.__call__ dispatches to the Controller method
33 # the request is routed to. This routing information is
36 # the request is routed to. This routing information is
34 # available in environ['pylons.routes_dict']
37 # available in environ['pylons.routes_dict']
35 try:
38 try:
36 #putting this here makes sure that we update permissions every time
39 #putting this here makes sure that we update permissions every time
37 api_key = request.GET.get('api_key')
40 api_key = request.GET.get('api_key')
38 user_id = getattr(session.get('rhodecode_user'), 'user_id', None)
41 user_id = getattr(session.get('rhodecode_user'), 'user_id', None)
39 self.rhodecode_user = c.rhodecode_user = AuthUser(user_id, api_key)
42 self.rhodecode_user = c.rhodecode_user = AuthUser(user_id, api_key)
40 self.rhodecode_user.set_authenticated(
43 self.rhodecode_user.set_authenticated(
41 getattr(session.get('rhodecode_user'),
44 getattr(session.get('rhodecode_user'),
42 'is_authenticated', False))
45 'is_authenticated', False))
43 session['rhodecode_user'] = self.rhodecode_user
46 session['rhodecode_user'] = self.rhodecode_user
44 session.save()
47 session.save()
45 return WSGIController.__call__(self, environ, start_response)
48 return WSGIController.__call__(self, environ, start_response)
46 finally:
49 finally:
47 meta.Session.remove()
50 meta.Session.remove()
48
51
49
52
50 class BaseRepoController(BaseController):
53 class BaseRepoController(BaseController):
51 """
54 """
52 Base class for controllers responsible for loading all needed data
55 Base class for controllers responsible for loading all needed data
53 for those controllers, loaded items are
56 for those controllers, loaded items are
54
57
55 c.rhodecode_repo: instance of scm repository (taken from cache)
58 c.rhodecode_repo: instance of scm repository (taken from cache)
56
59
57 """
60 """
58
61
59 def __before__(self):
62 def __before__(self):
60 super(BaseRepoController, self).__before__()
63 super(BaseRepoController, self).__before__()
61 if c.repo_name:
64 if c.repo_name:
62
65
63 c.rhodecode_repo, dbrepo = self.scm_model.get(c.repo_name,
66 r, dbrepo = self.scm_model.get(c.repo_name, retval='repo')
64 retval='repo')
65
67
66 if c.rhodecode_repo is not None:
68 if r is not None:
67 c.repository_followers = self.scm_model.get_followers(c.repo_name)
69 c.repository_followers = self.scm_model.get_followers(c.repo_name)
68 c.repository_forks = self.scm_model.get_forks(c.repo_name)
70 c.repository_forks = self.scm_model.get_forks(c.repo_name)
69 else:
71 else:
70 c.repository_followers = 0
72 c.repository_followers = 0
71 c.repository_forks = 0
73 c.repository_forks = 0
74
75 # Since RhodeCode uses heavy memory caching we make a deepcopy
76 # of object taken from cache. This way we lose reference to cached
77 # instance in memory and keep it relatively small even for
78 # very large number of changesets
79 c.rhodecode_repo = copy.copy(r)
@@ -1,2546 +1,2567 b''
1 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
1 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
2 border:0;
2 border:0;
3 outline:0;
3 outline:0;
4 font-size:100%;
4 font-size:100%;
5 vertical-align:baseline;
5 vertical-align:baseline;
6 background:transparent;
6 background:transparent;
7 margin:0;
7 margin:0;
8 padding:0;
8 padding:0;
9 }
9 }
10
10
11 body {
11 body {
12 line-height:1;
12 line-height:1;
13 height:100%;
13 height:100%;
14 background:url("../images/background.png") repeat scroll 0 0 #B0B0B0;
14 background:url("../images/background.png") repeat scroll 0 0 #B0B0B0;
15 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
15 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
16 font-size:12px;
16 font-size:12px;
17 color:#000;
17 color:#000;
18 margin:0;
18 margin:0;
19 padding:0;
19 padding:0;
20 }
20 }
21
21
22 ol,ul {
22 ol,ul {
23 list-style:none;
23 list-style:none;
24 }
24 }
25
25
26 blockquote,q {
26 blockquote,q {
27 quotes:none;
27 quotes:none;
28 }
28 }
29
29
30 blockquote:before,blockquote:after,q:before,q:after {
30 blockquote:before,blockquote:after,q:before,q:after {
31 content:none;
31 content:none;
32 }
32 }
33
33
34 :focus {
34 :focus {
35 outline:0;
35 outline:0;
36 }
36 }
37
37
38 del {
38 del {
39 text-decoration:line-through;
39 text-decoration:line-through;
40 }
40 }
41
41
42 table {
42 table {
43 border-collapse:collapse;
43 border-collapse:collapse;
44 border-spacing:0;
44 border-spacing:0;
45 }
45 }
46
46
47 html {
47 html {
48 height:100%;
48 height:100%;
49 }
49 }
50
50
51 a {
51 a {
52 color:#003367;
52 color:#003367;
53 text-decoration:none;
53 text-decoration:none;
54 cursor:pointer;
54 cursor:pointer;
55 font-weight:700;
55 font-weight:700;
56 }
56 }
57
57
58 a:hover {
58 a:hover {
59 color:#316293;
59 color:#316293;
60 text-decoration:underline;
60 text-decoration:underline;
61 }
61 }
62
62
63 h1,h2,h3,h4,h5,h6 {
63 h1,h2,h3,h4,h5,h6 {
64 color:#292929;
64 color:#292929;
65 font-weight:700;
65 font-weight:700;
66 }
66 }
67
67
68 h1 {
68 h1 {
69 font-size:22px;
69 font-size:22px;
70 }
70 }
71
71
72 h2 {
72 h2 {
73 font-size:20px;
73 font-size:20px;
74 }
74 }
75
75
76 h3 {
76 h3 {
77 font-size:18px;
77 font-size:18px;
78 }
78 }
79
79
80 h4 {
80 h4 {
81 font-size:16px;
81 font-size:16px;
82 }
82 }
83
83
84 h5 {
84 h5 {
85 font-size:14px;
85 font-size:14px;
86 }
86 }
87
87
88 h6 {
88 h6 {
89 font-size:11px;
89 font-size:11px;
90 }
90 }
91
91
92 ul.circle {
92 ul.circle {
93 list-style-type:circle;
93 list-style-type:circle;
94 }
94 }
95
95
96 ul.disc {
96 ul.disc {
97 list-style-type:disc;
97 list-style-type:disc;
98 }
98 }
99
99
100 ul.square {
100 ul.square {
101 list-style-type:square;
101 list-style-type:square;
102 }
102 }
103
103
104 ol.lower-roman {
104 ol.lower-roman {
105 list-style-type:lower-roman;
105 list-style-type:lower-roman;
106 }
106 }
107
107
108 ol.upper-roman {
108 ol.upper-roman {
109 list-style-type:upper-roman;
109 list-style-type:upper-roman;
110 }
110 }
111
111
112 ol.lower-alpha {
112 ol.lower-alpha {
113 list-style-type:lower-alpha;
113 list-style-type:lower-alpha;
114 }
114 }
115
115
116 ol.upper-alpha {
116 ol.upper-alpha {
117 list-style-type:upper-alpha;
117 list-style-type:upper-alpha;
118 }
118 }
119
119
120 ol.decimal {
120 ol.decimal {
121 list-style-type:decimal;
121 list-style-type:decimal;
122 }
122 }
123
123
124 div.color {
124 div.color {
125 clear:both;
125 clear:both;
126 overflow:hidden;
126 overflow:hidden;
127 position:absolute;
127 position:absolute;
128 background:#FFF;
128 background:#FFF;
129 margin:7px 0 0 60px;
129 margin:7px 0 0 60px;
130 padding:1px 1px 1px 0;
130 padding:1px 1px 1px 0;
131 }
131 }
132
132
133 div.color a {
133 div.color a {
134 width:15px;
134 width:15px;
135 height:15px;
135 height:15px;
136 display:block;
136 display:block;
137 float:left;
137 float:left;
138 margin:0 0 0 1px;
138 margin:0 0 0 1px;
139 padding:0;
139 padding:0;
140 }
140 }
141
141
142 div.options {
142 div.options {
143 clear:both;
143 clear:both;
144 overflow:hidden;
144 overflow:hidden;
145 position:absolute;
145 position:absolute;
146 background:#FFF;
146 background:#FFF;
147 margin:7px 0 0 162px;
147 margin:7px 0 0 162px;
148 padding:0;
148 padding:0;
149 }
149 }
150
150
151 div.options a {
151 div.options a {
152 height:1%;
152 height:1%;
153 display:block;
153 display:block;
154 text-decoration:none;
154 text-decoration:none;
155 margin:0;
155 margin:0;
156 padding:3px 8px;
156 padding:3px 8px;
157 }
157 }
158
158
159 .top-left-rounded-corner {
159 .top-left-rounded-corner {
160 -webkit-border-top-left-radius: 8px;
160 -webkit-border-top-left-radius: 8px;
161 -khtml-border-radius-topleft: 8px;
161 -khtml-border-radius-topleft: 8px;
162 -moz-border-radius-topleft: 8px;
162 -moz-border-radius-topleft: 8px;
163 border-top-left-radius: 8px;
163 border-top-left-radius: 8px;
164 }
164 }
165
165
166 .top-right-rounded-corner {
166 .top-right-rounded-corner {
167 -webkit-border-top-right-radius: 8px;
167 -webkit-border-top-right-radius: 8px;
168 -khtml-border-radius-topright: 8px;
168 -khtml-border-radius-topright: 8px;
169 -moz-border-radius-topright: 8px;
169 -moz-border-radius-topright: 8px;
170 border-top-right-radius: 8px;
170 border-top-right-radius: 8px;
171 }
171 }
172
172
173 .bottom-left-rounded-corner {
173 .bottom-left-rounded-corner {
174 -webkit-border-bottom-left-radius: 8px;
174 -webkit-border-bottom-left-radius: 8px;
175 -khtml-border-radius-bottomleft: 8px;
175 -khtml-border-radius-bottomleft: 8px;
176 -moz-border-radius-bottomleft: 8px;
176 -moz-border-radius-bottomleft: 8px;
177 border-bottom-left-radius: 8px;
177 border-bottom-left-radius: 8px;
178 }
178 }
179
179
180 .bottom-right-rounded-corner {
180 .bottom-right-rounded-corner {
181 -webkit-border-bottom-right-radius: 8px;
181 -webkit-border-bottom-right-radius: 8px;
182 -khtml-border-radius-bottomright: 8px;
182 -khtml-border-radius-bottomright: 8px;
183 -moz-border-radius-bottomright: 8px;
183 -moz-border-radius-bottomright: 8px;
184 border-bottom-right-radius: 8px;
184 border-bottom-right-radius: 8px;
185 }
185 }
186
186
187
187
188 #header {
188 #header {
189 margin:0;
189 margin:0;
190 padding:0 10px;
190 padding:0 10px;
191 }
191 }
192
192
193
193
194 #header ul#logged-user{
194 #header ul#logged-user{
195 margin-bottom:5px !important;
195 margin-bottom:5px !important;
196 -webkit-border-radius: 0px 0px 8px 8px;
196 -webkit-border-radius: 0px 0px 8px 8px;
197 -khtml-border-radius: 0px 0px 8px 8px;
197 -khtml-border-radius: 0px 0px 8px 8px;
198 -moz-border-radius: 0px 0px 8px 8px;
198 -moz-border-radius: 0px 0px 8px 8px;
199 border-radius: 0px 0px 8px 8px;
199 border-radius: 0px 0px 8px 8px;
200 height:37px;
200 height:37px;
201 background:url("../images/header_inner.png") repeat-x scroll 0 0 #003367
201 background:url("../images/header_inner.png") repeat-x scroll 0 0 #003367
202 }
202 }
203
203
204 #header ul#logged-user li {
204 #header ul#logged-user li {
205 list-style:none;
205 list-style:none;
206 float:left;
206 float:left;
207 margin:8px 0 0;
207 margin:8px 0 0;
208 padding:4px 12px;
208 padding:4px 12px;
209 border-left: 1px solid #316293;
209 border-left: 1px solid #316293;
210 }
210 }
211
211
212 #header ul#logged-user li.first {
212 #header ul#logged-user li.first {
213 border-left:none;
213 border-left:none;
214 margin:4px;
214 margin:4px;
215 }
215 }
216
216
217 #header ul#logged-user li.first div.gravatar {
217 #header ul#logged-user li.first div.gravatar {
218 margin-top:-2px;
218 margin-top:-2px;
219 }
219 }
220
220
221 #header ul#logged-user li.first div.account {
221 #header ul#logged-user li.first div.account {
222 padding-top:4px;
222 padding-top:4px;
223 float:left;
223 float:left;
224 }
224 }
225
225
226 #header ul#logged-user li.last {
226 #header ul#logged-user li.last {
227 border-right:none;
227 border-right:none;
228 }
228 }
229
229
230 #header ul#logged-user li a {
230 #header ul#logged-user li a {
231 color:#fff;
231 color:#fff;
232 font-weight:700;
232 font-weight:700;
233 text-decoration:none;
233 text-decoration:none;
234 }
234 }
235
235
236 #header ul#logged-user li a:hover {
236 #header ul#logged-user li a:hover {
237 text-decoration:underline;
237 text-decoration:underline;
238 }
238 }
239
239
240 #header ul#logged-user li.highlight a {
240 #header ul#logged-user li.highlight a {
241 color:#fff;
241 color:#fff;
242 }
242 }
243
243
244 #header ul#logged-user li.highlight a:hover {
244 #header ul#logged-user li.highlight a:hover {
245 color:#FFF;
245 color:#FFF;
246 }
246 }
247
247
248 #header #header-inner {
248 #header #header-inner {
249 height:40px;
249 height:40px;
250 clear:both;
250 clear:both;
251 position:relative;
251 position:relative;
252 background:#003367 url("../images/header_inner.png") repeat-x;
252 background:#003367 url("../images/header_inner.png") repeat-x;
253 border-bottom:2px solid #fff;
253 border-bottom:2px solid #fff;
254 margin:0;
254 margin:0;
255 padding:0;
255 padding:0;
256 }
256 }
257
257
258 #header #header-inner #home a {
258 #header #header-inner #home a {
259 height:40px;
259 height:40px;
260 width:46px;
260 width:46px;
261 display:block;
261 display:block;
262 background:url("../images/button_home.png");
262 background:url("../images/button_home.png");
263 background-position:0 0;
263 background-position:0 0;
264 margin:0;
264 margin:0;
265 padding:0;
265 padding:0;
266 }
266 }
267
267
268 #header #header-inner #home a:hover {
268 #header #header-inner #home a:hover {
269 background-position:0 -40px;
269 background-position:0 -40px;
270 }
270 }
271
271
272 #header #header-inner #logo h1 {
272 #header #header-inner #logo h1 {
273 color:#FFF;
273 color:#FFF;
274 font-size:18px;
274 font-size:18px;
275 margin:10px 0 0 13px;
275 margin:10px 0 0 13px;
276 padding:0;
276 padding:0;
277 }
277 }
278
278
279 #header #header-inner #logo a {
279 #header #header-inner #logo a {
280 color:#fff;
280 color:#fff;
281 text-decoration:none;
281 text-decoration:none;
282 }
282 }
283
283
284 #header #header-inner #logo a:hover {
284 #header #header-inner #logo a:hover {
285 color:#bfe3ff;
285 color:#bfe3ff;
286 }
286 }
287
287
288 #header #header-inner #quick,#header #header-inner #quick ul {
288 #header #header-inner #quick,#header #header-inner #quick ul {
289 position:relative;
289 position:relative;
290 float:right;
290 float:right;
291 list-style-type:none;
291 list-style-type:none;
292 list-style-position:outside;
292 list-style-position:outside;
293 margin:10px 5px 0 0;
293 margin:10px 5px 0 0;
294 padding:0;
294 padding:0;
295 }
295 }
296
296
297 #header #header-inner #quick li {
297 #header #header-inner #quick li {
298 position:relative;
298 position:relative;
299 float:left;
299 float:left;
300 margin:0 5px 0 0;
300 margin:0 5px 0 0;
301 padding:0;
301 padding:0;
302 }
302 }
303
303
304 #header #header-inner #quick li a {
304 #header #header-inner #quick li a {
305 top:0;
305 top:0;
306 left:0;
306 left:0;
307 height:1%;
307 height:1%;
308 display:block;
308 display:block;
309 clear:both;
309 clear:both;
310 overflow:hidden;
310 overflow:hidden;
311 color:#FFF;
311 color:#FFF;
312 font-weight:700;
312 font-weight:700;
313 text-decoration:none;
313 text-decoration:none;
314 background:#369 url("../images/quick_l.png") no-repeat top left;
314 background:#369 url("../images/quick_l.png") no-repeat top left;
315 padding:0;
315 padding:0;
316 }
316 }
317
317
318 #header #header-inner #quick li span.short {
318 #header #header-inner #quick li span.short {
319 padding:9px 6px 8px 6px;
319 padding:9px 6px 8px 6px;
320 }
320 }
321
321
322 #header #header-inner #quick li span {
322 #header #header-inner #quick li span {
323 top:0;
323 top:0;
324 right:0;
324 right:0;
325 height:1%;
325 height:1%;
326 display:block;
326 display:block;
327 float:left;
327 float:left;
328 background:url("../images/quick_r.png") no-repeat top right;
328 background:url("../images/quick_r.png") no-repeat top right;
329 border-left:1px solid #3f6f9f;
329 border-left:1px solid #3f6f9f;
330 margin:0;
330 margin:0;
331 padding:10px 12px 8px 10px;
331 padding:10px 12px 8px 10px;
332 }
332 }
333
333
334 #header #header-inner #quick li span.normal {
334 #header #header-inner #quick li span.normal {
335 border:none;
335 border:none;
336 padding:10px 12px 8px;
336 padding:10px 12px 8px;
337 }
337 }
338
338
339 #header #header-inner #quick li span.icon {
339 #header #header-inner #quick li span.icon {
340 top:0;
340 top:0;
341 left:0;
341 left:0;
342 border-left:none;
342 border-left:none;
343 background:url("../images/quick_l.png") no-repeat top left;
343 background:url("../images/quick_l.png") no-repeat top left;
344 border-right:1px solid #2e5c89;
344 border-right:1px solid #2e5c89;
345 padding:8px 8px 4px;
345 padding:8px 8px 4px;
346 }
346 }
347
347
348 #header #header-inner #quick li span.icon_short {
348 #header #header-inner #quick li span.icon_short {
349 top:0;
349 top:0;
350 left:0;
350 left:0;
351 border-left:none;
351 border-left:none;
352 background:url("../images/quick_l.png") no-repeat top left;
352 background:url("../images/quick_l.png") no-repeat top left;
353 border-right:1px solid #2e5c89;
353 border-right:1px solid #2e5c89;
354 padding:9px 4px 4px;
354 padding:9px 4px 4px;
355 }
355 }
356
356
357 #header #header-inner #quick li a:hover {
357 #header #header-inner #quick li a:hover {
358 background:#4e4e4e url("../images/quick_l_selected.png") no-repeat top left;
358 background:#4e4e4e url("../images/quick_l_selected.png") no-repeat top left;
359 }
359 }
360
360
361 #header #header-inner #quick li a:hover span {
361 #header #header-inner #quick li a:hover span {
362 border-left:1px solid #545454;
362 border-left:1px solid #545454;
363 background:url("../images/quick_r_selected.png") no-repeat top right;
363 background:url("../images/quick_r_selected.png") no-repeat top right;
364 }
364 }
365
365
366 #header #header-inner #quick li a:hover span.icon,#header #header-inner #quick li a:hover span.icon_short {
366 #header #header-inner #quick li a:hover span.icon,#header #header-inner #quick li a:hover span.icon_short {
367 border-left:none;
367 border-left:none;
368 border-right:1px solid #464646;
368 border-right:1px solid #464646;
369 background:url("../images/quick_l_selected.png") no-repeat top left;
369 background:url("../images/quick_l_selected.png") no-repeat top left;
370 }
370 }
371
371
372
372
373 #header #header-inner #quick ul {
373 #header #header-inner #quick ul {
374 top:29px;
374 top:29px;
375 right:0;
375 right:0;
376 min-width:200px;
376 min-width:200px;
377 display:none;
377 display:none;
378 position:absolute;
378 position:absolute;
379 background:#FFF;
379 background:#FFF;
380 border:1px solid #666;
380 border:1px solid #666;
381 border-top:1px solid #003367;
381 border-top:1px solid #003367;
382 z-index:100;
382 z-index:100;
383 margin:0;
383 margin:0;
384 padding:0;
384 padding:0;
385 }
385 }
386
386
387 #header #header-inner #quick ul.repo_switcher {
387 #header #header-inner #quick ul.repo_switcher {
388 max-height:275px;
388 max-height:275px;
389 overflow-x:hidden;
389 overflow-x:hidden;
390 overflow-y:auto;
390 overflow-y:auto;
391 }
391 }
392 #header #header-inner #quick ul.repo_switcher li.qfilter_rs {
392 #header #header-inner #quick ul.repo_switcher li.qfilter_rs {
393 float:none;
393 float:none;
394 margin:0;
394 margin:0;
395 border-bottom:2px solid #003367;
395 border-bottom:2px solid #003367;
396 }
396 }
397
397
398
398
399 #header #header-inner #quick .repo_switcher_type{
399 #header #header-inner #quick .repo_switcher_type{
400 position:absolute;
400 position:absolute;
401 left:0;
401 left:0;
402 top:9px;
402 top:9px;
403
403
404 }
404 }
405 #header #header-inner #quick li ul li {
405 #header #header-inner #quick li ul li {
406 border-bottom:1px solid #ddd;
406 border-bottom:1px solid #ddd;
407 }
407 }
408
408
409 #header #header-inner #quick li ul li a {
409 #header #header-inner #quick li ul li a {
410 width:182px;
410 width:182px;
411 height:auto;
411 height:auto;
412 display:block;
412 display:block;
413 float:left;
413 float:left;
414 background:#FFF;
414 background:#FFF;
415 color:#003367;
415 color:#003367;
416 font-weight:400;
416 font-weight:400;
417 margin:0;
417 margin:0;
418 padding:7px 9px;
418 padding:7px 9px;
419 }
419 }
420
420
421 #header #header-inner #quick li ul li a:hover {
421 #header #header-inner #quick li ul li a:hover {
422 color:#000;
422 color:#000;
423 background:#FFF;
423 background:#FFF;
424 }
424 }
425
425
426 #header #header-inner #quick ul ul {
426 #header #header-inner #quick ul ul {
427 top:auto;
427 top:auto;
428 }
428 }
429
429
430 #header #header-inner #quick li ul ul {
430 #header #header-inner #quick li ul ul {
431 right:200px;
431 right:200px;
432 max-height:275px;
432 max-height:275px;
433 overflow:auto;
433 overflow:auto;
434 overflow-x:hidden;
434 overflow-x:hidden;
435 white-space:normal;
435 white-space:normal;
436 }
436 }
437
437
438 #header #header-inner #quick li ul li a.journal,#header #header-inner #quick li ul li a.journal:hover {
438 #header #header-inner #quick li ul li a.journal,#header #header-inner #quick li ul li a.journal:hover {
439 background:url("../images/icons/book.png") no-repeat scroll 4px 9px #FFF;
439 background:url("../images/icons/book.png") no-repeat scroll 4px 9px #FFF;
440 width:167px;
440 width:167px;
441 margin:0;
441 margin:0;
442 padding:12px 9px 7px 24px;
442 padding:12px 9px 7px 24px;
443 }
443 }
444
444
445 #header #header-inner #quick li ul li a.private_repo,#header #header-inner #quick li ul li a.private_repo:hover {
445 #header #header-inner #quick li ul li a.private_repo,#header #header-inner #quick li ul li a.private_repo:hover {
446 background:url("../images/icons/lock.png") no-repeat scroll 4px 9px #FFF;
446 background:url("../images/icons/lock.png") no-repeat scroll 4px 9px #FFF;
447 min-width:167px;
447 min-width:167px;
448 margin:0;
448 margin:0;
449 padding:12px 9px 7px 24px;
449 padding:12px 9px 7px 24px;
450 }
450 }
451
451
452 #header #header-inner #quick li ul li a.public_repo,#header #header-inner #quick li ul li a.public_repo:hover {
452 #header #header-inner #quick li ul li a.public_repo,#header #header-inner #quick li ul li a.public_repo:hover {
453 background:url("../images/icons/lock_open.png") no-repeat scroll 4px 9px #FFF;
453 background:url("../images/icons/lock_open.png") no-repeat scroll 4px 9px #FFF;
454 min-width:167px;
454 min-width:167px;
455 margin:0;
455 margin:0;
456 padding:12px 9px 7px 24px;
456 padding:12px 9px 7px 24px;
457 }
457 }
458
458
459 #header #header-inner #quick li ul li a.hg,#header #header-inner #quick li ul li a.hg:hover {
459 #header #header-inner #quick li ul li a.hg,#header #header-inner #quick li ul li a.hg:hover {
460 background:url("../images/icons/hgicon.png") no-repeat scroll 4px 9px #FFF;
460 background:url("../images/icons/hgicon.png") no-repeat scroll 4px 9px #FFF;
461 min-width:167px;
461 min-width:167px;
462 margin:0 0 0 14px;
462 margin:0 0 0 14px;
463 padding:12px 9px 7px 24px;
463 padding:12px 9px 7px 24px;
464 }
464 }
465
465
466 #header #header-inner #quick li ul li a.git,#header #header-inner #quick li ul li a.git:hover {
466 #header #header-inner #quick li ul li a.git,#header #header-inner #quick li ul li a.git:hover {
467 background:url("../images/icons/giticon.png") no-repeat scroll 4px 9px #FFF;
467 background:url("../images/icons/giticon.png") no-repeat scroll 4px 9px #FFF;
468 min-width:167px;
468 min-width:167px;
469 margin:0 0 0 14px;
469 margin:0 0 0 14px;
470 padding:12px 9px 7px 24px;
470 padding:12px 9px 7px 24px;
471 }
471 }
472
472
473 #header #header-inner #quick li ul li a.repos,#header #header-inner #quick li ul li a.repos:hover {
473 #header #header-inner #quick li ul li a.repos,#header #header-inner #quick li ul li a.repos:hover {
474 background:url("../images/icons/database_edit.png") no-repeat scroll 4px 9px #FFF;
474 background:url("../images/icons/database_edit.png") no-repeat scroll 4px 9px #FFF;
475 width:167px;
475 width:167px;
476 margin:0;
476 margin:0;
477 padding:12px 9px 7px 24px;
477 padding:12px 9px 7px 24px;
478 }
478 }
479
479
480 #header #header-inner #quick li ul li a.users,#header #header-inner #quick li ul li a.users:hover {
480 #header #header-inner #quick li ul li a.users,#header #header-inner #quick li ul li a.users:hover {
481 background:#FFF url("../images/icons/user_edit.png") no-repeat 4px 9px;
481 background:#FFF url("../images/icons/user_edit.png") no-repeat 4px 9px;
482 width:167px;
482 width:167px;
483 margin:0;
483 margin:0;
484 padding:12px 9px 7px 24px;
484 padding:12px 9px 7px 24px;
485 }
485 }
486
486
487 #header #header-inner #quick li ul li a.groups,#header #header-inner #quick li ul li a.groups:hover {
487 #header #header-inner #quick li ul li a.groups,#header #header-inner #quick li ul li a.groups:hover {
488 background:#FFF url("../images/icons/group_edit.png") no-repeat 4px 9px;
488 background:#FFF url("../images/icons/group_edit.png") no-repeat 4px 9px;
489 width:167px;
489 width:167px;
490 margin:0;
490 margin:0;
491 padding:12px 9px 7px 24px;
491 padding:12px 9px 7px 24px;
492 }
492 }
493
493
494 #header #header-inner #quick li ul li a.settings,#header #header-inner #quick li ul li a.settings:hover {
494 #header #header-inner #quick li ul li a.settings,#header #header-inner #quick li ul li a.settings:hover {
495 background:#FFF url("../images/icons/cog.png") no-repeat 4px 9px;
495 background:#FFF url("../images/icons/cog.png") no-repeat 4px 9px;
496 width:167px;
496 width:167px;
497 margin:0;
497 margin:0;
498 padding:12px 9px 7px 24px;
498 padding:12px 9px 7px 24px;
499 }
499 }
500
500
501 #header #header-inner #quick li ul li a.permissions,#header #header-inner #quick li ul li a.permissions:hover {
501 #header #header-inner #quick li ul li a.permissions,#header #header-inner #quick li ul li a.permissions:hover {
502 background:#FFF url("../images/icons/key.png") no-repeat 4px 9px;
502 background:#FFF url("../images/icons/key.png") no-repeat 4px 9px;
503 width:167px;
503 width:167px;
504 margin:0;
504 margin:0;
505 padding:12px 9px 7px 24px;
505 padding:12px 9px 7px 24px;
506 }
506 }
507
507
508 #header #header-inner #quick li ul li a.ldap,#header #header-inner #quick li ul li a.ldap:hover {
508 #header #header-inner #quick li ul li a.ldap,#header #header-inner #quick li ul li a.ldap:hover {
509 background:#FFF url("../images/icons/server_key.png") no-repeat 4px 9px;
509 background:#FFF url("../images/icons/server_key.png") no-repeat 4px 9px;
510 width:167px;
510 width:167px;
511 margin:0;
511 margin:0;
512 padding:12px 9px 7px 24px;
512 padding:12px 9px 7px 24px;
513 }
513 }
514
514
515 #header #header-inner #quick li ul li a.fork,#header #header-inner #quick li ul li a.fork:hover {
515 #header #header-inner #quick li ul li a.fork,#header #header-inner #quick li ul li a.fork:hover {
516 background:#FFF url("../images/icons/arrow_divide.png") no-repeat 4px 9px;
516 background:#FFF url("../images/icons/arrow_divide.png") no-repeat 4px 9px;
517 width:167px;
517 width:167px;
518 margin:0;
518 margin:0;
519 padding:12px 9px 7px 24px;
519 padding:12px 9px 7px 24px;
520 }
520 }
521
521
522 #header #header-inner #quick li ul li a.search,#header #header-inner #quick li ul li a.search:hover {
522 #header #header-inner #quick li ul li a.search,#header #header-inner #quick li ul li a.search:hover {
523 background:#FFF url("../images/icons/search_16.png") no-repeat 4px 9px;
523 background:#FFF url("../images/icons/search_16.png") no-repeat 4px 9px;
524 width:167px;
524 width:167px;
525 margin:0;
525 margin:0;
526 padding:12px 9px 7px 24px;
526 padding:12px 9px 7px 24px;
527 }
527 }
528
528
529 #header #header-inner #quick li ul li a.delete,#header #header-inner #quick li ul li a.delete:hover {
529 #header #header-inner #quick li ul li a.delete,#header #header-inner #quick li ul li a.delete:hover {
530 background:#FFF url("../images/icons/delete.png") no-repeat 4px 9px;
530 background:#FFF url("../images/icons/delete.png") no-repeat 4px 9px;
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.branches,#header #header-inner #quick li ul li a.branches:hover {
536 #header #header-inner #quick li ul li a.branches,#header #header-inner #quick li ul li a.branches:hover {
537 background:#FFF url("../images/icons/arrow_branch.png") no-repeat 4px 9px;
537 background:#FFF url("../images/icons/arrow_branch.png") no-repeat 4px 9px;
538 width:167px;
538 width:167px;
539 margin:0;
539 margin:0;
540 padding:12px 9px 7px 24px;
540 padding:12px 9px 7px 24px;
541 }
541 }
542
542
543 #header #header-inner #quick li ul li a.tags,#header #header-inner #quick li ul li a.tags:hover {
543 #header #header-inner #quick li ul li a.tags,#header #header-inner #quick li ul li a.tags:hover {
544 background:#FFF url("../images/icons/tag_blue.png") no-repeat 4px 9px;
544 background:#FFF url("../images/icons/tag_blue.png") no-repeat 4px 9px;
545 width:167px;
545 width:167px;
546 margin:0;
546 margin:0;
547 padding:12px 9px 7px 24px;
547 padding:12px 9px 7px 24px;
548 }
548 }
549
549
550 #header #header-inner #quick li ul li a.admin,#header #header-inner #quick li ul li a.admin:hover {
550 #header #header-inner #quick li ul li a.admin,#header #header-inner #quick li ul li a.admin:hover {
551 background:#FFF url("../images/icons/cog_edit.png") no-repeat 4px 9px;
551 background:#FFF url("../images/icons/cog_edit.png") no-repeat 4px 9px;
552 width:167px;
552 width:167px;
553 margin:0;
553 margin:0;
554 padding:12px 9px 7px 24px;
554 padding:12px 9px 7px 24px;
555 }
555 }
556
556
557 #content #left {
557 #content #left {
558 left:0;
558 left:0;
559 width:280px;
559 width:280px;
560 position:absolute;
560 position:absolute;
561 }
561 }
562
562
563 #content #right {
563 #content #right {
564 margin:0 60px 10px 290px;
564 margin:0 60px 10px 290px;
565 }
565 }
566
566
567 #content div.box {
567 #content div.box {
568 clear:both;
568 clear:both;
569 overflow:hidden;
569 overflow:hidden;
570 background:#fff;
570 background:#fff;
571 margin:0 0 10px;
571 margin:0 0 10px;
572 padding:0 0 10px;
572 padding:0 0 10px;
573 }
573 }
574
574
575 #content div.box-left {
575 #content div.box-left {
576 width:49%;
576 width:49%;
577 clear:none;
577 clear:none;
578 float:left;
578 float:left;
579 margin:0 0 10px;
579 margin:0 0 10px;
580 }
580 }
581
581
582 #content div.box-right {
582 #content div.box-right {
583 width:49%;
583 width:49%;
584 clear:none;
584 clear:none;
585 float:right;
585 float:right;
586 margin:0 0 10px;
586 margin:0 0 10px;
587 }
587 }
588
588
589 #content div.box div.title {
589 #content div.box div.title {
590 clear:both;
590 clear:both;
591 overflow:hidden;
591 overflow:hidden;
592 background:#369 url("../images/header_inner.png") repeat-x;
592 background:#369 url("../images/header_inner.png") repeat-x;
593 margin:0 0 20px;
593 margin:0 0 20px;
594 padding:0;
594 padding:0;
595 }
595 }
596
596
597 #content div.box div.title h5 {
597 #content div.box div.title h5 {
598 float:left;
598 float:left;
599 border:none;
599 border:none;
600 color:#fff;
600 color:#fff;
601 text-transform:uppercase;
601 text-transform:uppercase;
602 margin:0;
602 margin:0;
603 padding:11px 0 11px 10px;
603 padding:11px 0 11px 10px;
604 }
604 }
605
605
606 #content div.box div.title ul.links li {
606 #content div.box div.title ul.links li {
607 list-style:none;
607 list-style:none;
608 float:left;
608 float:left;
609 margin:0;
609 margin:0;
610 padding:0;
610 padding:0;
611 }
611 }
612
612
613 #content div.box div.title ul.links li a {
613 #content div.box div.title ul.links li a {
614 border-left: 1px solid #316293;
614 border-left: 1px solid #316293;
615 color: #FFFFFF;
615 color: #FFFFFF;
616 display: block;
616 display: block;
617 float: left;
617 float: left;
618 font-size: 13px;
618 font-size: 13px;
619 font-weight: 700;
619 font-weight: 700;
620 height: 1%;
620 height: 1%;
621 margin: 0;
621 margin: 0;
622 padding: 11px 22px 12px;
622 padding: 11px 22px 12px;
623 text-decoration: none;
623 text-decoration: none;
624 }
624 }
625
625
626 #content div.box h1,#content div.box h2,#content div.box h3,#content div.box h4,#content div.box h5,#content div.box h6 {
626 #content div.box h1,#content div.box h2,#content div.box h3,#content div.box h4,#content div.box h5,#content div.box h6 {
627 clear:both;
627 clear:both;
628 overflow:hidden;
628 overflow:hidden;
629 border-bottom:1px solid #DDD;
629 border-bottom:1px solid #DDD;
630 margin:10px 20px;
630 margin:10px 20px;
631 padding:0 0 15px;
631 padding:0 0 15px;
632 }
632 }
633
633
634 #content div.box p {
634 #content div.box p {
635 color:#5f5f5f;
635 color:#5f5f5f;
636 font-size:12px;
636 font-size:12px;
637 line-height:150%;
637 line-height:150%;
638 margin:0 24px 10px;
638 margin:0 24px 10px;
639 padding:0;
639 padding:0;
640 }
640 }
641
641
642 #content div.box blockquote {
642 #content div.box blockquote {
643 border-left:4px solid #DDD;
643 border-left:4px solid #DDD;
644 color:#5f5f5f;
644 color:#5f5f5f;
645 font-size:11px;
645 font-size:11px;
646 line-height:150%;
646 line-height:150%;
647 margin:0 34px;
647 margin:0 34px;
648 padding:0 0 0 14px;
648 padding:0 0 0 14px;
649 }
649 }
650
650
651 #content div.box blockquote p {
651 #content div.box blockquote p {
652 margin:10px 0;
652 margin:10px 0;
653 padding:0;
653 padding:0;
654 }
654 }
655
655
656 #content div.box dl {
656 #content div.box dl {
657 margin:10px 24px;
657 margin:10px 24px;
658 }
658 }
659
659
660 #content div.box dt {
660 #content div.box dt {
661 font-size:12px;
661 font-size:12px;
662 margin:0;
662 margin:0;
663 }
663 }
664
664
665 #content div.box dd {
665 #content div.box dd {
666 font-size:12px;
666 font-size:12px;
667 margin:0;
667 margin:0;
668 padding:8px 0 8px 15px;
668 padding:8px 0 8px 15px;
669 }
669 }
670
670
671 #content div.box li {
671 #content div.box li {
672 font-size:12px;
672 font-size:12px;
673 padding:4px 0;
673 padding:4px 0;
674 }
674 }
675
675
676 #content div.box ul.disc,#content div.box ul.circle {
676 #content div.box ul.disc,#content div.box ul.circle {
677 margin:10px 24px 10px 38px;
677 margin:10px 24px 10px 38px;
678 }
678 }
679
679
680 #content div.box ul.square {
680 #content div.box ul.square {
681 margin:10px 24px 10px 40px;
681 margin:10px 24px 10px 40px;
682 }
682 }
683
683
684 #content div.box img.left {
684 #content div.box img.left {
685 border:none;
685 border:none;
686 float:left;
686 float:left;
687 margin:10px 10px 10px 0;
687 margin:10px 10px 10px 0;
688 }
688 }
689
689
690 #content div.box img.right {
690 #content div.box img.right {
691 border:none;
691 border:none;
692 float:right;
692 float:right;
693 margin:10px 0 10px 10px;
693 margin:10px 0 10px 10px;
694 }
694 }
695
695
696 #content div.box div.messages {
696 #content div.box div.messages {
697 clear:both;
697 clear:both;
698 overflow:hidden;
698 overflow:hidden;
699 margin:0 20px;
699 margin:0 20px;
700 padding:0;
700 padding:0;
701 }
701 }
702
702
703 #content div.box div.message {
703 #content div.box div.message {
704 clear:both;
704 clear:both;
705 overflow:hidden;
705 overflow:hidden;
706 margin:0;
706 margin:0;
707 padding:10px 0;
707 padding:10px 0;
708 }
708 }
709
709
710 #content div.box div.message a {
710 #content div.box div.message a {
711 font-weight:400 !important;
711 font-weight:400 !important;
712 }
712 }
713
713
714 #content div.box div.message div.image {
714 #content div.box div.message div.image {
715 float:left;
715 float:left;
716 margin:9px 0 0 5px;
716 margin:9px 0 0 5px;
717 padding:6px;
717 padding:6px;
718 }
718 }
719
719
720 #content div.box div.message div.image img {
720 #content div.box div.message div.image img {
721 vertical-align:middle;
721 vertical-align:middle;
722 margin:0;
722 margin:0;
723 }
723 }
724
724
725 #content div.box div.message div.text {
725 #content div.box div.message div.text {
726 float:left;
726 float:left;
727 margin:0;
727 margin:0;
728 padding:9px 6px;
728 padding:9px 6px;
729 }
729 }
730
730
731 #content div.box div.message div.dismiss a {
731 #content div.box div.message div.dismiss a {
732 height:16px;
732 height:16px;
733 width:16px;
733 width:16px;
734 display:block;
734 display:block;
735 background:url("../images/icons/cross.png") no-repeat;
735 background:url("../images/icons/cross.png") no-repeat;
736 margin:15px 14px 0 0;
736 margin:15px 14px 0 0;
737 padding:0;
737 padding:0;
738 }
738 }
739
739
740 #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 {
740 #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 {
741 border:none;
741 border:none;
742 margin:0;
742 margin:0;
743 padding:0;
743 padding:0;
744 }
744 }
745
745
746 #content div.box div.message div.text span {
746 #content div.box div.message div.text span {
747 height:1%;
747 height:1%;
748 display:block;
748 display:block;
749 margin:0;
749 margin:0;
750 padding:5px 0 0;
750 padding:5px 0 0;
751 }
751 }
752
752
753 #content div.box div.message-error {
753 #content div.box div.message-error {
754 height:1%;
754 height:1%;
755 clear:both;
755 clear:both;
756 overflow:hidden;
756 overflow:hidden;
757 background:#FBE3E4;
757 background:#FBE3E4;
758 border:1px solid #FBC2C4;
758 border:1px solid #FBC2C4;
759 color:#860006;
759 color:#860006;
760 }
760 }
761
761
762 #content div.box div.message-error h6 {
762 #content div.box div.message-error h6 {
763 color:#860006;
763 color:#860006;
764 }
764 }
765
765
766 #content div.box div.message-warning {
766 #content div.box div.message-warning {
767 height:1%;
767 height:1%;
768 clear:both;
768 clear:both;
769 overflow:hidden;
769 overflow:hidden;
770 background:#FFF6BF;
770 background:#FFF6BF;
771 border:1px solid #FFD324;
771 border:1px solid #FFD324;
772 color:#5f5200;
772 color:#5f5200;
773 }
773 }
774
774
775 #content div.box div.message-warning h6 {
775 #content div.box div.message-warning h6 {
776 color:#5f5200;
776 color:#5f5200;
777 }
777 }
778
778
779 #content div.box div.message-notice {
779 #content div.box div.message-notice {
780 height:1%;
780 height:1%;
781 clear:both;
781 clear:both;
782 overflow:hidden;
782 overflow:hidden;
783 background:#8FBDE0;
783 background:#8FBDE0;
784 border:1px solid #6BACDE;
784 border:1px solid #6BACDE;
785 color:#003863;
785 color:#003863;
786 }
786 }
787
787
788 #content div.box div.message-notice h6 {
788 #content div.box div.message-notice h6 {
789 color:#003863;
789 color:#003863;
790 }
790 }
791
791
792 #content div.box div.message-success {
792 #content div.box div.message-success {
793 height:1%;
793 height:1%;
794 clear:both;
794 clear:both;
795 overflow:hidden;
795 overflow:hidden;
796 background:#E6EFC2;
796 background:#E6EFC2;
797 border:1px solid #C6D880;
797 border:1px solid #C6D880;
798 color:#4e6100;
798 color:#4e6100;
799 }
799 }
800
800
801 #content div.box div.message-success h6 {
801 #content div.box div.message-success h6 {
802 color:#4e6100;
802 color:#4e6100;
803 }
803 }
804
804
805 #content div.box div.form div.fields div.field {
805 #content div.box div.form div.fields div.field {
806 height:1%;
806 height:1%;
807 border-bottom:1px solid #DDD;
807 border-bottom:1px solid #DDD;
808 clear:both;
808 clear:both;
809 margin:0;
809 margin:0;
810 padding:10px 0;
810 padding:10px 0;
811 }
811 }
812
812
813 #content div.box div.form div.fields div.field-first {
813 #content div.box div.form div.fields div.field-first {
814 padding:0 0 10px;
814 padding:0 0 10px;
815 }
815 }
816
816
817 #content div.box div.form div.fields div.field-noborder {
817 #content div.box div.form div.fields div.field-noborder {
818 border-bottom:0 !important;
818 border-bottom:0 !important;
819 }
819 }
820
820
821 #content div.box div.form div.fields div.field span.error-message {
821 #content div.box div.form div.fields div.field span.error-message {
822 height:1%;
822 height:1%;
823 display:inline-block;
823 display:inline-block;
824 color:red;
824 color:red;
825 margin:8px 0 0 4px;
825 margin:8px 0 0 4px;
826 padding:0;
826 padding:0;
827 }
827 }
828
828
829 #content div.box div.form div.fields div.field span.success {
829 #content div.box div.form div.fields div.field span.success {
830 height:1%;
830 height:1%;
831 display:block;
831 display:block;
832 color:#316309;
832 color:#316309;
833 margin:8px 0 0;
833 margin:8px 0 0;
834 padding:0;
834 padding:0;
835 }
835 }
836
836
837 #content div.box div.form div.fields div.field div.label {
837 #content div.box div.form div.fields div.field div.label {
838 left:70px;
838 left:70px;
839 width:auto;
839 width:auto;
840 position:absolute;
840 position:absolute;
841 margin:0;
841 margin:0;
842 padding:8px 0 0 5px;
842 padding:8px 0 0 5px;
843 }
843 }
844
844
845 #content div.box-left div.form div.fields div.field div.label,#content div.box-right div.form div.fields div.field div.label {
845 #content div.box-left div.form div.fields div.field div.label,#content div.box-right div.form div.fields div.field div.label {
846 clear:both;
846 clear:both;
847 overflow:hidden;
847 overflow:hidden;
848 left:0;
848 left:0;
849 width:auto;
849 width:auto;
850 position:relative;
850 position:relative;
851 margin:0;
851 margin:0;
852 padding:0 0 8px;
852 padding:0 0 8px;
853 }
853 }
854
854
855 #content div.box div.form div.fields div.field div.label-select {
855 #content div.box div.form div.fields div.field div.label-select {
856 padding:5px 0 0 5px;
856 padding:5px 0 0 5px;
857 }
857 }
858
858
859 #content div.box-left div.form div.fields div.field div.label-select,#content div.box-right div.form div.fields div.field div.label-select {
859 #content div.box-left div.form div.fields div.field div.label-select,#content div.box-right div.form div.fields div.field div.label-select {
860 padding:0 0 8px;
860 padding:0 0 8px;
861 }
861 }
862
862
863 #content div.box-left div.form div.fields div.field div.label-textarea,#content div.box-right div.form div.fields div.field div.label-textarea {
863 #content div.box-left div.form div.fields div.field div.label-textarea,#content div.box-right div.form div.fields div.field div.label-textarea {
864 padding:0 0 8px !important;
864 padding:0 0 8px !important;
865 }
865 }
866
866
867 #content div.box div.form div.fields div.field div.label label, div.label label{
867 #content div.box div.form div.fields div.field div.label label, div.label label{
868 color:#393939;
868 color:#393939;
869 font-weight:700;
869 font-weight:700;
870 }
870 }
871
871
872 #content div.box div.form div.fields div.field div.input {
872 #content div.box div.form div.fields div.field div.input {
873 margin:0 0 0 200px;
873 margin:0 0 0 200px;
874 }
874 }
875 #content div.box-left div.form div.fields div.field div.input,#content div.box-right div.form div.fields div.field div.input {
875 #content div.box-left div.form div.fields div.field div.input,#content div.box-right div.form div.fields div.field div.input {
876 margin:0 0 0 0px;
876 margin:0 0 0 0px;
877 }
877 }
878
878
879 #content div.box div.form div.fields div.field div.input input {
879 #content div.box div.form div.fields div.field div.input input {
880 background:#FFF;
880 background:#FFF;
881 border-top:1px solid #b3b3b3;
881 border-top:1px solid #b3b3b3;
882 border-left:1px solid #b3b3b3;
882 border-left:1px solid #b3b3b3;
883 border-right:1px solid #eaeaea;
883 border-right:1px solid #eaeaea;
884 border-bottom:1px solid #eaeaea;
884 border-bottom:1px solid #eaeaea;
885 color:#000;
885 color:#000;
886 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
886 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
887 font-size:11px;
887 font-size:11px;
888 margin:0;
888 margin:0;
889 padding:7px 7px 6px;
889 padding:7px 7px 6px;
890 }
890 }
891
891
892
892
893
893
894 #content div.box div.form div.fields div.field div.input input.small {
894 #content div.box div.form div.fields div.field div.input input.small {
895 width:30%;
895 width:30%;
896 }
896 }
897
897
898 #content div.box div.form div.fields div.field div.input input.medium {
898 #content div.box div.form div.fields div.field div.input input.medium {
899 width:55%;
899 width:55%;
900 }
900 }
901
901
902 #content div.box div.form div.fields div.field div.input input.large {
902 #content div.box div.form div.fields div.field div.input input.large {
903 width:85%;
903 width:85%;
904 }
904 }
905
905
906 #content div.box div.form div.fields div.field div.input input.date {
906 #content div.box div.form div.fields div.field div.input input.date {
907 width:177px;
907 width:177px;
908 }
908 }
909
909
910 #content div.box div.form div.fields div.field div.input input.button {
910 #content div.box div.form div.fields div.field div.input input.button {
911 background:#D4D0C8;
911 background:#D4D0C8;
912 border-top:1px solid #FFF;
912 border-top:1px solid #FFF;
913 border-left:1px solid #FFF;
913 border-left:1px solid #FFF;
914 border-right:1px solid #404040;
914 border-right:1px solid #404040;
915 border-bottom:1px solid #404040;
915 border-bottom:1px solid #404040;
916 color:#000;
916 color:#000;
917 margin:0;
917 margin:0;
918 padding:4px 8px;
918 padding:4px 8px;
919 }
919 }
920
920
921 #content div.box div.form div.fields div.field div.textarea {
921 #content div.box div.form div.fields div.field div.textarea {
922 border-top:1px solid #b3b3b3;
922 border-top:1px solid #b3b3b3;
923 border-left:1px solid #b3b3b3;
923 border-left:1px solid #b3b3b3;
924 border-right:1px solid #eaeaea;
924 border-right:1px solid #eaeaea;
925 border-bottom:1px solid #eaeaea;
925 border-bottom:1px solid #eaeaea;
926 margin:0 0 0 200px;
926 margin:0 0 0 200px;
927 padding:10px;
927 padding:10px;
928 }
928 }
929
929
930 #content div.box div.form div.fields div.field div.textarea-editor {
930 #content div.box div.form div.fields div.field div.textarea-editor {
931 border:1px solid #ddd;
931 border:1px solid #ddd;
932 padding:0;
932 padding:0;
933 }
933 }
934
934
935 #content div.box div.form div.fields div.field div.textarea textarea {
935 #content div.box div.form div.fields div.field div.textarea textarea {
936 width:100%;
936 width:100%;
937 height:220px;
937 height:220px;
938 overflow:hidden;
938 overflow:hidden;
939 background:#FFF;
939 background:#FFF;
940 color:#000;
940 color:#000;
941 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
941 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
942 font-size:11px;
942 font-size:11px;
943 outline:none;
943 outline:none;
944 border-width:0;
944 border-width:0;
945 margin:0;
945 margin:0;
946 padding:0;
946 padding:0;
947 }
947 }
948
948
949 #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 {
949 #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 {
950 width:100%;
950 width:100%;
951 height:100px;
951 height:100px;
952 }
952 }
953
953
954 #content div.box div.form div.fields div.field div.textarea table {
954 #content div.box div.form div.fields div.field div.textarea table {
955 width:100%;
955 width:100%;
956 border:none;
956 border:none;
957 margin:0;
957 margin:0;
958 padding:0;
958 padding:0;
959 }
959 }
960
960
961 #content div.box div.form div.fields div.field div.textarea table td {
961 #content div.box div.form div.fields div.field div.textarea table td {
962 background:#DDD;
962 background:#DDD;
963 border:none;
963 border:none;
964 padding:0;
964 padding:0;
965 }
965 }
966
966
967 #content div.box div.form div.fields div.field div.textarea table td table {
967 #content div.box div.form div.fields div.field div.textarea table td table {
968 width:auto;
968 width:auto;
969 border:none;
969 border:none;
970 margin:0;
970 margin:0;
971 padding:0;
971 padding:0;
972 }
972 }
973
973
974 #content div.box div.form div.fields div.field div.textarea table td table td {
974 #content div.box div.form div.fields div.field div.textarea table td table td {
975 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
975 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
976 font-size:11px;
976 font-size:11px;
977 padding:5px 5px 5px 0;
977 padding:5px 5px 5px 0;
978 }
978 }
979
979
980 #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 {
980 #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 {
981 background:#f6f6f6;
981 background:#f6f6f6;
982 border-color:#666;
982 border-color:#666;
983 }
983 }
984
984
985 div.form div.fields div.field div.button {
985 div.form div.fields div.field div.button {
986 margin:0;
986 margin:0;
987 padding:0 0 0 8px;
987 padding:0 0 0 8px;
988 }
988 }
989
989
990 div.form div.fields div.field div.highlight .ui-button {
990 div.form div.fields div.field div.highlight .ui-button {
991 background:#4e85bb url("../images/button_highlight.png") repeat-x;
991 background:#4e85bb url("../images/button_highlight.png") repeat-x;
992 border-top:1px solid #5c91a4;
992 border-top:1px solid #5c91a4;
993 border-left:1px solid #2a6f89;
993 border-left:1px solid #2a6f89;
994 border-right:1px solid #2b7089;
994 border-right:1px solid #2b7089;
995 border-bottom:1px solid #1a6480;
995 border-bottom:1px solid #1a6480;
996 color:#FFF;
996 color:#FFF;
997 margin:0;
997 margin:0;
998 padding:6px 12px;
998 padding:6px 12px;
999 }
999 }
1000
1000
1001 div.form div.fields div.field div.highlight .ui-state-hover {
1001 div.form div.fields div.field div.highlight .ui-state-hover {
1002 background:#46a0c1 url("../images/button_highlight_selected.png") repeat-x;
1002 background:#46a0c1 url("../images/button_highlight_selected.png") repeat-x;
1003 border-top:1px solid #78acbf;
1003 border-top:1px solid #78acbf;
1004 border-left:1px solid #34819e;
1004 border-left:1px solid #34819e;
1005 border-right:1px solid #35829f;
1005 border-right:1px solid #35829f;
1006 border-bottom:1px solid #257897;
1006 border-bottom:1px solid #257897;
1007 color:#FFF;
1007 color:#FFF;
1008 margin:0;
1008 margin:0;
1009 padding:6px 12px;
1009 padding:6px 12px;
1010 }
1010 }
1011
1011
1012 #content div.box div.form div.fields div.buttons div.highlight input.ui-button {
1012 #content div.box div.form div.fields div.buttons div.highlight input.ui-button {
1013 background:#4e85bb url("../images/button_highlight.png") repeat-x;
1013 background:#4e85bb url("../images/button_highlight.png") repeat-x;
1014 border-top:1px solid #5c91a4;
1014 border-top:1px solid #5c91a4;
1015 border-left:1px solid #2a6f89;
1015 border-left:1px solid #2a6f89;
1016 border-right:1px solid #2b7089;
1016 border-right:1px solid #2b7089;
1017 border-bottom:1px solid #1a6480;
1017 border-bottom:1px solid #1a6480;
1018 color:#fff;
1018 color:#fff;
1019 margin:0;
1019 margin:0;
1020 padding:6px 12px;
1020 padding:6px 12px;
1021 }
1021 }
1022
1022
1023 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-hover {
1023 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-hover {
1024 background:#46a0c1 url("../images/button_highlight_selected.png") repeat-x;
1024 background:#46a0c1 url("../images/button_highlight_selected.png") repeat-x;
1025 border-top:1px solid #78acbf;
1025 border-top:1px solid #78acbf;
1026 border-left:1px solid #34819e;
1026 border-left:1px solid #34819e;
1027 border-right:1px solid #35829f;
1027 border-right:1px solid #35829f;
1028 border-bottom:1px solid #257897;
1028 border-bottom:1px solid #257897;
1029 color:#fff;
1029 color:#fff;
1030 margin:0;
1030 margin:0;
1031 padding:6px 12px;
1031 padding:6px 12px;
1032 }
1032 }
1033
1033
1034 #content div.box table {
1034 #content div.box table {
1035 width:100%;
1035 width:100%;
1036 border-collapse:collapse;
1036 border-collapse:collapse;
1037 margin:0;
1037 margin:0;
1038 padding:0;
1038 padding:0;
1039 }
1039 }
1040
1040
1041 #content div.box table th {
1041 #content div.box table th {
1042 background:#eee;
1042 background:#eee;
1043 border-bottom:1px solid #ddd;
1043 border-bottom:1px solid #ddd;
1044 padding:5px 0px 5px 5px;
1044 padding:5px 0px 5px 5px;
1045 }
1045 }
1046
1046
1047 #content div.box table th.left {
1047 #content div.box table th.left {
1048 text-align:left;
1048 text-align:left;
1049 }
1049 }
1050
1050
1051 #content div.box table th.right {
1051 #content div.box table th.right {
1052 text-align:right;
1052 text-align:right;
1053 }
1053 }
1054
1054
1055 #content div.box table th.center {
1055 #content div.box table th.center {
1056 text-align:center;
1056 text-align:center;
1057 }
1057 }
1058
1058
1059 #content div.box table th.selected {
1059 #content div.box table th.selected {
1060 vertical-align:middle;
1060 vertical-align:middle;
1061 padding:0;
1061 padding:0;
1062 }
1062 }
1063
1063
1064 #content div.box table td {
1064 #content div.box table td {
1065 background:#fff;
1065 background:#fff;
1066 border-bottom:1px solid #cdcdcd;
1066 border-bottom:1px solid #cdcdcd;
1067 vertical-align:middle;
1067 vertical-align:middle;
1068 padding:5px;
1068 padding:5px;
1069 }
1069 }
1070
1070
1071 #content div.box table tr.selected td {
1071 #content div.box table tr.selected td {
1072 background:#FFC;
1072 background:#FFC;
1073 }
1073 }
1074
1074
1075 #content div.box table td.selected {
1075 #content div.box table td.selected {
1076 width:3%;
1076 width:3%;
1077 text-align:center;
1077 text-align:center;
1078 vertical-align:middle;
1078 vertical-align:middle;
1079 padding:0;
1079 padding:0;
1080 }
1080 }
1081
1081
1082 #content div.box table td.action {
1082 #content div.box table td.action {
1083 width:45%;
1083 width:45%;
1084 text-align:left;
1084 text-align:left;
1085 }
1085 }
1086
1086
1087 #content div.box table td.date {
1087 #content div.box table td.date {
1088 width:33%;
1088 width:33%;
1089 text-align:center;
1089 text-align:center;
1090 }
1090 }
1091
1091
1092 #content div.box div.action {
1092 #content div.box div.action {
1093 float:right;
1093 float:right;
1094 background:#FFF;
1094 background:#FFF;
1095 text-align:right;
1095 text-align:right;
1096 margin:10px 0 0;
1096 margin:10px 0 0;
1097 padding:0;
1097 padding:0;
1098 }
1098 }
1099
1099
1100 #content div.box div.action select {
1100 #content div.box div.action select {
1101 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1101 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1102 font-size:11px;
1102 font-size:11px;
1103 margin:0;
1103 margin:0;
1104 }
1104 }
1105
1105
1106 #content div.box div.action .ui-selectmenu {
1106 #content div.box div.action .ui-selectmenu {
1107 margin:0;
1107 margin:0;
1108 padding:0;
1108 padding:0;
1109 }
1109 }
1110
1110
1111 #content div.box div.pagination {
1111 #content div.box div.pagination {
1112 height:1%;
1112 height:1%;
1113 clear:both;
1113 clear:both;
1114 overflow:hidden;
1114 overflow:hidden;
1115 margin:10px 0 0;
1115 margin:10px 0 0;
1116 padding:0;
1116 padding:0;
1117 }
1117 }
1118
1118
1119 #content div.box div.pagination ul.pager {
1119 #content div.box div.pagination ul.pager {
1120 float:right;
1120 float:right;
1121 text-align:right;
1121 text-align:right;
1122 margin:0;
1122 margin:0;
1123 padding:0;
1123 padding:0;
1124 }
1124 }
1125
1125
1126 #content div.box div.pagination ul.pager li {
1126 #content div.box div.pagination ul.pager li {
1127 height:1%;
1127 height:1%;
1128 float:left;
1128 float:left;
1129 list-style:none;
1129 list-style:none;
1130 background:#ebebeb url("../images/pager.png") repeat-x;
1130 background:#ebebeb url("../images/pager.png") repeat-x;
1131 border-top:1px solid #dedede;
1131 border-top:1px solid #dedede;
1132 border-left:1px solid #cfcfcf;
1132 border-left:1px solid #cfcfcf;
1133 border-right:1px solid #c4c4c4;
1133 border-right:1px solid #c4c4c4;
1134 border-bottom:1px solid #c4c4c4;
1134 border-bottom:1px solid #c4c4c4;
1135 color:#4A4A4A;
1135 color:#4A4A4A;
1136 font-weight:700;
1136 font-weight:700;
1137 margin:0 0 0 4px;
1137 margin:0 0 0 4px;
1138 padding:0;
1138 padding:0;
1139 }
1139 }
1140
1140
1141 #content div.box div.pagination ul.pager li.separator {
1141 #content div.box div.pagination ul.pager li.separator {
1142 padding:6px;
1142 padding:6px;
1143 }
1143 }
1144
1144
1145 #content div.box div.pagination ul.pager li.current {
1145 #content div.box div.pagination ul.pager li.current {
1146 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1146 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1147 border-top:1px solid #ccc;
1147 border-top:1px solid #ccc;
1148 border-left:1px solid #bebebe;
1148 border-left:1px solid #bebebe;
1149 border-right:1px solid #b1b1b1;
1149 border-right:1px solid #b1b1b1;
1150 border-bottom:1px solid #afafaf;
1150 border-bottom:1px solid #afafaf;
1151 color:#515151;
1151 color:#515151;
1152 padding:6px;
1152 padding:6px;
1153 }
1153 }
1154
1154
1155 #content div.box div.pagination ul.pager li a {
1155 #content div.box div.pagination ul.pager li a {
1156 height:1%;
1156 height:1%;
1157 display:block;
1157 display:block;
1158 float:left;
1158 float:left;
1159 color:#515151;
1159 color:#515151;
1160 text-decoration:none;
1160 text-decoration:none;
1161 margin:0;
1161 margin:0;
1162 padding:6px;
1162 padding:6px;
1163 }
1163 }
1164
1164
1165 #content div.box div.pagination ul.pager li a:hover,#content div.box div.pagination ul.pager li a:active {
1165 #content div.box div.pagination ul.pager li a:hover,#content div.box div.pagination ul.pager li a:active {
1166 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1166 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1167 border-top:1px solid #ccc;
1167 border-top:1px solid #ccc;
1168 border-left:1px solid #bebebe;
1168 border-left:1px solid #bebebe;
1169 border-right:1px solid #b1b1b1;
1169 border-right:1px solid #b1b1b1;
1170 border-bottom:1px solid #afafaf;
1170 border-bottom:1px solid #afafaf;
1171 margin:-1px;
1171 margin:-1px;
1172 }
1172 }
1173
1173
1174 #content div.box div.pagination-wh {
1174 #content div.box div.pagination-wh {
1175 height:1%;
1175 height:1%;
1176 clear:both;
1176 clear:both;
1177 overflow:hidden;
1177 overflow:hidden;
1178 text-align:right;
1178 text-align:right;
1179 margin:10px 0 0;
1179 margin:10px 0 0;
1180 padding:0;
1180 padding:0;
1181 }
1181 }
1182
1182
1183 #content div.box div.pagination-right {
1183 #content div.box div.pagination-right {
1184 float:right;
1184 float:right;
1185 }
1185 }
1186
1186
1187 #content div.box div.pagination-wh a,#content div.box div.pagination-wh span.pager_dotdot {
1187 #content div.box div.pagination-wh a,#content div.box div.pagination-wh span.pager_dotdot {
1188 height:1%;
1188 height:1%;
1189 float:left;
1189 float:left;
1190 background:#ebebeb url("../images/pager.png") repeat-x;
1190 background:#ebebeb url("../images/pager.png") repeat-x;
1191 border-top:1px solid #dedede;
1191 border-top:1px solid #dedede;
1192 border-left:1px solid #cfcfcf;
1192 border-left:1px solid #cfcfcf;
1193 border-right:1px solid #c4c4c4;
1193 border-right:1px solid #c4c4c4;
1194 border-bottom:1px solid #c4c4c4;
1194 border-bottom:1px solid #c4c4c4;
1195 color:#4A4A4A;
1195 color:#4A4A4A;
1196 font-weight:700;
1196 font-weight:700;
1197 margin:0 0 0 4px;
1197 margin:0 0 0 4px;
1198 padding:6px;
1198 padding:6px;
1199 }
1199 }
1200
1200
1201 #content div.box div.pagination-wh span.pager_curpage {
1201 #content div.box div.pagination-wh span.pager_curpage {
1202 height:1%;
1202 height:1%;
1203 float:left;
1203 float:left;
1204 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1204 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1205 border-top:1px solid #ccc;
1205 border-top:1px solid #ccc;
1206 border-left:1px solid #bebebe;
1206 border-left:1px solid #bebebe;
1207 border-right:1px solid #b1b1b1;
1207 border-right:1px solid #b1b1b1;
1208 border-bottom:1px solid #afafaf;
1208 border-bottom:1px solid #afafaf;
1209 color:#515151;
1209 color:#515151;
1210 font-weight:700;
1210 font-weight:700;
1211 margin:0 0 0 4px;
1211 margin:0 0 0 4px;
1212 padding:6px;
1212 padding:6px;
1213 }
1213 }
1214
1214
1215 #content div.box div.pagination-wh a:hover,#content div.box div.pagination-wh a:active {
1215 #content div.box div.pagination-wh a:hover,#content div.box div.pagination-wh a:active {
1216 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1216 background:#b4b4b4 url("../images/pager_selected.png") repeat-x;
1217 border-top:1px solid #ccc;
1217 border-top:1px solid #ccc;
1218 border-left:1px solid #bebebe;
1218 border-left:1px solid #bebebe;
1219 border-right:1px solid #b1b1b1;
1219 border-right:1px solid #b1b1b1;
1220 border-bottom:1px solid #afafaf;
1220 border-bottom:1px solid #afafaf;
1221 text-decoration:none;
1221 text-decoration:none;
1222 }
1222 }
1223
1223
1224 #content div.box div.traffic div.legend {
1224 #content div.box div.traffic div.legend {
1225 clear:both;
1225 clear:both;
1226 overflow:hidden;
1226 overflow:hidden;
1227 border-bottom:1px solid #ddd;
1227 border-bottom:1px solid #ddd;
1228 margin:0 0 10px;
1228 margin:0 0 10px;
1229 padding:0 0 10px;
1229 padding:0 0 10px;
1230 }
1230 }
1231
1231
1232 #content div.box div.traffic div.legend h6 {
1232 #content div.box div.traffic div.legend h6 {
1233 float:left;
1233 float:left;
1234 border:none;
1234 border:none;
1235 margin:0;
1235 margin:0;
1236 padding:0;
1236 padding:0;
1237 }
1237 }
1238
1238
1239 #content div.box div.traffic div.legend li {
1239 #content div.box div.traffic div.legend li {
1240 list-style:none;
1240 list-style:none;
1241 float:left;
1241 float:left;
1242 font-size:11px;
1242 font-size:11px;
1243 margin:0;
1243 margin:0;
1244 padding:0 8px 0 4px;
1244 padding:0 8px 0 4px;
1245 }
1245 }
1246
1246
1247 #content div.box div.traffic div.legend li.visits {
1247 #content div.box div.traffic div.legend li.visits {
1248 border-left:12px solid #edc240;
1248 border-left:12px solid #edc240;
1249 }
1249 }
1250
1250
1251 #content div.box div.traffic div.legend li.pageviews {
1251 #content div.box div.traffic div.legend li.pageviews {
1252 border-left:12px solid #afd8f8;
1252 border-left:12px solid #afd8f8;
1253 }
1253 }
1254
1254
1255 #content div.box div.traffic table {
1255 #content div.box div.traffic table {
1256 width:auto;
1256 width:auto;
1257 }
1257 }
1258
1258
1259 #content div.box div.traffic table td {
1259 #content div.box div.traffic table td {
1260 background:transparent;
1260 background:transparent;
1261 border:none;
1261 border:none;
1262 padding:2px 3px 3px;
1262 padding:2px 3px 3px;
1263 }
1263 }
1264
1264
1265 #content div.box div.traffic table td.legendLabel {
1265 #content div.box div.traffic table td.legendLabel {
1266 padding:0 3px 2px;
1266 padding:0 3px 2px;
1267 }
1267 }
1268
1268
1269 #footer {
1269 #footer {
1270 clear:both;
1270 clear:both;
1271 overflow:hidden;
1271 overflow:hidden;
1272 text-align:right;
1272 text-align:right;
1273 margin:0;
1273 margin:0;
1274 padding:0 10px 4px;
1274 padding:0 10px 4px;
1275 margin:-10px 0 0;
1275 margin:-10px 0 0;
1276 }
1276 }
1277
1277
1278 #footer div#footer-inner {
1278 #footer div#footer-inner {
1279 background:url("../images/header_inner.png") repeat-x scroll 0 0 #003367;
1279 background:url("../images/header_inner.png") repeat-x scroll 0 0 #003367;
1280 border-top:2px solid #FFFFFF;
1280 border-top:2px solid #FFFFFF;
1281 }
1281 }
1282
1282
1283 #footer div#footer-inner p {
1283 #footer div#footer-inner p {
1284 padding:15px 25px 15px 0;
1284 padding:15px 25px 15px 0;
1285 color:#FFF;
1285 color:#FFF;
1286 font-weight:700;
1286 font-weight:700;
1287 }
1287 }
1288 #footer div#footer-inner .footer-link {
1288 #footer div#footer-inner .footer-link {
1289 float:left;
1289 float:left;
1290 padding-left:10px;
1290 padding-left:10px;
1291 }
1291 }
1292 #footer div#footer-inner .footer-link a,#footer div#footer-inner .footer-link-right a {
1292 #footer div#footer-inner .footer-link a,#footer div#footer-inner .footer-link-right a {
1293 color:#FFF;
1293 color:#FFF;
1294 }
1294 }
1295
1295
1296 #login div.title {
1296 #login div.title {
1297 width:420px;
1297 width:420px;
1298 clear:both;
1298 clear:both;
1299 overflow:hidden;
1299 overflow:hidden;
1300 position:relative;
1300 position:relative;
1301 background:#003367 url("../images/header_inner.png") repeat-x;
1301 background:#003367 url("../images/header_inner.png") repeat-x;
1302 margin:0 auto;
1302 margin:0 auto;
1303 padding:0;
1303 padding:0;
1304 }
1304 }
1305
1305
1306 #login div.inner {
1306 #login div.inner {
1307 width:380px;
1307 width:380px;
1308 background:#FFF url("../images/login.png") no-repeat top left;
1308 background:#FFF url("../images/login.png") no-repeat top left;
1309 border-top:none;
1309 border-top:none;
1310 border-bottom:none;
1310 border-bottom:none;
1311 margin:0 auto;
1311 margin:0 auto;
1312 padding:20px;
1312 padding:20px;
1313 }
1313 }
1314
1314
1315 #login div.form div.fields div.field div.label {
1315 #login div.form div.fields div.field div.label {
1316 width:173px;
1316 width:173px;
1317 float:left;
1317 float:left;
1318 text-align:right;
1318 text-align:right;
1319 margin:2px 10px 0 0;
1319 margin:2px 10px 0 0;
1320 padding:5px 0 0 5px;
1320 padding:5px 0 0 5px;
1321 }
1321 }
1322
1322
1323 #login div.form div.fields div.field div.input input {
1323 #login div.form div.fields div.field div.input input {
1324 width:176px;
1324 width:176px;
1325 background:#FFF;
1325 background:#FFF;
1326 border-top:1px solid #b3b3b3;
1326 border-top:1px solid #b3b3b3;
1327 border-left:1px solid #b3b3b3;
1327 border-left:1px solid #b3b3b3;
1328 border-right:1px solid #eaeaea;
1328 border-right:1px solid #eaeaea;
1329 border-bottom:1px solid #eaeaea;
1329 border-bottom:1px solid #eaeaea;
1330 color:#000;
1330 color:#000;
1331 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1331 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1332 font-size:11px;
1332 font-size:11px;
1333 margin:0;
1333 margin:0;
1334 padding:7px 7px 6px;
1334 padding:7px 7px 6px;
1335 }
1335 }
1336
1336
1337 #login div.form div.fields div.buttons {
1337 #login div.form div.fields div.buttons {
1338 clear:both;
1338 clear:both;
1339 overflow:hidden;
1339 overflow:hidden;
1340 border-top:1px solid #DDD;
1340 border-top:1px solid #DDD;
1341 text-align:right;
1341 text-align:right;
1342 margin:0;
1342 margin:0;
1343 padding:10px 0 0;
1343 padding:10px 0 0;
1344 }
1344 }
1345
1345
1346 #login div.form div.links {
1346 #login div.form div.links {
1347 clear:both;
1347 clear:both;
1348 overflow:hidden;
1348 overflow:hidden;
1349 margin:10px 0 0;
1349 margin:10px 0 0;
1350 padding:0 0 2px;
1350 padding:0 0 2px;
1351 }
1351 }
1352
1352
1353 #register div.title {
1353 #register div.title {
1354 clear:both;
1354 clear:both;
1355 overflow:hidden;
1355 overflow:hidden;
1356 position:relative;
1356 position:relative;
1357 background:#003367 url("../images/header_inner.png") repeat-x;
1357 background:#003367 url("../images/header_inner.png") repeat-x;
1358 margin:0 auto;
1358 margin:0 auto;
1359 padding:0;
1359 padding:0;
1360 }
1360 }
1361
1361
1362 #register div.inner {
1362 #register div.inner {
1363 background:#FFF;
1363 background:#FFF;
1364 border-top:none;
1364 border-top:none;
1365 border-bottom:none;
1365 border-bottom:none;
1366 margin:0 auto;
1366 margin:0 auto;
1367 padding:20px;
1367 padding:20px;
1368 }
1368 }
1369
1369
1370 #register div.form div.fields div.field div.label {
1370 #register div.form div.fields div.field div.label {
1371 width:135px;
1371 width:135px;
1372 float:left;
1372 float:left;
1373 text-align:right;
1373 text-align:right;
1374 margin:2px 10px 0 0;
1374 margin:2px 10px 0 0;
1375 padding:5px 0 0 5px;
1375 padding:5px 0 0 5px;
1376 }
1376 }
1377
1377
1378 #register div.form div.fields div.field div.input input {
1378 #register div.form div.fields div.field div.input input {
1379 width:300px;
1379 width:300px;
1380 background:#FFF;
1380 background:#FFF;
1381 border-top:1px solid #b3b3b3;
1381 border-top:1px solid #b3b3b3;
1382 border-left:1px solid #b3b3b3;
1382 border-left:1px solid #b3b3b3;
1383 border-right:1px solid #eaeaea;
1383 border-right:1px solid #eaeaea;
1384 border-bottom:1px solid #eaeaea;
1384 border-bottom:1px solid #eaeaea;
1385 color:#000;
1385 color:#000;
1386 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1386 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1387 font-size:11px;
1387 font-size:11px;
1388 margin:0;
1388 margin:0;
1389 padding:7px 7px 6px;
1389 padding:7px 7px 6px;
1390 }
1390 }
1391
1391
1392 #register div.form div.fields div.buttons {
1392 #register div.form div.fields div.buttons {
1393 clear:both;
1393 clear:both;
1394 overflow:hidden;
1394 overflow:hidden;
1395 border-top:1px solid #DDD;
1395 border-top:1px solid #DDD;
1396 text-align:left;
1396 text-align:left;
1397 margin:0;
1397 margin:0;
1398 padding:10px 0 0 150px;
1398 padding:10px 0 0 150px;
1399 }
1399 }
1400
1400
1401 #register div.form div.fields div.buttons div.highlight input.ui-button {
1401 #register div.form div.fields div.buttons div.highlight input.ui-button {
1402 background:url("../images/button_highlight.png") repeat-x scroll 0 0 #4E85BB;
1402 background:url("../images/button_highlight.png") repeat-x scroll 0 0 #4E85BB;
1403 color:#FFF;
1403 color:#FFF;
1404 border-color:#5C91A4 #2B7089 #1A6480 #2A6F89;
1404 border-color:#5C91A4 #2B7089 #1A6480 #2A6F89;
1405 border-style:solid;
1405 border-style:solid;
1406 border-width:1px;
1406 border-width:1px;
1407 }
1407 }
1408
1408
1409 #register div.form div.activation_msg {
1409 #register div.form div.activation_msg {
1410 padding-top:4px;
1410 padding-top:4px;
1411 padding-bottom:4px;
1411 padding-bottom:4px;
1412 }
1412 }
1413
1413
1414 #journal .journal_day{
1414 #journal .journal_day{
1415 font-size:20px;
1415 font-size:20px;
1416 padding:10px 0px;
1416 padding:10px 0px;
1417 border-bottom:2px solid #DDD;
1417 border-bottom:2px solid #DDD;
1418 margin-left:10px;
1418 margin-left:10px;
1419 margin-right:10px;
1419 margin-right:10px;
1420 }
1420 }
1421
1421
1422 #journal .journal_container{
1422 #journal .journal_container{
1423 padding:5px;
1423 padding:5px;
1424 clear:both;
1424 clear:both;
1425 margin:0px 5px 0px 10px;
1425 margin:0px 5px 0px 10px;
1426 }
1426 }
1427
1427
1428 #journal .journal_action_container{
1428 #journal .journal_action_container{
1429 padding-left:38px;
1429 padding-left:38px;
1430 }
1430 }
1431
1431
1432 #journal .journal_user{
1432 #journal .journal_user{
1433 color: #747474;
1433 color: #747474;
1434 font-size: 14px;
1434 font-size: 14px;
1435 font-weight: bold;
1435 font-weight: bold;
1436 height: 30px;
1436 height: 30px;
1437 }
1437 }
1438 #journal .journal_icon{
1438 #journal .journal_icon{
1439 clear: both;
1439 clear: both;
1440 float: left;
1440 float: left;
1441 padding-right: 4px;
1441 padding-right: 4px;
1442 padding-top: 3px;
1442 padding-top: 3px;
1443 }
1443 }
1444 #journal .journal_action{
1444 #journal .journal_action{
1445 padding-top:4px;
1445 padding-top:4px;
1446 min-height:2px;
1446 min-height:2px;
1447 float:left
1447 float:left
1448 }
1448 }
1449 #journal .journal_action_params{
1449 #journal .journal_action_params{
1450 clear: left;
1450 clear: left;
1451 padding-left: 22px;
1451 padding-left: 22px;
1452 }
1452 }
1453 #journal .journal_repo{
1453 #journal .journal_repo{
1454 float: left;
1454 float: left;
1455 margin-left: 6px;
1455 margin-left: 6px;
1456 padding-top: 3px;
1456 padding-top: 3px;
1457 }
1457 }
1458 #journal .date{
1458 #journal .date{
1459 clear: both;
1459 clear: both;
1460 color: #777777;
1460 color: #777777;
1461 font-size: 11px;
1461 font-size: 11px;
1462 padding-left: 22px;
1462 padding-left: 22px;
1463 }
1463 }
1464 #journal .journal_repo .journal_repo_name{
1464 #journal .journal_repo .journal_repo_name{
1465 font-weight: bold;
1465 font-weight: bold;
1466 font-size: 1.1em;
1466 font-size: 1.1em;
1467 }
1467 }
1468 #journal .compare_view{
1468 #journal .compare_view{
1469 padding: 5px 0px 5px 0px;
1469 padding: 5px 0px 5px 0px;
1470 width: 95px;
1470 width: 95px;
1471 }
1471 }
1472 .journal_highlight{
1472 .journal_highlight{
1473 font-weight: bold;
1473 font-weight: bold;
1474 padding: 0 2px;
1474 padding: 0 2px;
1475 vertical-align: bottom;
1475 vertical-align: bottom;
1476 }
1476 }
1477 .trending_language_tbl,.trending_language_tbl td {
1477 .trending_language_tbl,.trending_language_tbl td {
1478 border:0 !important;
1478 border:0 !important;
1479 margin:0 !important;
1479 margin:0 !important;
1480 padding:0 !important;
1480 padding:0 !important;
1481 }
1481 }
1482
1482
1483 .trending_language {
1483 .trending_language {
1484 background-color:#003367;
1484 background-color:#003367;
1485 color:#FFF;
1485 color:#FFF;
1486 display:block;
1486 display:block;
1487 min-width:20px;
1487 min-width:20px;
1488 text-decoration:none;
1488 text-decoration:none;
1489 height:12px;
1489 height:12px;
1490 margin-bottom:4px;
1490 margin-bottom:4px;
1491 margin-left:5px;
1491 margin-left:5px;
1492 white-space:pre;
1492 white-space:pre;
1493 padding:3px;
1493 padding:3px;
1494 }
1494 }
1495
1495
1496 h3.files_location {
1496 h3.files_location {
1497 font-size:1.8em;
1497 font-size:1.8em;
1498 font-weight:700;
1498 font-weight:700;
1499 border-bottom:none !important;
1499 border-bottom:none !important;
1500 margin:10px 0 !important;
1500 margin:10px 0 !important;
1501 }
1501 }
1502
1502
1503 #files_data dl dt {
1503 #files_data dl dt {
1504 float:left;
1504 float:left;
1505 width:115px;
1505 width:115px;
1506 margin:0 !important;
1506 margin:0 !important;
1507 padding:5px;
1507 padding:5px;
1508 }
1508 }
1509
1509
1510 #files_data dl dd {
1510 #files_data dl dd {
1511 margin:0 !important;
1511 margin:0 !important;
1512 padding:5px !important;
1512 padding:5px !important;
1513 }
1513 }
1514
1514
1515 #changeset_content {
1515 #changeset_content {
1516 border:1px solid #CCC;
1516 border:1px solid #CCC;
1517 padding:5px;
1517 padding:5px;
1518 }
1518 }
1519 #changeset_compare_view_content{
1519 #changeset_compare_view_content{
1520 border:1px solid #CCC;
1520 border:1px solid #CCC;
1521 padding:5px;
1521 padding:5px;
1522 }
1522 }
1523
1523
1524 #changeset_content .container {
1524 #changeset_content .container {
1525 min-height:120px;
1525 min-height:120px;
1526 font-size:1.2em;
1526 font-size:1.2em;
1527 overflow:hidden;
1527 overflow:hidden;
1528 }
1528 }
1529
1529
1530 #changeset_compare_view_content .compare_view_commits{
1530 #changeset_compare_view_content .compare_view_commits{
1531 width: auto !important;
1531 width: auto !important;
1532 }
1532 }
1533
1533
1534 #changeset_compare_view_content .compare_view_commits td{
1534 #changeset_compare_view_content .compare_view_commits td{
1535 padding:0px 0px 0px 12px !important;
1535 padding:0px 0px 0px 12px !important;
1536 }
1536 }
1537
1537
1538 #changeset_content .container .right {
1538 #changeset_content .container .right {
1539 float:right;
1539 float:right;
1540 width:25%;
1540 width:25%;
1541 text-align:right;
1541 text-align:right;
1542 }
1542 }
1543
1543
1544 #changeset_content .container .left .message {
1544 #changeset_content .container .left .message {
1545 font-style:italic;
1545 font-style:italic;
1546 color:#556CB5;
1546 color:#556CB5;
1547 white-space:pre-wrap;
1547 white-space:pre-wrap;
1548 }
1548 }
1549
1549
1550 .cs_files .cur_cs{
1550 .cs_files .cur_cs{
1551 margin:10px 2px;
1551 margin:10px 2px;
1552 font-weight: bold;
1552 font-weight: bold;
1553 }
1553 }
1554
1554
1555 .cs_files .node{
1555 .cs_files .node{
1556 float: left;
1556 float: left;
1557 }
1557 }
1558 .cs_files .changes{
1558 .cs_files .changes{
1559 float: right;
1559 float: right;
1560 }
1560 }
1561 .cs_files .changes .added{
1561 .cs_files .changes .added{
1562 background-color: #BBFFBB;
1562 background-color: #BBFFBB;
1563 float: left;
1563 float: left;
1564 text-align: center;
1564 text-align: center;
1565 font-size: 90%;
1565 font-size: 90%;
1566 }
1566 }
1567 .cs_files .changes .deleted{
1567 .cs_files .changes .deleted{
1568 background-color: #FF8888;
1568 background-color: #FF8888;
1569 float: left;
1569 float: left;
1570 text-align: center;
1570 text-align: center;
1571 font-size: 90%;
1571 font-size: 90%;
1572 }
1572 }
1573 .cs_files .cs_added {
1573 .cs_files .cs_added {
1574 background:url("../images/icons/page_white_add.png") no-repeat scroll 3px;
1574 background:url("../images/icons/page_white_add.png") no-repeat scroll 3px;
1575 height:16px;
1575 height:16px;
1576 padding-left:20px;
1576 padding-left:20px;
1577 margin-top:7px;
1577 margin-top:7px;
1578 text-align:left;
1578 text-align:left;
1579 }
1579 }
1580
1580
1581 .cs_files .cs_changed {
1581 .cs_files .cs_changed {
1582 background:url("../images/icons/page_white_edit.png") no-repeat scroll 3px;
1582 background:url("../images/icons/page_white_edit.png") no-repeat scroll 3px;
1583 height:16px;
1583 height:16px;
1584 padding-left:20px;
1584 padding-left:20px;
1585 margin-top:7px;
1585 margin-top:7px;
1586 text-align:left;
1586 text-align:left;
1587 }
1587 }
1588
1588
1589 .cs_files .cs_removed {
1589 .cs_files .cs_removed {
1590 background:url("../images/icons/page_white_delete.png") no-repeat scroll 3px;
1590 background:url("../images/icons/page_white_delete.png") no-repeat scroll 3px;
1591 height:16px;
1591 height:16px;
1592 padding-left:20px;
1592 padding-left:20px;
1593 margin-top:7px;
1593 margin-top:7px;
1594 text-align:left;
1594 text-align:left;
1595 }
1595 }
1596
1596
1597 #graph {
1597 #graph {
1598 overflow:hidden;
1598 overflow:hidden;
1599 }
1599 }
1600
1600
1601 #graph_nodes {
1601 #graph_nodes {
1602 width:160px;
1602 width:160px;
1603 float:left;
1603 float:left;
1604 margin-left:-50px;
1604 margin-left:-50px;
1605 margin-top:5px;
1605 margin-top:5px;
1606 }
1606 }
1607
1607
1608 #graph_content {
1608 #graph_content {
1609 width:800px;
1609 width:800px;
1610 float:left;
1610 float:left;
1611 }
1611 }
1612
1612
1613 #graph_content .container_header {
1613 #graph_content .container_header {
1614 border:1px solid #CCC;
1614 border:1px solid #CCC;
1615 padding:10px;
1615 padding:10px;
1616 }
1616 }
1617 #graph_content #rev_range_container{
1617 #graph_content #rev_range_container{
1618 padding:10px 0px;
1618 padding:10px 0px;
1619 }
1619 }
1620 #graph_content .container {
1620 #graph_content .container {
1621 border-bottom:1px solid #CCC;
1621 border-bottom:1px solid #CCC;
1622 border-left:1px solid #CCC;
1622 border-left:1px solid #CCC;
1623 border-right:1px solid #CCC;
1623 border-right:1px solid #CCC;
1624 min-height:80px;
1624 min-height:80px;
1625 overflow:hidden;
1625 overflow:hidden;
1626 font-size:1.2em;
1626 font-size:1.2em;
1627 }
1627 }
1628
1628
1629 #graph_content .container .right {
1629 #graph_content .container .right {
1630 float:right;
1630 float:right;
1631 width:28%;
1631 width:28%;
1632 text-align:right;
1632 text-align:right;
1633 padding-bottom:5px;
1633 padding-bottom:5px;
1634 }
1634 }
1635
1635
1636 #graph_content .container .left .date {
1636 #graph_content .container .left .date {
1637 font-weight:700;
1637 font-weight:700;
1638 padding-bottom:5px;
1638 padding-bottom:5px;
1639 }
1639 }
1640 #graph_content .container .left .date span{
1640 #graph_content .container .left .date span{
1641 vertical-align: text-top;
1641 vertical-align: text-top;
1642 }
1642 }
1643
1643
1644 #graph_content .container .left .message {
1644 #graph_content .container .left .message {
1645 font-size:100%;
1645 font-size:100%;
1646 padding-top:3px;
1646 padding-top:3px;
1647 white-space:pre-wrap;
1647 white-space:pre-wrap;
1648 }
1648 }
1649
1649
1650 .right div {
1650 .right div {
1651 clear:both;
1651 clear:both;
1652 }
1652 }
1653
1653
1654 .right .changes .added,.changed,.removed {
1654 .right .changes .added,.changed,.removed {
1655 border:1px solid #DDD;
1655 border:1px solid #DDD;
1656 display:block;
1656 display:block;
1657 float:right;
1657 float:right;
1658 text-align:center;
1658 text-align:center;
1659 min-width:15px;
1659 min-width:15px;
1660 cursor: help;
1660 cursor: help;
1661 }
1661 }
1662 .right .changes .large {
1662 .right .changes .large {
1663 border:1px solid #DDD;
1663 border:1px solid #DDD;
1664 display:block;
1664 display:block;
1665 float:right;
1665 float:right;
1666 text-align:center;
1666 text-align:center;
1667 min-width:45px;
1667 min-width:45px;
1668 cursor: help;
1668 cursor: help;
1669 background: #54A9F7;
1669 background: #54A9F7;
1670 }
1670 }
1671
1671
1672 .right .changes .added {
1672 .right .changes .added {
1673 background:#BFB;
1673 background:#BFB;
1674 }
1674 }
1675
1675
1676 .right .changes .changed {
1676 .right .changes .changed {
1677 background:#FD8;
1677 background:#FD8;
1678 }
1678 }
1679
1679
1680 .right .changes .removed {
1680 .right .changes .removed {
1681 background:#F88;
1681 background:#F88;
1682 }
1682 }
1683
1683
1684 .right .merge {
1684 .right .merge {
1685 vertical-align:top;
1685 vertical-align:top;
1686 font-size:0.75em;
1686 font-size:0.75em;
1687 font-weight:700;
1687 font-weight:700;
1688 }
1688 }
1689
1689
1690 .right .parent {
1690 .right .parent {
1691 font-size:90%;
1691 font-size:90%;
1692 font-family:monospace;
1692 font-family:monospace;
1693 }
1693 }
1694
1694
1695 .right .logtags .branchtag {
1695 .right .logtags .branchtag {
1696 background:#FFF url("../images/icons/arrow_branch.png") no-repeat right 6px;
1696 background:#FFF url("../images/icons/arrow_branch.png") no-repeat right 6px;
1697 display:block;
1697 display:block;
1698 font-size:0.8em;
1698 font-size:0.8em;
1699 padding:11px 16px 0 0;
1699 padding:11px 16px 0 0;
1700 }
1700 }
1701
1701
1702 .right .logtags .tagtag {
1702 .right .logtags .tagtag {
1703 background:#FFF url("../images/icons/tag_blue.png") no-repeat right 6px;
1703 background:#FFF url("../images/icons/tag_blue.png") no-repeat right 6px;
1704 display:block;
1704 display:block;
1705 font-size:0.8em;
1705 font-size:0.8em;
1706 padding:11px 16px 0 0;
1706 padding:11px 16px 0 0;
1707 }
1707 }
1708
1708
1709 div.browserblock {
1709 div.browserblock {
1710 overflow:hidden;
1710 overflow:hidden;
1711 border:1px solid #ccc;
1711 border:1px solid #ccc;
1712 background:#f8f8f8;
1712 background:#f8f8f8;
1713 font-size:100%;
1713 font-size:100%;
1714 line-height:125%;
1714 line-height:125%;
1715 padding:0;
1715 padding:0;
1716 }
1716 }
1717
1717
1718 div.browserblock .browser-header {
1718 div.browserblock .browser-header {
1719 background:#FFF;
1719 background:#FFF;
1720 padding:10px 0px 35px 0px;
1720 padding:10px 0px 25px 0px;
1721 width: 100%;
1721 width: 100%;
1722 }
1722 }
1723 div.browserblock .browser-nav {
1723 div.browserblock .browser-nav {
1724 float:left
1724 float:left
1725 }
1725 }
1726
1726
1727 div.browserblock .browser-branch {
1727 div.browserblock .browser-branch {
1728 padding:10px 0 0 0;
1729 float:left;
1728 float:left;
1730 }
1729 }
1730
1731 div.browserblock .browser-branch label {
1731 div.browserblock .browser-branch label {
1732 color:#4A4A4A;
1732 color:#4A4A4A;
1733 vertical-align:text-top;
1733 vertical-align:text-top;
1734 }
1734 }
1735
1735
1736 div.browserblock .browser-header span {
1736 div.browserblock .browser-header span {
1737 margin-left:25px;
1737 margin-left:5px;
1738 font-weight:700;
1738 font-weight:700;
1739 }
1739 }
1740
1740
1741 div.browserblock .browser-body {
1741 div.browserblock .browser-body {
1742 background:#EEE;
1742 background:#EEE;
1743 border-top:1px solid #CCC;
1743 border-top:1px solid #CCC;
1744 }
1744 }
1745
1745
1746 table.code-browser {
1746 table.code-browser {
1747 border-collapse:collapse;
1747 border-collapse:collapse;
1748 width:100%;
1748 width:100%;
1749 }
1749 }
1750
1750
1751 table.code-browser tr {
1751 table.code-browser tr {
1752 margin:3px;
1752 margin:3px;
1753 }
1753 }
1754
1754
1755 table.code-browser thead th {
1755 table.code-browser thead th {
1756 background-color:#EEE;
1756 background-color:#EEE;
1757 height:20px;
1757 height:20px;
1758 font-size:1.1em;
1758 font-size:1.1em;
1759 font-weight:700;
1759 font-weight:700;
1760 text-align:left;
1760 text-align:left;
1761 padding-left:10px;
1761 padding-left:10px;
1762 }
1762 }
1763
1763
1764 table.code-browser tbody td {
1764 table.code-browser tbody td {
1765 padding-left:10px;
1765 padding-left:10px;
1766 height:20px;
1766 height:20px;
1767 }
1767 }
1768
1768
1769 table.code-browser .browser-file {
1769 table.code-browser .browser-file {
1770 background:url("../images/icons/document_16.png") no-repeat scroll 3px;
1770 background:url("../images/icons/document_16.png") no-repeat scroll 3px;
1771 height:16px;
1771 height:16px;
1772 padding-left:20px;
1772 padding-left:20px;
1773 text-align:left;
1773 text-align:left;
1774 }
1774 }
1775 .diffblock .changeset_file{
1775 .diffblock .changeset_file{
1776 background:url("../images/icons/file.png") no-repeat scroll 3px;
1776 background:url("../images/icons/file.png") no-repeat scroll 3px;
1777 height:16px;
1777 height:16px;
1778 padding-left:22px;
1778 padding-left:22px;
1779 text-align:left;
1779 text-align:left;
1780 font-size: 14px;
1780 font-size: 14px;
1781 }
1781 }
1782
1782
1783 .diffblock .changeset_header{
1783 .diffblock .changeset_header{
1784 margin-left: 6px !important;
1784 margin-left: 6px !important;
1785 }
1785 }
1786
1786
1787 table.code-browser .browser-dir {
1787 table.code-browser .browser-dir {
1788 background:url("../images/icons/folder_16.png") no-repeat scroll 3px;
1788 background:url("../images/icons/folder_16.png") no-repeat scroll 3px;
1789 height:16px;
1789 height:16px;
1790 padding-left:20px;
1790 padding-left:20px;
1791 text-align:left;
1791 text-align:left;
1792 }
1792 }
1793
1793
1794 .box .search {
1794 .box .search {
1795 clear:both;
1795 clear:both;
1796 overflow:hidden;
1796 overflow:hidden;
1797 margin:0;
1797 margin:0;
1798 padding:0 20px 10px;
1798 padding:0 20px 10px;
1799 }
1799 }
1800
1800
1801 .box .search div.search_path {
1801 .box .search div.search_path {
1802 background:none repeat scroll 0 0 #EEE;
1802 background:none repeat scroll 0 0 #EEE;
1803 border:1px solid #CCC;
1803 border:1px solid #CCC;
1804 color:blue;
1804 color:blue;
1805 margin-bottom:10px;
1805 margin-bottom:10px;
1806 padding:10px 0;
1806 padding:10px 0;
1807 }
1807 }
1808
1808
1809 .box .search div.search_path div.link {
1809 .box .search div.search_path div.link {
1810 font-weight:700;
1810 font-weight:700;
1811 margin-left:25px;
1811 margin-left:25px;
1812 }
1812 }
1813
1813
1814 .box .search div.search_path div.link a {
1814 .box .search div.search_path div.link a {
1815 color:#003367;
1815 color:#003367;
1816 cursor:pointer;
1816 cursor:pointer;
1817 text-decoration:none;
1817 text-decoration:none;
1818 }
1818 }
1819
1819
1820 #path_unlock {
1820 #path_unlock {
1821 color:red;
1821 color:red;
1822 font-size:1.2em;
1822 font-size:1.2em;
1823 padding-left:4px;
1823 padding-left:4px;
1824 }
1824 }
1825
1825
1826 .info_box * {
1827 background:url("../images/pager.png") repeat-x scroll 0 0 #EBEBEB;
1828 color:#4A4A4A;
1829 font-weight:700;
1830 height:1%;
1831 display:inline;
1832 border-color:#DEDEDE #C4C4C4 #C4C4C4 #CFCFCF;
1833 border-style:solid;
1834 border-width:1px;
1835 padding:4px 6px;
1836 }
1837
1838 .info_box span {
1826 .info_box span {
1839 margin-left:3px;
1827 margin-left:3px;
1840 margin-right:3px;
1828 margin-right:3px;
1841 }
1829 }
1842
1830
1843 .info_box input#at_rev {
1831 .info_box .rev {
1844 text-align:center;
1832 color: #003367;
1845 padding:5px 3px 3px 2px;
1833 font-size: 1.6em;
1846 }
1834 font-weight: bold;
1835 vertical-align: sub;
1836 }
1837
1838
1839 .info_box input#at_rev,.info_box input#size {
1840 background:#FFF;
1841 border-top:1px solid #b3b3b3;
1842 border-left:1px solid #b3b3b3;
1843 border-right:1px solid #eaeaea;
1844 border-bottom:1px solid #eaeaea;
1845 color:#000;
1846 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1847 font-size:12px;
1848 margin:0;
1849 padding:1px 5px 1px;
1850 }
1851
1852
1847
1853
1848 .info_box input#view {
1854 .info_box input#view {
1849 text-align:center;
1855 text-align:center;
1850 padding:4px 3px 2px 2px;
1856 padding:4px 3px 2px 2px;
1851 }
1857 }
1852
1858
1853 .yui-overlay,.yui-panel-container {
1859 .yui-overlay,.yui-panel-container {
1854 visibility:hidden;
1860 visibility:hidden;
1855 position:absolute;
1861 position:absolute;
1856 z-index:2;
1862 z-index:2;
1857 }
1863 }
1858
1864
1859 .yui-tt {
1865 .yui-tt {
1860 visibility:hidden;
1866 visibility:hidden;
1861 position:absolute;
1867 position:absolute;
1862 color:#666;
1868 color:#666;
1863 background-color:#FFF;
1869 background-color:#FFF;
1864 font-family:arial, helvetica, verdana, sans-serif;
1870 font-family:arial, helvetica, verdana, sans-serif;
1865 border:2px solid #003367;
1871 border:2px solid #003367;
1866 font:100% sans-serif;
1872 font:100% sans-serif;
1867 width:auto;
1873 width:auto;
1868 opacity:1px;
1874 opacity:1px;
1869 padding:8px;
1875 padding:8px;
1870 white-space: pre;
1876 white-space: pre;
1871 -webkit-border-radius: 8px 8px 8px 8px;
1877 -webkit-border-radius: 8px 8px 8px 8px;
1872 -khtml-border-radius: 8px 8px 8px 8px;
1878 -khtml-border-radius: 8px 8px 8px 8px;
1873 -moz-border-radius: 8px 8px 8px 8px;
1879 -moz-border-radius: 8px 8px 8px 8px;
1874 border-radius: 8px 8px 8px 8px;
1880 border-radius: 8px 8px 8px 8px;
1875 }
1881 }
1876
1882
1877 .ac {
1883 .ac {
1878 vertical-align:top;
1884 vertical-align:top;
1879 }
1885 }
1880
1886
1881 .ac .yui-ac {
1887 .ac .yui-ac {
1882 position:relative;
1888 position:relative;
1883 font-family:arial;
1889 font-family:arial;
1884 font-size:100%;
1890 font-size:100%;
1885 }
1891 }
1886
1892
1887 .ac .perm_ac {
1893 .ac .perm_ac {
1888 width:15em;
1894 width:15em;
1889 }
1895 }
1890
1896
1891 .ac .yui-ac-input {
1897 .ac .yui-ac-input {
1892 width:100%;
1898 width:100%;
1893 }
1899 }
1894
1900
1895 .ac .yui-ac-container {
1901 .ac .yui-ac-container {
1896 position:absolute;
1902 position:absolute;
1897 top:1.6em;
1903 top:1.6em;
1898 width:100%;
1904 width:100%;
1899 }
1905 }
1900
1906
1901 .ac .yui-ac-content {
1907 .ac .yui-ac-content {
1902 position:absolute;
1908 position:absolute;
1903 width:100%;
1909 width:100%;
1904 border:1px solid gray;
1910 border:1px solid gray;
1905 background:#fff;
1911 background:#fff;
1906 overflow:hidden;
1912 overflow:hidden;
1907 z-index:9050;
1913 z-index:9050;
1908 }
1914 }
1909
1915
1910 .ac .yui-ac-shadow {
1916 .ac .yui-ac-shadow {
1911 position:absolute;
1917 position:absolute;
1912 width:100%;
1918 width:100%;
1913 background:#000;
1919 background:#000;
1914 -moz-opacity:0.1px;
1920 -moz-opacity:0.1px;
1915 opacity:.10;
1921 opacity:.10;
1916 filter:alpha(opacity = 10);
1922 filter:alpha(opacity = 10);
1917 z-index:9049;
1923 z-index:9049;
1918 margin:.3em;
1924 margin:.3em;
1919 }
1925 }
1920
1926
1921 .ac .yui-ac-content ul {
1927 .ac .yui-ac-content ul {
1922 width:100%;
1928 width:100%;
1923 margin:0;
1929 margin:0;
1924 padding:0;
1930 padding:0;
1925 }
1931 }
1926
1932
1927 .ac .yui-ac-content li {
1933 .ac .yui-ac-content li {
1928 cursor:default;
1934 cursor:default;
1929 white-space:nowrap;
1935 white-space:nowrap;
1930 margin:0;
1936 margin:0;
1931 padding:2px 5px;
1937 padding:2px 5px;
1932 }
1938 }
1933
1939
1934 .ac .yui-ac-content li.yui-ac-prehighlight {
1940 .ac .yui-ac-content li.yui-ac-prehighlight {
1935 background:#B3D4FF;
1941 background:#B3D4FF;
1936 }
1942 }
1937
1943
1938 .ac .yui-ac-content li.yui-ac-highlight {
1944 .ac .yui-ac-content li.yui-ac-highlight {
1939 background:#556CB5;
1945 background:#556CB5;
1940 color:#FFF;
1946 color:#FFF;
1941 }
1947 }
1942
1948
1943
1949
1944 .follow{
1950 .follow{
1945 background:url("../images/icons/heart_add.png") no-repeat scroll 3px;
1951 background:url("../images/icons/heart_add.png") no-repeat scroll 3px;
1946 height: 16px;
1952 height: 16px;
1947 width: 20px;
1953 width: 20px;
1948 cursor: pointer;
1954 cursor: pointer;
1949 display: block;
1955 display: block;
1950 float: right;
1956 float: right;
1951 margin-top: 2px;
1957 margin-top: 2px;
1952 }
1958 }
1953
1959
1954 .following{
1960 .following{
1955 background:url("../images/icons/heart_delete.png") no-repeat scroll 3px;
1961 background:url("../images/icons/heart_delete.png") no-repeat scroll 3px;
1956 height: 16px;
1962 height: 16px;
1957 width: 20px;
1963 width: 20px;
1958 cursor: pointer;
1964 cursor: pointer;
1959 display: block;
1965 display: block;
1960 float: right;
1966 float: right;
1961 margin-top: 2px;
1967 margin-top: 2px;
1962 }
1968 }
1963
1969
1964 .currently_following{
1970 .currently_following{
1965 padding-left: 10px;
1971 padding-left: 10px;
1966 padding-bottom:5px;
1972 padding-bottom:5px;
1967 }
1973 }
1968
1974
1969 .add_icon {
1975 .add_icon {
1970 background:url("../images/icons/add.png") no-repeat scroll 3px;
1976 background:url("../images/icons/add.png") no-repeat scroll 3px;
1971 padding-left:20px;
1977 padding-left:20px;
1972 padding-top:0px;
1978 padding-top:0px;
1973 text-align:left;
1979 text-align:left;
1974 }
1980 }
1975
1981
1976 .edit_icon {
1982 .edit_icon {
1977 background:url("../images/icons/folder_edit.png") no-repeat scroll 3px;
1983 background:url("../images/icons/folder_edit.png") no-repeat scroll 3px;
1978 padding-left:20px;
1984 padding-left:20px;
1979 padding-top:0px;
1985 padding-top:0px;
1980 text-align:left;
1986 text-align:left;
1981 }
1987 }
1982
1988
1983 .delete_icon {
1989 .delete_icon {
1984 background:url("../images/icons/delete.png") no-repeat scroll 3px;
1990 background:url("../images/icons/delete.png") no-repeat scroll 3px;
1985 padding-left:20px;
1991 padding-left:20px;
1986 padding-top:0px;
1992 padding-top:0px;
1987 text-align:left;
1993 text-align:left;
1988 }
1994 }
1989
1995
1990 .refresh_icon {
1996 .refresh_icon {
1991 background:url("../images/icons/arrow_refresh.png") no-repeat scroll 3px;
1997 background:url("../images/icons/arrow_refresh.png") no-repeat scroll 3px;
1992 padding-left:20px;
1998 padding-left:20px;
1993 padding-top:0px;
1999 padding-top:0px;
1994 text-align:left;
2000 text-align:left;
1995 }
2001 }
1996
2002
1997 .pull_icon {
2003 .pull_icon {
1998 background:url("../images/icons/connect.png") no-repeat scroll 3px;
2004 background:url("../images/icons/connect.png") no-repeat scroll 3px;
1999 padding-left:20px;
2005 padding-left:20px;
2000 padding-top:0px;
2006 padding-top:0px;
2001 text-align:left;
2007 text-align:left;
2002 }
2008 }
2003
2009
2004 .rss_icon {
2010 .rss_icon {
2005 background:url("../images/icons/rss_16.png") no-repeat scroll 3px;
2011 background:url("../images/icons/rss_16.png") no-repeat scroll 3px;
2006 padding-left:20px;
2012 padding-left:20px;
2007 padding-top:0px;
2013 padding-top:0px;
2008 text-align:left;
2014 text-align:left;
2009 }
2015 }
2010
2016
2011 .atom_icon {
2017 .atom_icon {
2012 background:url("../images/icons/atom.png") no-repeat scroll 3px;
2018 background:url("../images/icons/atom.png") no-repeat scroll 3px;
2013 padding-left:20px;
2019 padding-left:20px;
2014 padding-top:0px;
2020 padding-top:0px;
2015 text-align:left;
2021 text-align:left;
2016 }
2022 }
2017
2023
2018 .archive_icon {
2024 .archive_icon {
2019 background:url("../images/icons/compress.png") no-repeat scroll 3px;
2025 background:url("../images/icons/compress.png") no-repeat scroll 3px;
2020 padding-left:20px;
2026 padding-left:20px;
2021 text-align:left;
2027 text-align:left;
2022 padding-top:1px;
2028 padding-top:1px;
2023 }
2029 }
2024
2030
2025 .start_following_icon {
2031 .start_following_icon {
2026 background:url("../images/icons/heart_add.png") no-repeat scroll 3px;
2032 background:url("../images/icons/heart_add.png") no-repeat scroll 3px;
2027 padding-left:20px;
2033 padding-left:20px;
2028 text-align:left;
2034 text-align:left;
2029 padding-top:0px;
2035 padding-top:0px;
2030 }
2036 }
2031
2037
2032 .stop_following_icon {
2038 .stop_following_icon {
2033 background:url("../images/icons/heart_delete.png") no-repeat scroll 3px;
2039 background:url("../images/icons/heart_delete.png") no-repeat scroll 3px;
2034 padding-left:20px;
2040 padding-left:20px;
2035 text-align:left;
2041 text-align:left;
2036 padding-top:0px;
2042 padding-top:0px;
2037 }
2043 }
2038
2044
2039 .action_button {
2045 .action_button {
2040 border:0;
2046 border:0;
2041 display:block;
2047 display:block;
2042 }
2048 }
2043
2049
2044 .action_button:hover {
2050 .action_button:hover {
2045 border:0;
2051 border:0;
2046 text-decoration:underline;
2052 text-decoration:underline;
2047 cursor:pointer;
2053 cursor:pointer;
2048 }
2054 }
2049
2055
2050 #switch_repos {
2056 #switch_repos {
2051 position:absolute;
2057 position:absolute;
2052 height:25px;
2058 height:25px;
2053 z-index:1;
2059 z-index:1;
2054 }
2060 }
2055
2061
2056 #switch_repos select {
2062 #switch_repos select {
2057 min-width:150px;
2063 min-width:150px;
2058 max-height:250px;
2064 max-height:250px;
2059 z-index:1;
2065 z-index:1;
2060 }
2066 }
2061
2067
2062 .breadcrumbs {
2068 .breadcrumbs {
2063 border:medium none;
2069 border:medium none;
2064 color:#FFF;
2070 color:#FFF;
2065 float:left;
2071 float:left;
2066 text-transform:uppercase;
2072 text-transform:uppercase;
2067 font-weight:700;
2073 font-weight:700;
2068 font-size:14px;
2074 font-size:14px;
2069 margin:0;
2075 margin:0;
2070 padding:11px 0 11px 10px;
2076 padding:11px 0 11px 10px;
2071 }
2077 }
2072
2078
2073 .breadcrumbs a {
2079 .breadcrumbs a {
2074 color:#FFF;
2080 color:#FFF;
2075 }
2081 }
2076
2082
2077 .flash_msg ul {
2083 .flash_msg ul {
2078 margin:0;
2084 margin:0;
2079 padding:0 0 10px;
2085 padding:0 0 10px;
2080 }
2086 }
2081
2087
2082 .error_msg {
2088 .error_msg {
2083 background-color:#FFCFCF;
2089 background-color:#FFCFCF;
2084 background-image:url("../images/icons/error_msg.png");
2090 background-image:url("../images/icons/error_msg.png");
2085 border:1px solid #FF9595;
2091 border:1px solid #FF9595;
2086 color:#C30;
2092 color:#C30;
2087 }
2093 }
2088
2094
2089 .warning_msg {
2095 .warning_msg {
2090 background-color:#FFFBCC;
2096 background-color:#FFFBCC;
2091 background-image:url("../images/icons/warning_msg.png");
2097 background-image:url("../images/icons/warning_msg.png");
2092 border:1px solid #FFF35E;
2098 border:1px solid #FFF35E;
2093 color:#C69E00;
2099 color:#C69E00;
2094 }
2100 }
2095
2101
2096 .success_msg {
2102 .success_msg {
2097 background-color:#D5FFCF;
2103 background-color:#D5FFCF;
2098 background-image:url("../images/icons/success_msg.png");
2104 background-image:url("../images/icons/success_msg.png");
2099 border:1px solid #97FF88;
2105 border:1px solid #97FF88;
2100 color:#090;
2106 color:#090;
2101 }
2107 }
2102
2108
2103 .notice_msg {
2109 .notice_msg {
2104 background-color:#DCE3FF;
2110 background-color:#DCE3FF;
2105 background-image:url("../images/icons/notice_msg.png");
2111 background-image:url("../images/icons/notice_msg.png");
2106 border:1px solid #93A8FF;
2112 border:1px solid #93A8FF;
2107 color:#556CB5;
2113 color:#556CB5;
2108 }
2114 }
2109
2115
2110 .success_msg,.error_msg,.notice_msg,.warning_msg {
2116 .success_msg,.error_msg,.notice_msg,.warning_msg {
2111 background-position:10px center;
2117 background-position:10px center;
2112 background-repeat:no-repeat;
2118 background-repeat:no-repeat;
2113 font-size:12px;
2119 font-size:12px;
2114 font-weight:700;
2120 font-weight:700;
2115 min-height:14px;
2121 min-height:14px;
2116 line-height:14px;
2122 line-height:14px;
2117 margin-bottom:0;
2123 margin-bottom:0;
2118 margin-top:0;
2124 margin-top:0;
2119 display:block;
2125 display:block;
2120 overflow:auto;
2126 overflow:auto;
2121 padding:6px 10px 6px 40px;
2127 padding:6px 10px 6px 40px;
2122 }
2128 }
2123
2129
2124 #msg_close {
2130 #msg_close {
2125 background:transparent url("../icons/cross_grey_small.png") no-repeat scroll 0 0;
2131 background:transparent url("../icons/cross_grey_small.png") no-repeat scroll 0 0;
2126 cursor:pointer;
2132 cursor:pointer;
2127 height:16px;
2133 height:16px;
2128 position:absolute;
2134 position:absolute;
2129 right:5px;
2135 right:5px;
2130 top:5px;
2136 top:5px;
2131 width:16px;
2137 width:16px;
2132 }
2138 }
2133
2139
2134 div#legend_container table,div#legend_choices table {
2140 div#legend_container table,div#legend_choices table {
2135 width:auto !important;
2141 width:auto !important;
2136 }
2142 }
2137
2143
2138 table#permissions_manage {
2144 table#permissions_manage {
2139 width:0 !important;
2145 width:0 !important;
2140 }
2146 }
2141
2147
2142 table#permissions_manage span.private_repo_msg {
2148 table#permissions_manage span.private_repo_msg {
2143 font-size:0.8em;
2149 font-size:0.8em;
2144 opacity:0.6px;
2150 opacity:0.6px;
2145 }
2151 }
2146
2152
2147 table#permissions_manage td.private_repo_msg {
2153 table#permissions_manage td.private_repo_msg {
2148 font-size:0.8em;
2154 font-size:0.8em;
2149 }
2155 }
2150
2156
2151 table#permissions_manage tr#add_perm_input td {
2157 table#permissions_manage tr#add_perm_input td {
2152 vertical-align:middle;
2158 vertical-align:middle;
2153 }
2159 }
2154
2160
2155 div.gravatar {
2161 div.gravatar {
2156 background-color:#FFF;
2162 background-color:#FFF;
2157 border:1px solid #D0D0D0;
2163 border:1px solid #D0D0D0;
2158 float:left;
2164 float:left;
2159 margin-right:0.7em;
2165 margin-right:0.7em;
2160 padding:2px 2px 0;
2166 padding:2px 2px 0;
2161 }
2167 }
2162
2168
2163 #header,#content,#footer {
2169 #header,#content,#footer {
2164 min-width:978px;
2170 min-width:978px;
2165 }
2171 }
2166
2172
2167 #content {
2173 #content {
2168 min-height:100%;
2174 min-height:100%;
2169 clear:both;
2175 clear:both;
2170 overflow:hidden;
2176 overflow:hidden;
2171 padding:14px 10px;
2177 padding:14px 10px;
2172 }
2178 }
2173
2179
2174 #content div.box div.title div.search {
2180 #content div.box div.title div.search {
2175 background:url("../images/title_link.png") no-repeat top left;
2181 background:url("../images/title_link.png") no-repeat top left;
2176 border-left:1px solid #316293;
2182 border-left:1px solid #316293;
2177 }
2183 }
2178
2184
2179 #content div.box div.title div.search div.input input {
2185 #content div.box div.title div.search div.input input {
2180 border:1px solid #316293;
2186 border:1px solid #316293;
2181 }
2187 }
2182
2188
2183 #content div.box div.title div.search div.button input.ui-button {
2189 #content div.box div.title div.search div.button input.ui-button {
2184 background:#4e85bb url("../images/button_highlight.png") repeat-x;
2190 background:#4e85bb url("../images/button_highlight.png") repeat-x;
2185 border:1px solid #316293;
2191 border:1px solid #316293;
2186 border-left:none;
2192 border-left:none;
2187 color:#FFF;
2193 color:#FFF;
2188 }
2194 }
2189
2195
2196 #content div.box input.ui-button-small {
2197 background:#e5e3e3 url("../images/button.png") repeat-x;
2198 border-top:1px solid #DDD;
2199 border-left:1px solid #c6c6c6;
2200 border-right:1px solid #DDD;
2201 border-bottom:1px solid #c6c6c6;
2202 color:#515151;
2203 outline:none;
2204 margin:0;
2205 }
2206
2207 #content div.box input.ui-button-small submit,button{
2208 cursor: pointer;
2209 }
2210
2190 #content div.box div.title div.search div.button input.ui-state-hover {
2211 #content div.box div.title div.search div.button input.ui-state-hover {
2191 background:#46a0c1 url("../images/button_highlight_selected.png") repeat-x;
2212 background:#46a0c1 url("../images/button_highlight_selected.png") repeat-x;
2192 border:1px solid #316293;
2213 border:1px solid #316293;
2193 border-left:none;
2214 border-left:none;
2194 color:#FFF;
2215 color:#FFF;
2195 }
2216 }
2196
2217
2197 #content div.box div.form div.fields div.field div.highlight .ui-button {
2218 #content div.box div.form div.fields div.field div.highlight .ui-button {
2198 background:#4e85bb url("../images/button_highlight.png") repeat-x;
2219 background:#4e85bb url("../images/button_highlight.png") repeat-x;
2199 border-top:1px solid #5c91a4;
2220 border-top:1px solid #5c91a4;
2200 border-left:1px solid #2a6f89;
2221 border-left:1px solid #2a6f89;
2201 border-right:1px solid #2b7089;
2222 border-right:1px solid #2b7089;
2202 border-bottom:1px solid #1a6480;
2223 border-bottom:1px solid #1a6480;
2203 color:#fff;
2224 color:#fff;
2204 }
2225 }
2205
2226
2206 #content div.box div.form div.fields div.field div.highlight .ui-state-hover {
2227 #content div.box div.form div.fields div.field div.highlight .ui-state-hover {
2207 background:#46a0c1 url("../images/button_highlight_selected.png") repeat-x;
2228 background:#46a0c1 url("../images/button_highlight_selected.png") repeat-x;
2208 border-top:1px solid #78acbf;
2229 border-top:1px solid #78acbf;
2209 border-left:1px solid #34819e;
2230 border-left:1px solid #34819e;
2210 border-right:1px solid #35829f;
2231 border-right:1px solid #35829f;
2211 border-bottom:1px solid #257897;
2232 border-bottom:1px solid #257897;
2212 color:#fff;
2233 color:#fff;
2213 }
2234 }
2214
2235
2215 ins,div.options a:hover {
2236 ins,div.options a:hover {
2216 text-decoration:none;
2237 text-decoration:none;
2217 }
2238 }
2218
2239
2219 img,#header #header-inner #quick li a:hover span.normal,#header #header-inner #quick li ul li.last,#content div.box div.form div.fields div.field div.textarea table td table td a,#clone_url {
2240 img,#header #header-inner #quick li a:hover span.normal,#header #header-inner #quick li ul li.last,#content div.box div.form div.fields div.field div.textarea table td table td a,#clone_url {
2220 border:none;
2241 border:none;
2221 }
2242 }
2222
2243
2223 img.icon,.right .merge img {
2244 img.icon,.right .merge img {
2224 vertical-align:bottom;
2245 vertical-align:bottom;
2225 }
2246 }
2226
2247
2227 #header ul#logged-user,#content div.box div.title ul.links,#content div.box div.message div.dismiss,#content div.box div.traffic div.legend ul {
2248 #header ul#logged-user,#content div.box div.title ul.links,#content div.box div.message div.dismiss,#content div.box div.traffic div.legend ul {
2228 float:right;
2249 float:right;
2229 margin:0;
2250 margin:0;
2230 padding:0;
2251 padding:0;
2231 }
2252 }
2232
2253
2233 #header #header-inner #home,#header #header-inner #logo,#content div.box ul.left,#content div.box ol.left,#content div.box div.pagination-left,div#commit_history,div#legend_data,div#legend_container,div#legend_choices {
2254 #header #header-inner #home,#header #header-inner #logo,#content div.box ul.left,#content div.box ol.left,#content div.box div.pagination-left,div#commit_history,div#legend_data,div#legend_container,div#legend_choices {
2234 float:left;
2255 float:left;
2235 }
2256 }
2236
2257
2237 #header #header-inner #quick li:hover ul ul,#header #header-inner #quick li:hover ul ul ul,#header #header-inner #quick li:hover ul ul ul ul,#content #left #menu ul.closed,#content #left #menu li ul.collapsed,.yui-tt-shadow {
2258 #header #header-inner #quick li:hover ul ul,#header #header-inner #quick li:hover ul ul ul,#header #header-inner #quick li:hover ul ul ul ul,#content #left #menu ul.closed,#content #left #menu li ul.collapsed,.yui-tt-shadow {
2238 display:none;
2259 display:none;
2239 }
2260 }
2240
2261
2241 #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 {
2262 #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 {
2242 display:block;
2263 display:block;
2243 }
2264 }
2244
2265
2245 #content div.graph{
2266 #content div.graph{
2246 padding:0 10px 10px;
2267 padding:0 10px 10px;
2247 }
2268 }
2248
2269
2249 #content div.box div.title ul.links li a:hover,#content div.box div.title ul.links li.ui-tabs-selected a {
2270 #content div.box div.title ul.links li a:hover,#content div.box div.title ul.links li.ui-tabs-selected a {
2250 color:#bfe3ff;
2271 color:#bfe3ff;
2251 }
2272 }
2252
2273
2253 #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 {
2274 #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 {
2254 margin:10px 24px 10px 44px;
2275 margin:10px 24px 10px 44px;
2255 }
2276 }
2256
2277
2257 #content div.box div.form,#content div.box div.table,#content div.box div.traffic {
2278 #content div.box div.form,#content div.box div.table,#content div.box div.traffic {
2258 clear:both;
2279 clear:both;
2259 overflow:hidden;
2280 overflow:hidden;
2260 margin:0;
2281 margin:0;
2261 padding:0 20px 10px;
2282 padding:0 20px 10px;
2262 }
2283 }
2263
2284
2264 #content div.box div.form div.fields,#login div.form,#login div.form div.fields,#register div.form,#register div.form div.fields {
2285 #content div.box div.form div.fields,#login div.form,#login div.form div.fields,#register div.form,#register div.form div.fields {
2265 clear:both;
2286 clear:both;
2266 overflow:hidden;
2287 overflow:hidden;
2267 margin:0;
2288 margin:0;
2268 padding:0;
2289 padding:0;
2269 }
2290 }
2270
2291
2271 #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 {
2292 #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 {
2272 height:1%;
2293 height:1%;
2273 display:block;
2294 display:block;
2274 color:#363636;
2295 color:#363636;
2275 margin:0;
2296 margin:0;
2276 padding:2px 0 0;
2297 padding:2px 0 0;
2277 }
2298 }
2278
2299
2279 #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 {
2300 #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 {
2280 background:#FBE3E4;
2301 background:#FBE3E4;
2281 border-top:1px solid #e1b2b3;
2302 border-top:1px solid #e1b2b3;
2282 border-left:1px solid #e1b2b3;
2303 border-left:1px solid #e1b2b3;
2283 border-right:1px solid #FBC2C4;
2304 border-right:1px solid #FBC2C4;
2284 border-bottom:1px solid #FBC2C4;
2305 border-bottom:1px solid #FBC2C4;
2285 }
2306 }
2286
2307
2287 #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 {
2308 #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 {
2288 background:#E6EFC2;
2309 background:#E6EFC2;
2289 border-top:1px solid #cebb98;
2310 border-top:1px solid #cebb98;
2290 border-left:1px solid #cebb98;
2311 border-left:1px solid #cebb98;
2291 border-right:1px solid #c6d880;
2312 border-right:1px solid #c6d880;
2292 border-bottom:1px solid #c6d880;
2313 border-bottom:1px solid #c6d880;
2293 }
2314 }
2294
2315
2295 #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 {
2316 #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 {
2296 margin:0;
2317 margin:0;
2297 }
2318 }
2298
2319
2299 #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{
2320 #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{
2300 margin:0 0 0 0px !important;
2321 margin:0 0 0 0px !important;
2301 padding:0;
2322 padding:0;
2302 }
2323 }
2303
2324
2304 #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 {
2325 #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 {
2305 margin:0 0 0 200px;
2326 margin:0 0 0 200px;
2306 padding:0;
2327 padding:0;
2307 }
2328 }
2308
2329
2309
2330
2310 #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 {
2331 #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 {
2311 color:#000;
2332 color:#000;
2312 text-decoration:none;
2333 text-decoration:none;
2313 }
2334 }
2314
2335
2315 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus,#content div.box div.action a.ui-selectmenu-focus {
2336 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus,#content div.box div.action a.ui-selectmenu-focus {
2316 border:1px solid #666;
2337 border:1px solid #666;
2317 }
2338 }
2318
2339
2319 #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 {
2340 #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 {
2320 clear:both;
2341 clear:both;
2321 overflow:hidden;
2342 overflow:hidden;
2322 margin:0;
2343 margin:0;
2323 padding:8px 0 2px;
2344 padding:8px 0 2px;
2324 }
2345 }
2325
2346
2326 #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 {
2347 #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 {
2327 float:left;
2348 float:left;
2328 margin:0;
2349 margin:0;
2329 }
2350 }
2330
2351
2331 #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 {
2352 #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 {
2332 height:1%;
2353 height:1%;
2333 display:block;
2354 display:block;
2334 float:left;
2355 float:left;
2335 margin:2px 0 0 4px;
2356 margin:2px 0 0 4px;
2336 }
2357 }
2337
2358
2338 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 {
2359 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 {
2339 color:#000;
2360 color:#000;
2340 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
2361 font-family:Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
2341 font-size:11px;
2362 font-size:11px;
2342 font-weight:700;
2363 font-weight:700;
2343 margin:0;
2364 margin:0;
2344 }
2365 }
2345
2366
2346 div.form div.fields div.field div.button .ui-button,#content div.box div.form div.fields div.buttons input.ui-button {
2367 div.form div.fields div.field div.button .ui-button,#content div.box div.form div.fields div.buttons input.ui-button {
2347 background:#e5e3e3 url("../images/button.png") repeat-x;
2368 background:#e5e3e3 url("../images/button.png") repeat-x;
2348 border-top:1px solid #DDD;
2369 border-top:1px solid #DDD;
2349 border-left:1px solid #c6c6c6;
2370 border-left:1px solid #c6c6c6;
2350 border-right:1px solid #DDD;
2371 border-right:1px solid #DDD;
2351 border-bottom:1px solid #c6c6c6;
2372 border-bottom:1px solid #c6c6c6;
2352 color:#515151;
2373 color:#515151;
2353 outline:none;
2374 outline:none;
2354 margin:0;
2375 margin:0;
2355 padding:6px 12px;
2376 padding:6px 12px;
2356 }
2377 }
2357
2378
2358 div.form div.fields div.field div.button .ui-state-hover,#content div.box div.form div.fields div.buttons input.ui-state-hover {
2379 div.form div.fields div.field div.button .ui-state-hover,#content div.box div.form div.fields div.buttons input.ui-state-hover {
2359 background:#b4b4b4 url("../images/button_selected.png") repeat-x;
2380 background:#b4b4b4 url("../images/button_selected.png") repeat-x;
2360 border-top:1px solid #ccc;
2381 border-top:1px solid #ccc;
2361 border-left:1px solid #bebebe;
2382 border-left:1px solid #bebebe;
2362 border-right:1px solid #b1b1b1;
2383 border-right:1px solid #b1b1b1;
2363 border-bottom:1px solid #afafaf;
2384 border-bottom:1px solid #afafaf;
2364 color:#515151;
2385 color:#515151;
2365 outline:none;
2386 outline:none;
2366 margin:0;
2387 margin:0;
2367 padding:6px 12px;
2388 padding:6px 12px;
2368 }
2389 }
2369
2390
2370 div.form div.fields div.field div.highlight,#content div.box div.form div.fields div.buttons div.highlight {
2391 div.form div.fields div.field div.highlight,#content div.box div.form div.fields div.buttons div.highlight {
2371 display:inline;
2392 display:inline;
2372 }
2393 }
2373
2394
2374 #content div.box div.form div.fields div.buttons,div.form div.fields div.buttons {
2395 #content div.box div.form div.fields div.buttons,div.form div.fields div.buttons {
2375 margin:10px 0 0 200px;
2396 margin:10px 0 0 200px;
2376 padding:0;
2397 padding:0;
2377 }
2398 }
2378
2399
2379 #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 {
2400 #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 {
2380 margin:10px 0 0;
2401 margin:10px 0 0;
2381 }
2402 }
2382
2403
2383 #content div.box table td.user,#content div.box table td.address {
2404 #content div.box table td.user,#content div.box table td.address {
2384 width:10%;
2405 width:10%;
2385 text-align:center;
2406 text-align:center;
2386 }
2407 }
2387
2408
2388 #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 {
2409 #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 {
2389 text-align:right;
2410 text-align:right;
2390 margin:6px 0 0;
2411 margin:6px 0 0;
2391 padding:0;
2412 padding:0;
2392 }
2413 }
2393
2414
2394 #content div.box div.action div.button input.ui-button,#login div.form div.fields div.buttons input.ui-button,#register div.form div.fields div.buttons input.ui-button {
2415 #content div.box div.action div.button input.ui-button,#login div.form div.fields div.buttons input.ui-button,#register div.form div.fields div.buttons input.ui-button {
2395 background:#e5e3e3 url("../images/button.png") repeat-x;
2416 background:#e5e3e3 url("../images/button.png") repeat-x;
2396 border-top:1px solid #DDD;
2417 border-top:1px solid #DDD;
2397 border-left:1px solid #c6c6c6;
2418 border-left:1px solid #c6c6c6;
2398 border-right:1px solid #DDD;
2419 border-right:1px solid #DDD;
2399 border-bottom:1px solid #c6c6c6;
2420 border-bottom:1px solid #c6c6c6;
2400 color:#515151;
2421 color:#515151;
2401 margin:0;
2422 margin:0;
2402 padding:6px 12px;
2423 padding:6px 12px;
2403 }
2424 }
2404
2425
2405 #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 {
2426 #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 {
2406 background:#b4b4b4 url("../images/button_selected.png") repeat-x;
2427 background:#b4b4b4 url("../images/button_selected.png") repeat-x;
2407 border-top:1px solid #ccc;
2428 border-top:1px solid #ccc;
2408 border-left:1px solid #bebebe;
2429 border-left:1px solid #bebebe;
2409 border-right:1px solid #b1b1b1;
2430 border-right:1px solid #b1b1b1;
2410 border-bottom:1px solid #afafaf;
2431 border-bottom:1px solid #afafaf;
2411 color:#515151;
2432 color:#515151;
2412 margin:0;
2433 margin:0;
2413 padding:6px 12px;
2434 padding:6px 12px;
2414 }
2435 }
2415
2436
2416 #content div.box div.pagination div.results,#content div.box div.pagination-wh div.results {
2437 #content div.box div.pagination div.results,#content div.box div.pagination-wh div.results {
2417 text-align:left;
2438 text-align:left;
2418 float:left;
2439 float:left;
2419 margin:0;
2440 margin:0;
2420 padding:0;
2441 padding:0;
2421 }
2442 }
2422
2443
2423 #content div.box div.pagination div.results span,#content div.box div.pagination-wh div.results span {
2444 #content div.box div.pagination div.results span,#content div.box div.pagination-wh div.results span {
2424 height:1%;
2445 height:1%;
2425 display:block;
2446 display:block;
2426 float:left;
2447 float:left;
2427 background:#ebebeb url("../images/pager.png") repeat-x;
2448 background:#ebebeb url("../images/pager.png") repeat-x;
2428 border-top:1px solid #dedede;
2449 border-top:1px solid #dedede;
2429 border-left:1px solid #cfcfcf;
2450 border-left:1px solid #cfcfcf;
2430 border-right:1px solid #c4c4c4;
2451 border-right:1px solid #c4c4c4;
2431 border-bottom:1px solid #c4c4c4;
2452 border-bottom:1px solid #c4c4c4;
2432 color:#4A4A4A;
2453 color:#4A4A4A;
2433 font-weight:700;
2454 font-weight:700;
2434 margin:0;
2455 margin:0;
2435 padding:6px 8px;
2456 padding:6px 8px;
2436 }
2457 }
2437
2458
2438 #content div.box div.pagination ul.pager li.disabled,#content div.box div.pagination-wh a.disabled {
2459 #content div.box div.pagination ul.pager li.disabled,#content div.box div.pagination-wh a.disabled {
2439 color:#B4B4B4;
2460 color:#B4B4B4;
2440 padding:6px;
2461 padding:6px;
2441 }
2462 }
2442
2463
2443 #login,#register {
2464 #login,#register {
2444 width:520px;
2465 width:520px;
2445 margin:10% auto 0;
2466 margin:10% auto 0;
2446 padding:0;
2467 padding:0;
2447 }
2468 }
2448
2469
2449 #login div.color,#register div.color {
2470 #login div.color,#register div.color {
2450 clear:both;
2471 clear:both;
2451 overflow:hidden;
2472 overflow:hidden;
2452 background:#FFF;
2473 background:#FFF;
2453 margin:10px auto 0;
2474 margin:10px auto 0;
2454 padding:3px 3px 3px 0;
2475 padding:3px 3px 3px 0;
2455 }
2476 }
2456
2477
2457 #login div.color a,#register div.color a {
2478 #login div.color a,#register div.color a {
2458 width:20px;
2479 width:20px;
2459 height:20px;
2480 height:20px;
2460 display:block;
2481 display:block;
2461 float:left;
2482 float:left;
2462 margin:0 0 0 3px;
2483 margin:0 0 0 3px;
2463 padding:0;
2484 padding:0;
2464 }
2485 }
2465
2486
2466 #login div.title h5,#register div.title h5 {
2487 #login div.title h5,#register div.title h5 {
2467 color:#fff;
2488 color:#fff;
2468 margin:10px;
2489 margin:10px;
2469 padding:0;
2490 padding:0;
2470 }
2491 }
2471
2492
2472 #login div.form div.fields div.field,#register div.form div.fields div.field {
2493 #login div.form div.fields div.field,#register div.form div.fields div.field {
2473 clear:both;
2494 clear:both;
2474 overflow:hidden;
2495 overflow:hidden;
2475 margin:0;
2496 margin:0;
2476 padding:0 0 10px;
2497 padding:0 0 10px;
2477 }
2498 }
2478
2499
2479 #login div.form div.fields div.field span.error-message,#register div.form div.fields div.field span.error-message {
2500 #login div.form div.fields div.field span.error-message,#register div.form div.fields div.field span.error-message {
2480 height:1%;
2501 height:1%;
2481 display:block;
2502 display:block;
2482 color:red;
2503 color:red;
2483 margin:8px 0 0;
2504 margin:8px 0 0;
2484 padding:0;
2505 padding:0;
2485 max-width: 320px;
2506 max-width: 320px;
2486 }
2507 }
2487
2508
2488 #login div.form div.fields div.field div.label label,#register div.form div.fields div.field div.label label {
2509 #login div.form div.fields div.field div.label label,#register div.form div.fields div.field div.label label {
2489 color:#000;
2510 color:#000;
2490 font-weight:700;
2511 font-weight:700;
2491 }
2512 }
2492
2513
2493 #login div.form div.fields div.field div.input,#register div.form div.fields div.field div.input {
2514 #login div.form div.fields div.field div.input,#register div.form div.fields div.field div.input {
2494 float:left;
2515 float:left;
2495 margin:0;
2516 margin:0;
2496 padding:0;
2517 padding:0;
2497 }
2518 }
2498
2519
2499 #login div.form div.fields div.field div.checkbox,#register div.form div.fields div.field div.checkbox {
2520 #login div.form div.fields div.field div.checkbox,#register div.form div.fields div.field div.checkbox {
2500 margin:0 0 0 184px;
2521 margin:0 0 0 184px;
2501 padding:0;
2522 padding:0;
2502 }
2523 }
2503
2524
2504 #login div.form div.fields div.field div.checkbox label,#register div.form div.fields div.field div.checkbox label {
2525 #login div.form div.fields div.field div.checkbox label,#register div.form div.fields div.field div.checkbox label {
2505 color:#565656;
2526 color:#565656;
2506 font-weight:700;
2527 font-weight:700;
2507 }
2528 }
2508
2529
2509 #login div.form div.fields div.buttons input,#register div.form div.fields div.buttons input {
2530 #login div.form div.fields div.buttons input,#register div.form div.fields div.buttons input {
2510 color:#000;
2531 color:#000;
2511 font-size:1em;
2532 font-size:1em;
2512 font-weight:700;
2533 font-weight:700;
2513 font-family:Verdana, Helvetica, Sans-Serif;
2534 font-family:Verdana, Helvetica, Sans-Serif;
2514 margin:0;
2535 margin:0;
2515 }
2536 }
2516
2537
2517 #changeset_content .container .wrapper,#graph_content .container .wrapper {
2538 #changeset_content .container .wrapper,#graph_content .container .wrapper {
2518 width:600px;
2539 width:600px;
2519 }
2540 }
2520
2541
2521 #changeset_content .container .left,#graph_content .container .left {
2542 #changeset_content .container .left,#graph_content .container .left {
2522 float:left;
2543 float:left;
2523 width:70%;
2544 width:70%;
2524 padding-left:5px;
2545 padding-left:5px;
2525 }
2546 }
2526
2547
2527 #changeset_content .container .left .date,.ac .match {
2548 #changeset_content .container .left .date,.ac .match {
2528 font-weight:700;
2549 font-weight:700;
2529 padding-top: 5px;
2550 padding-top: 5px;
2530 padding-bottom:5px;
2551 padding-bottom:5px;
2531 }
2552 }
2532
2553
2533 div#legend_container table td,div#legend_choices table td {
2554 div#legend_container table td,div#legend_choices table td {
2534 border:none !important;
2555 border:none !important;
2535 height:20px !important;
2556 height:20px !important;
2536 padding:0 !important;
2557 padding:0 !important;
2537 }
2558 }
2538
2559
2539 #q_filter{
2560 #q_filter{
2540 border:0 none;
2561 border:0 none;
2541 color:#AAAAAA;
2562 color:#AAAAAA;
2542 margin-bottom:-4px;
2563 margin-bottom:-4px;
2543 margin-top:-4px;
2564 margin-top:-4px;
2544 padding-left:3px;
2565 padding-left:3px;
2545 }
2566 }
2546
2567
@@ -1,167 +1,165 b''
1 ## -*- coding: utf-8 -*-
1 ## -*- coding: utf-8 -*-
2
2
3 <%inherit file="/base/base.html"/>
3 <%inherit file="/base/base.html"/>
4
4
5 <%def name="title()">
5 <%def name="title()">
6 ${c.repo_name} ${_('Changelog')} - ${c.rhodecode_name}
6 ${c.repo_name} ${_('Changelog')} - ${c.rhodecode_name}
7 </%def>
7 </%def>
8
8
9 <%def name="breadcrumbs_links()">
9 <%def name="breadcrumbs_links()">
10 ${h.link_to(u'Home',h.url('/'))}
10 ${h.link_to(u'Home',h.url('/'))}
11 &raquo;
11 &raquo;
12 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
12 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
13 &raquo;
13 &raquo;
14 ${_('Changelog')} - ${_('showing ')} ${c.size if c.size <= c.total_cs else c.total_cs} ${_('out of')} ${c.total_cs} ${_('revisions')}
14 ${_('Changelog')} - ${_('showing ')} ${c.size if c.size <= c.total_cs else c.total_cs} ${_('out of')} ${c.total_cs} ${_('revisions')}
15 </%def>
15 </%def>
16
16
17 <%def name="page_nav()">
17 <%def name="page_nav()">
18 ${self.menu('changelog')}
18 ${self.menu('changelog')}
19 </%def>
19 </%def>
20
20
21 <%def name="main()">
21 <%def name="main()">
22 <div class="box">
22 <div class="box">
23 <!-- box / title -->
23 <!-- box / title -->
24 <div class="title">
24 <div class="title">
25 ${self.breadcrumbs()}
25 ${self.breadcrumbs()}
26 </div>
26 </div>
27 <div class="table">
27 <div class="table">
28 % if c.pagination:
28 % if c.pagination:
29 <div id="graph">
29 <div id="graph">
30 <div id="graph_nodes">
30 <div id="graph_nodes">
31 <canvas id="graph_canvas"></canvas>
31 <canvas id="graph_canvas"></canvas>
32 </div>
32 </div>
33 <div id="graph_content">
33 <div id="graph_content">
34 <div class="container_header">
34 <div class="container_header">
35 ${h.form(h.url.current(),method='get')}
35 ${h.form(h.url.current(),method='get')}
36 <div class="info_box">
36 <div class="info_box">
37 <span>${_('Show')}:</span>
37 ${h.submit('set',_('Show'),class_="ui-button-small")}
38 ${h.text('size',size=1,value=c.size)}
38 ${h.text('size',size=1,value=c.size)}
39 <span>${_('revisions')}</span>
39 <span class="rev">${_('revisions')}</span>
40 ${h.submit('set',_('set'))}
41
42 </div>
40 </div>
43 ${h.end_form()}
41 ${h.end_form()}
44 <div id="rev_range_container" style="display:none"></div>
42 <div id="rev_range_container" style="display:none"></div>
45 </div>
43 </div>
46
44
47 %for cnt,cs in enumerate(c.pagination):
45 %for cnt,cs in enumerate(c.pagination):
48 <div id="chg_${cnt+1}" class="container">
46 <div id="chg_${cnt+1}" class="container">
49 <div class="left">
47 <div class="left">
50 <div class="date">
48 <div class="date">
51 ${h.checkbox(cs.short_id,class_="changeset_range")}
49 ${h.checkbox(cs.short_id,class_="changeset_range")}
52 <span>${_('commit')} ${cs.revision}: ${h.short_id(cs.raw_id)}@${cs.date}</span>
50 <span>${_('commit')} ${cs.revision}: ${h.short_id(cs.raw_id)}@${cs.date}</span>
53 </div>
51 </div>
54 <div class="author">
52 <div class="author">
55 <div class="gravatar">
53 <div class="gravatar">
56 <img alt="gravatar" src="${h.gravatar_url(h.email(cs.author),20)}"/>
54 <img alt="gravatar" src="${h.gravatar_url(h.email(cs.author),20)}"/>
57 </div>
55 </div>
58 <span>${h.person(cs.author)}</span><br/>
56 <span>${h.person(cs.author)}</span><br/>
59 <span><a href="mailto:${h.email_or_none(cs.author)}">${h.email_or_none(cs.author)}</a></span><br/>
57 <span><a href="mailto:${h.email_or_none(cs.author)}">${h.email_or_none(cs.author)}</a></span><br/>
60 </div>
58 </div>
61 <div class="message">${h.link_to(h.wrap_paragraphs(cs.message),h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}</div>
59 <div class="message">${h.link_to(h.wrap_paragraphs(cs.message),h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}</div>
62 </div>
60 </div>
63 <div class="right">
61 <div class="right">
64 <div class="changes">
62 <div class="changes">
65 % if len(cs.affected_files) <= c.affected_files_cut_off:
63 % if len(cs.affected_files) <= c.affected_files_cut_off:
66 <span class="removed tooltip" title="<b>${_('removed')}</b>${h.changed_tooltip(cs.removed)}">${len(cs.removed)}</span>
64 <span class="removed tooltip" title="<b>${_('removed')}</b>${h.changed_tooltip(cs.removed)}">${len(cs.removed)}</span>
67 <span class="changed tooltip" title="<b>${_('changed')}</b>${h.changed_tooltip(cs.changed)}">${len(cs.changed)}</span>
65 <span class="changed tooltip" title="<b>${_('changed')}</b>${h.changed_tooltip(cs.changed)}">${len(cs.changed)}</span>
68 <span class="added tooltip" title="<b>${_('added')}</b>${h.changed_tooltip(cs.added)}">${len(cs.added)}</span>
66 <span class="added tooltip" title="<b>${_('added')}</b>${h.changed_tooltip(cs.added)}">${len(cs.added)}</span>
69 % else:
67 % else:
70 <span class="removed tooltip" title="${_('affected %s files') % len(cs.affected_files)}">!</span>
68 <span class="removed tooltip" title="${_('affected %s files') % len(cs.affected_files)}">!</span>
71 <span class="changed tooltip" title="${_('affected %s files') % len(cs.affected_files)}">!</span>
69 <span class="changed tooltip" title="${_('affected %s files') % len(cs.affected_files)}">!</span>
72 <span class="added tooltip" title="${_('affected %s files') % len(cs.affected_files)}">!</span>
70 <span class="added tooltip" title="${_('affected %s files') % len(cs.affected_files)}">!</span>
73 % endif
71 % endif
74 </div>
72 </div>
75 %if len(cs.parents)>1:
73 %if len(cs.parents)>1:
76 <div class="merge">
74 <div class="merge">
77 ${_('merge')}<img alt="merge" src="${h.url("/images/icons/arrow_join.png")}"/>
75 ${_('merge')}<img alt="merge" src="${h.url("/images/icons/arrow_join.png")}"/>
78 </div>
76 </div>
79 %endif
77 %endif
80 %if cs.parents:
78 %if cs.parents:
81 %for p_cs in reversed(cs.parents):
79 %for p_cs in reversed(cs.parents):
82 <div class="parent">${_('Parent')} ${p_cs.revision}: ${h.link_to(h.short_id(p_cs.raw_id),
80 <div class="parent">${_('Parent')} ${p_cs.revision}: ${h.link_to(h.short_id(p_cs.raw_id),
83 h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
81 h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
84 </div>
82 </div>
85 %endfor
83 %endfor
86 %else:
84 %else:
87 <div class="parent">${_('No parents')}</div>
85 <div class="parent">${_('No parents')}</div>
88 %endif
86 %endif
89
87
90 <span class="logtags">
88 <span class="logtags">
91 %if cs.branch:
89 %if cs.branch:
92 <span class="branchtag" title="${'%s %s' % (_('branch'),cs.branch)}">
90 <span class="branchtag" title="${'%s %s' % (_('branch'),cs.branch)}">
93 ${h.link_to(cs.branch,h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}</span>
91 ${h.link_to(cs.branch,h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}</span>
94 %endif
92 %endif
95 %for tag in cs.tags:
93 %for tag in cs.tags:
96 <span class="tagtag" title="${'%s %s' % (_('tag'),tag)}">
94 <span class="tagtag" title="${'%s %s' % (_('tag'),tag)}">
97 ${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}</span>
95 ${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}</span>
98 %endfor
96 %endfor
99 </span>
97 </span>
100 </div>
98 </div>
101 </div>
99 </div>
102
100
103 %endfor
101 %endfor
104 <div class="pagination-wh pagination-left">
102 <div class="pagination-wh pagination-left">
105 ${c.pagination.pager('$link_previous ~2~ $link_next')}
103 ${c.pagination.pager('$link_previous ~2~ $link_next')}
106 </div>
104 </div>
107 </div>
105 </div>
108 </div>
106 </div>
109
107
110 <script type="text/javascript" src="${h.url('/js/graph.js')}"></script>
108 <script type="text/javascript" src="${h.url('/js/graph.js')}"></script>
111 <script type="text/javascript">
109 <script type="text/javascript">
112 YAHOO.util.Event.onDOMReady(function(){
110 YAHOO.util.Event.onDOMReady(function(){
113
111
114 //Monitor range checkboxes and build a link to changesets
112 //Monitor range checkboxes and build a link to changesets
115 //ranges
113 //ranges
116 var checkboxes = YUD.getElementsByClassName('changeset_range');
114 var checkboxes = YUD.getElementsByClassName('changeset_range');
117 var url_tmpl = "${h.url('changeset_home',repo_name=c.repo_name,revision='__REVRANGE__')}";
115 var url_tmpl = "${h.url('changeset_home',repo_name=c.repo_name,revision='__REVRANGE__')}";
118 YUE.on(checkboxes,'click',function(e){
116 YUE.on(checkboxes,'click',function(e){
119 var checked_checkboxes = [];
117 var checked_checkboxes = [];
120 for (pos in checkboxes){
118 for (pos in checkboxes){
121 if(checkboxes[pos].checked){
119 if(checkboxes[pos].checked){
122 checked_checkboxes.push(checkboxes[pos]);
120 checked_checkboxes.push(checkboxes[pos]);
123 }
121 }
124 }
122 }
125 if(checked_checkboxes.length>1){
123 if(checked_checkboxes.length>1){
126 var rev_end = checked_checkboxes[0].name;
124 var rev_end = checked_checkboxes[0].name;
127 var rev_start = checked_checkboxes[checked_checkboxes.length-1].name;
125 var rev_start = checked_checkboxes[checked_checkboxes.length-1].name;
128
126
129 var url = url_tmpl.replace('__REVRANGE__',
127 var url = url_tmpl.replace('__REVRANGE__',
130 rev_start+'...'+rev_end);
128 rev_start+'...'+rev_end);
131
129
132 var link = "<a href="+url+">${_('Show selected changes __S -> __E')}</a>"
130 var link = "<a href="+url+">${_('Show selected changes __S -> __E')}</a>"
133 link = link.replace('__S',rev_start);
131 link = link.replace('__S',rev_start);
134 link = link.replace('__E',rev_end);
132 link = link.replace('__E',rev_end);
135 YUD.get('rev_range_container').innerHTML = link;
133 YUD.get('rev_range_container').innerHTML = link;
136 YUD.setStyle('rev_range_container','display','');
134 YUD.setStyle('rev_range_container','display','');
137 }
135 }
138 else{
136 else{
139 YUD.setStyle('rev_range_container','display','none');
137 YUD.setStyle('rev_range_container','display','none');
140
138
141 }
139 }
142 });
140 });
143
141
144 function set_canvas() {
142 function set_canvas() {
145 var c = document.getElementById('graph_nodes');
143 var c = document.getElementById('graph_nodes');
146 var t = document.getElementById('graph_content');
144 var t = document.getElementById('graph_content');
147 canvas = document.getElementById('graph_canvas');
145 canvas = document.getElementById('graph_canvas');
148 var div_h = t.clientHeight;
146 var div_h = t.clientHeight;
149 c.style.height=div_h+'px';
147 c.style.height=div_h+'px';
150 canvas.setAttribute('height',div_h);
148 canvas.setAttribute('height',div_h);
151 canvas.setAttribute('width',160);
149 canvas.setAttribute('width',160);
152 };
150 };
153 set_canvas();
151 set_canvas();
154 var jsdata = ${c.jsdata|n};
152 var jsdata = ${c.jsdata|n};
155 var r = new BranchRenderer();
153 var r = new BranchRenderer();
156 r.render(jsdata);
154 r.render(jsdata);
157
155
158
156
159
157
160 });
158 });
161 </script>
159 </script>
162 %else:
160 %else:
163 ${_('There are no changes yet')}
161 ${_('There are no changes yet')}
164 %endif
162 %endif
165 </div>
163 </div>
166 </div>
164 </div>
167 </%def> No newline at end of file
165 </%def>
@@ -1,91 +1,91 b''
1 <%inherit file="/base/base.html"/>
1 <%inherit file="/base/base.html"/>
2
2
3 <%def name="title()">
3 <%def name="title()">
4 ${c.repo_name} ${_('File annotate')} - ${c.rhodecode_name}
4 ${c.repo_name} ${_('File annotate')} - ${c.rhodecode_name}
5 </%def>
5 </%def>
6
6
7 <%def name="breadcrumbs_links()">
7 <%def name="breadcrumbs_links()">
8 ${h.link_to(u'Home',h.url('/'))}
8 ${h.link_to(u'Home',h.url('/'))}
9 &raquo;
9 &raquo;
10 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
10 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
11 &raquo;
11 &raquo;
12 ${_('annotate')} @ R${c.cs.revision}:${h.short_id(c.cs.raw_id)}
12 ${_('annotate')} @ R${c.cs.revision}:${h.short_id(c.cs.raw_id)}
13 </%def>
13 </%def>
14
14
15 <%def name="page_nav()">
15 <%def name="page_nav()">
16 ${self.menu('files')}
16 ${self.menu('files')}
17 </%def>
17 </%def>
18 <%def name="main()">
18 <%def name="main()">
19 <div class="box">
19 <div class="box">
20 <!-- box / title -->
20 <!-- box / title -->
21 <div class="title">
21 <div class="title">
22 ${self.breadcrumbs()}
22 ${self.breadcrumbs()}
23 <ul class="links">
23 <ul class="links">
24 <li>
24 <li>
25 <span style="text-transform: uppercase;"><a href="#">${_('branch')}: ${c.cs.branch}</a></span>
25 <span style="text-transform: uppercase;"><a href="#">${_('branch')}: ${c.cs.branch}</a></span>
26 </li>
26 </li>
27 </ul>
27 </ul>
28 </div>
28 </div>
29 <div class="table">
29 <div class="table">
30 <div id="files_data">
30 <div id="files_data">
31 <h3 class="files_location">${_('Location')}: ${h.files_breadcrumbs(c.repo_name,c.cs.revision,c.file.path)}</h3>
31 <h3 class="files_location">${_('Location')}: ${h.files_breadcrumbs(c.repo_name,c.cs.revision,c.file.path)}</h3>
32 <dl class="overview">
32 <dl class="overview">
33 <dt>${_('Revision')}</dt>
33 <dt>${_('Revision')}</dt>
34 <dd>${h.link_to("r%s:%s" % (c.file.last_changeset.revision,h.short_id(c.file.last_changeset.raw_id)),
34 <dd>${h.link_to("r%s:%s" % (c.file.last_changeset.revision,h.short_id(c.file.last_changeset.raw_id)),
35 h.url('changeset_home',repo_name=c.repo_name,revision=c.file.last_changeset.raw_id))} </dd>
35 h.url('changeset_home',repo_name=c.repo_name,revision=c.file.last_changeset.raw_id))} </dd>
36 <dt>${_('Size')}</dt>
36 <dt>${_('Size')}</dt>
37 <dd>${h.format_byte_size(c.file.size,binary=True)}</dd>
37 <dd>${h.format_byte_size(c.file.size,binary=True)}</dd>
38 <dt>${_('Mimetype')}</dt>
38 <dt>${_('Mimetype')}</dt>
39 <dd>${c.file.mimetype}</dd>
39 <dd>${c.file.mimetype}</dd>
40 <dt>${_('Options')}</dt>
40 <dt>${_('Options')}</dt>
41 <dd>${h.link_to(_('show source'),
41 <dd>${h.link_to(_('show source'),
42 h.url('files_home',repo_name=c.repo_name,revision=c.cs.raw_id,f_path=c.f_path))}
42 h.url('files_home',repo_name=c.repo_name,revision=c.cs.raw_id,f_path=c.f_path))}
43 / ${h.link_to(_('show as raw'),
43 / ${h.link_to(_('show as raw'),
44 h.url('files_raw_home',repo_name=c.repo_name,revision=c.cs.raw_id,f_path=c.f_path))}
44 h.url('files_raw_home',repo_name=c.repo_name,revision=c.cs.raw_id,f_path=c.f_path))}
45 / ${h.link_to(_('download as raw'),
45 / ${h.link_to(_('download as raw'),
46 h.url('files_rawfile_home',repo_name=c.repo_name,revision=c.cs.raw_id,f_path=c.f_path))}
46 h.url('files_rawfile_home',repo_name=c.repo_name,revision=c.cs.raw_id,f_path=c.f_path))}
47 </dd>
47 </dd>
48 <dt>${_('History')}</dt>
48 <dt>${_('History')}</dt>
49 <dd>
49 <dd>
50 <div>
50 <div>
51 ${h.form(h.url('files_diff_home',repo_name=c.repo_name,f_path=c.f_path),method='get')}
51 ${h.form(h.url('files_diff_home',repo_name=c.repo_name,f_path=c.f_path),method='get')}
52 ${h.hidden('diff2',c.file.last_changeset.raw_id)}
52 ${h.hidden('diff2',c.file.last_changeset.raw_id)}
53 ${h.select('diff1',c.file.last_changeset.raw_id,c.file_history)}
53 ${h.select('diff1',c.file.last_changeset.raw_id,c.file_history)}
54 ${h.submit('diff','diff to revision',class_="ui-button")}
54 ${h.submit('diff','diff to revision',class_="ui-button-small")}
55 ${h.submit('show_rev','show at revision',class_="ui-button")}
55 ${h.submit('show_rev','show at revision',class_="ui-button-small")}
56 ${h.end_form()}
56 ${h.end_form()}
57 </div>
57 </div>
58 </dd>
58 </dd>
59 </dl>
59 </dl>
60 <div id="body" class="codeblock">
60 <div id="body" class="codeblock">
61 <div class="code-header">
61 <div class="code-header">
62 <div class="revision">${c.file.name}@r${c.file.last_changeset.revision}:${h.short_id(c.file.last_changeset.raw_id)}</div>
62 <div class="revision">${c.file.name}@r${c.file.last_changeset.revision}:${h.short_id(c.file.last_changeset.raw_id)}</div>
63 <div class="commit">"${c.file.message}"</div>
63 <div class="commit">"${c.file.message}"</div>
64 </div>
64 </div>
65 <div class="code-body">
65 <div class="code-body">
66 %if c.file.is_binary:
66 %if c.file.is_binary:
67 ${_('Binary file (%s)') % c.file.mimetype}
67 ${_('Binary file (%s)') % c.file.mimetype}
68 %else:
68 %else:
69 % if c.file.size < c.cut_off_limit:
69 % if c.file.size < c.cut_off_limit:
70 ${h.pygmentize_annotation(c.repo_name,c.file,linenos=True,anchorlinenos=True,lineanchors='S',cssclass="code-highlight")}
70 ${h.pygmentize_annotation(c.repo_name,c.file,linenos=True,anchorlinenos=True,lineanchors='S',cssclass="code-highlight")}
71 %else:
71 %else:
72 ${_('File is to big to display')} ${h.link_to(_('show as raw'),
72 ${_('File is to big to display')} ${h.link_to(_('show as raw'),
73 h.url('files_raw_home',repo_name=c.repo_name,revision=c.cs.revision,f_path=c.f_path))}
73 h.url('files_raw_home',repo_name=c.repo_name,revision=c.cs.revision,f_path=c.f_path))}
74 %endif
74 %endif
75 <script type="text/javascript">
75 <script type="text/javascript">
76 YAHOO.util.Event.onDOMReady(function(){
76 YAHOO.util.Event.onDOMReady(function(){
77 YAHOO.util.Event.addListener('show_rev','click',function(e){
77 YAHOO.util.Event.addListener('show_rev','click',function(e){
78 YAHOO.util.Event.preventDefault(e);
78 YAHOO.util.Event.preventDefault(e);
79 var cs = YAHOO.util.Dom.get('diff1').value;
79 var cs = YAHOO.util.Dom.get('diff1').value;
80 var url = "${h.url('files_annotate_home',repo_name=c.repo_name,revision='__CS__',f_path=c.f_path)}".replace('__CS__',cs);
80 var url = "${h.url('files_annotate_home',repo_name=c.repo_name,revision='__CS__',f_path=c.f_path)}".replace('__CS__',cs);
81 window.location = url;
81 window.location = url;
82 });
82 });
83 });
83 });
84 </script>
84 </script>
85 %endif
85 %endif
86 </div>
86 </div>
87 </div>
87 </div>
88 </div>
88 </div>
89 </div>
89 </div>
90 </div>
90 </div>
91 </%def> No newline at end of file
91 </%def>
@@ -1,102 +1,102 b''
1 <%def name="file_class(node)">
1 <%def name="file_class(node)">
2 %if node.is_file():
2 %if node.is_file():
3 <%return "browser-file" %>
3 <%return "browser-file" %>
4 %else:
4 %else:
5 <%return "browser-dir"%>
5 <%return "browser-dir"%>
6 %endif
6 %endif
7 </%def>
7 </%def>
8 <div id="body" class="browserblock">
8 <div id="body" class="browserblock">
9 <div class="browser-header">
9 <div class="browser-header">
10 <div class="browser-nav">
10 <div class="browser-nav">
11 ${h.form(h.url.current())}
11 ${h.form(h.url.current())}
12 <div class="info_box">
12 <div class="info_box">
13 <span >${_('view')}@rev</span>
13 <span class="rev">${_('view')}@rev</span>
14 <a href="${c.url_prev}" title="${_('previous revision')}">&laquo;</a>
14 <a class="rev" href="${c.url_prev}" title="${_('previous revision')}">&laquo;</a>
15 ${h.text('at_rev',value=c.changeset.revision,size=3)}
15 ${h.text('at_rev',value=c.changeset.revision,size=3)}
16 <a href="${c.url_next}" title="${_('next revision')}">&raquo;</a>
16 <a class="rev" href="${c.url_next}" title="${_('next revision')}">&raquo;</a>
17 ${h.submit('view','view')}
17 ## ${h.submit('view',_('view'),class_="ui-button-small")}
18 </div>
18 </div>
19 ${h.end_form()}
19 ${h.end_form()}
20 </div>
20 </div>
21 <div class="browser-branch">
21 <div class="browser-branch">
22 ${h.checkbox('stay_at_branch',c.changeset.branch,c.changeset.branch==c.branch)}
22 ${h.checkbox('stay_at_branch',c.changeset.branch,c.changeset.branch==c.branch)}
23 <label>${_('follow current branch')}</label>
23 <label>${_('follow current branch')}</label>
24 <script type="text/javascript">
24 <script type="text/javascript">
25 YUE.on('stay_at_branch','click',function(e){
25 YUE.on('stay_at_branch','click',function(e){
26 if(e.target.checked){
26 if(e.target.checked){
27 var uri = "${h.url.current(branch='__BRANCH__')}"
27 var uri = "${h.url.current(branch='__BRANCH__')}"
28 uri = uri.replace('__BRANCH__',e.target.value);
28 uri = uri.replace('__BRANCH__',e.target.value);
29 window.location = uri;
29 window.location = uri;
30 }
30 }
31 else{
31 else{
32 window.location = "${h.url.current()}";
32 window.location = "${h.url.current()}";
33 }
33 }
34
34
35 })
35 })
36 </script>
36 </script>
37 </div>
37 </div>
38 </div>
38 </div>
39
39
40 <div class="browser-body">
40 <div class="browser-body">
41 <table class="code-browser">
41 <table class="code-browser">
42 <thead>
42 <thead>
43 <tr>
43 <tr>
44 <th>${_('Name')}</th>
44 <th>${_('Name')}</th>
45 <th>${_('Size')}</th>
45 <th>${_('Size')}</th>
46 <th>${_('Mimetype')}</th>
46 <th>${_('Mimetype')}</th>
47 <th>${_('Revision')}</th>
47 <th>${_('Revision')}</th>
48 <th>${_('Last modified')}</th>
48 <th>${_('Last modified')}</th>
49 <th>${_('Last commiter')}</th>
49 <th>${_('Last commiter')}</th>
50 </tr>
50 </tr>
51 </thead>
51 </thead>
52
52
53 %if c.files_list.parent:
53 %if c.files_list.parent:
54 <tr class="parity0">
54 <tr class="parity0">
55 <td>
55 <td>
56 ${h.link_to('..',h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.files_list.parent.path),class_="browser-dir")}
56 ${h.link_to('..',h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.files_list.parent.path),class_="browser-dir")}
57 </td>
57 </td>
58 <td></td>
58 <td></td>
59 <td></td>
59 <td></td>
60 <td></td>
60 <td></td>
61 <td></td>
61 <td></td>
62 <td></td>
62 <td></td>
63 </tr>
63 </tr>
64 %endif
64 %endif
65
65
66 %for cnt,node in enumerate(c.files_list):
66 %for cnt,node in enumerate(c.files_list):
67 <tr class="parity${cnt%2}">
67 <tr class="parity${cnt%2}">
68 <td>
68 <td>
69 ${h.link_to(node.name,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=h.safe_unicode(node.path)),class_=file_class(node))}
69 ${h.link_to(node.name,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=h.safe_unicode(node.path)),class_=file_class(node))}
70 </td>
70 </td>
71 <td>
71 <td>
72 %if node.is_file():
72 %if node.is_file():
73 ${h.format_byte_size(node.size,binary=True)}
73 ${h.format_byte_size(node.size,binary=True)}
74 %endif
74 %endif
75 </td>
75 </td>
76 <td>
76 <td>
77 %if node.is_file():
77 %if node.is_file():
78 ${node.mimetype}
78 ${node.mimetype}
79 %endif
79 %endif
80 </td>
80 </td>
81 <td>
81 <td>
82 %if node.is_file():
82 %if node.is_file():
83 <span class="tooltip" title="${node.last_changeset.raw_id}">
83 <span class="tooltip" title="${node.last_changeset.raw_id}">
84 ${'r%s:%s' % (node.last_changeset.revision,node.last_changeset.short_id)}</span>
84 ${'r%s:%s' % (node.last_changeset.revision,node.last_changeset.short_id)}</span>
85 %endif
85 %endif
86 </td>
86 </td>
87 <td>
87 <td>
88 %if node.is_file():
88 %if node.is_file():
89 <span class="tooltip" title="${node.last_changeset.date}">
89 <span class="tooltip" title="${node.last_changeset.date}">
90 ${h.age(node.last_changeset.date)}</span>
90 ${h.age(node.last_changeset.date)}</span>
91 %endif
91 %endif
92 </td>
92 </td>
93 <td>
93 <td>
94 %if node.is_file():
94 %if node.is_file():
95 ${node.last_changeset.author}
95 ${node.last_changeset.author}
96 %endif
96 %endif
97 </td>
97 </td>
98 </tr>
98 </tr>
99 %endfor
99 %endfor
100 </table>
100 </table>
101 </div>
101 </div>
102 </div> No newline at end of file
102 </div>
@@ -1,91 +1,91 b''
1 <dl>
1 <dl>
2 <dt>${_('Revision')}</dt>
2 <dt>${_('Revision')}</dt>
3 <dd>
3 <dd>
4 ${h.link_to("r%s:%s" % (c.files_list.last_changeset.revision,h.short_id(c.files_list.last_changeset.raw_id)),
4 ${h.link_to("r%s:%s" % (c.files_list.last_changeset.revision,h.short_id(c.files_list.last_changeset.raw_id)),
5 h.url('changeset_home',repo_name=c.repo_name,revision=c.files_list.last_changeset.raw_id))}
5 h.url('changeset_home',repo_name=c.repo_name,revision=c.files_list.last_changeset.raw_id))}
6 </dd>
6 </dd>
7 <dt>${_('Size')}</dt>
7 <dt>${_('Size')}</dt>
8 <dd>${h.format_byte_size(c.files_list.size,binary=True)}</dd>
8 <dd>${h.format_byte_size(c.files_list.size,binary=True)}</dd>
9 <dt>${_('Mimetype')}</dt>
9 <dt>${_('Mimetype')}</dt>
10 <dd>${c.files_list.mimetype}</dd>
10 <dd>${c.files_list.mimetype}</dd>
11 <dt>${_('Options')}</dt>
11 <dt>${_('Options')}</dt>
12 <dd>${h.link_to(_('show annotation'),
12 <dd>${h.link_to(_('show annotation'),
13 h.url('files_annotate_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path))}
13 h.url('files_annotate_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path))}
14 / ${h.link_to(_('show as raw'),
14 / ${h.link_to(_('show as raw'),
15 h.url('files_raw_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path))}
15 h.url('files_raw_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path))}
16 / ${h.link_to(_('download as raw'),
16 / ${h.link_to(_('download as raw'),
17 h.url('files_rawfile_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path))}
17 h.url('files_rawfile_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path))}
18 </dd>
18 </dd>
19 <dt>${_('History')}</dt>
19 <dt>${_('History')}</dt>
20 <dd>
20 <dd>
21 <div>
21 <div>
22 ${h.form(h.url('files_diff_home',repo_name=c.repo_name,f_path=c.f_path),method='get')}
22 ${h.form(h.url('files_diff_home',repo_name=c.repo_name,f_path=c.f_path),method='get')}
23 ${h.hidden('diff2',c.files_list.last_changeset.raw_id)}
23 ${h.hidden('diff2',c.files_list.last_changeset.raw_id)}
24 ${h.select('diff1',c.files_list.last_changeset.raw_id,c.file_history)}
24 ${h.select('diff1',c.files_list.last_changeset.raw_id,c.file_history)}
25 ${h.submit('diff','diff to revision',class_="ui-button")}
25 ${h.submit('diff','diff to revision',class_="ui-button-small")}
26 ${h.submit('show_rev','show at revision',class_="ui-button")}
26 ${h.submit('show_rev','show at revision',class_="ui-button-small")}
27 ${h.end_form()}
27 ${h.end_form()}
28 </div>
28 </div>
29 </dd>
29 </dd>
30 </dl>
30 </dl>
31
31
32
32
33 <div id="body" class="codeblock">
33 <div id="body" class="codeblock">
34 <div class="code-header">
34 <div class="code-header">
35 <div class="revision">${c.files_list.name}@r${c.files_list.last_changeset.revision}:${h.short_id(c.files_list.last_changeset.raw_id)}</div>
35 <div class="revision">${c.files_list.name}@r${c.files_list.last_changeset.revision}:${h.short_id(c.files_list.last_changeset.raw_id)}</div>
36 <div class="commit">"${c.files_list.last_changeset.message}"</div>
36 <div class="commit">"${c.files_list.last_changeset.message}"</div>
37 </div>
37 </div>
38 <div class="code-body">
38 <div class="code-body">
39 %if c.files_list.is_binary:
39 %if c.files_list.is_binary:
40 ${_('Binary file (%s)') % c.files_list.mimetype}
40 ${_('Binary file (%s)') % c.files_list.mimetype}
41 %else:
41 %else:
42 % if c.files_list.size < c.cut_off_limit:
42 % if c.files_list.size < c.cut_off_limit:
43 ${h.pygmentize(c.files_list,linenos=True,anchorlinenos=True,lineanchors='L',cssclass="code-highlight")}
43 ${h.pygmentize(c.files_list,linenos=True,anchorlinenos=True,lineanchors='L',cssclass="code-highlight")}
44 %else:
44 %else:
45 ${_('File is to big to display')} ${h.link_to(_('show as raw'),
45 ${_('File is to big to display')} ${h.link_to(_('show as raw'),
46 h.url('files_raw_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path))}
46 h.url('files_raw_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path))}
47 %endif
47 %endif
48
48
49 <script type="text/javascript">
49 <script type="text/javascript">
50 function highlight_lines(lines){
50 function highlight_lines(lines){
51 for(pos in lines){
51 for(pos in lines){
52 YUD.setStyle('L'+lines[pos],'background-color','#FFFFBE');
52 YUD.setStyle('L'+lines[pos],'background-color','#FFFFBE');
53 }
53 }
54 }
54 }
55 page_highlights = location.href.substring(location.href.indexOf('#')+1).split('L');
55 page_highlights = location.href.substring(location.href.indexOf('#')+1).split('L');
56 if (page_highlights.length == 2){
56 if (page_highlights.length == 2){
57 highlight_ranges = page_highlights[1].split(",");
57 highlight_ranges = page_highlights[1].split(",");
58
58
59 var h_lines = [];
59 var h_lines = [];
60 for (pos in highlight_ranges){
60 for (pos in highlight_ranges){
61 var _range = highlight_ranges[pos].split('-');
61 var _range = highlight_ranges[pos].split('-');
62 if(_range.length == 2){
62 if(_range.length == 2){
63 var start = parseInt(_range[0]);
63 var start = parseInt(_range[0]);
64 var end = parseInt(_range[1]);
64 var end = parseInt(_range[1]);
65 if (start < end){
65 if (start < end){
66 for(var i=start;i<=end;i++){
66 for(var i=start;i<=end;i++){
67 h_lines.push(i);
67 h_lines.push(i);
68 }
68 }
69 }
69 }
70 }
70 }
71 else{
71 else{
72 h_lines.push(parseInt(highlight_ranges[pos]));
72 h_lines.push(parseInt(highlight_ranges[pos]));
73 }
73 }
74 }
74 }
75 highlight_lines(h_lines);
75 highlight_lines(h_lines);
76 }
76 }
77 </script>
77 </script>
78 %endif
78 %endif
79 </div>
79 </div>
80 </div>
80 </div>
81
81
82 <script type="text/javascript">
82 <script type="text/javascript">
83 YAHOO.util.Event.onDOMReady(function(){
83 YAHOO.util.Event.onDOMReady(function(){
84 YAHOO.util.Event.addListener('show_rev','click',function(e){
84 YAHOO.util.Event.addListener('show_rev','click',function(e){
85 YAHOO.util.Event.preventDefault(e);
85 YAHOO.util.Event.preventDefault(e);
86 var cs = YAHOO.util.Dom.get('diff1').value;
86 var cs = YAHOO.util.Dom.get('diff1').value;
87 var url = "${h.url('files_home',repo_name=c.repo_name,revision='__CS__',f_path=c.f_path)}".replace('__CS__',cs);
87 var url = "${h.url('files_home',repo_name=c.repo_name,revision='__CS__',f_path=c.f_path)}".replace('__CS__',cs);
88 window.location = url;
88 window.location = url;
89 });
89 });
90 });
90 });
91 </script> No newline at end of file
91 </script>
@@ -1,40 +1,43 b''
1 ## -*- coding: utf-8 -*-
1 ## -*- coding: utf-8 -*-
2
2
3 % for f in c.forks_pager:
3 % if c.forks_pager:
4 <div>
4 % for f in c.forks_pager:
5 <div class="fork_user">
5 <div>
6 <div class="gravatar">
6 <div class="fork_user">
7 <img alt="gravatar" src="${h.gravatar_url(f.user.email,24)}"/>
7 <div class="gravatar">
8 </div>
8 <img alt="gravatar" src="${h.gravatar_url(f.user.email,24)}"/>
9 <span style="font-size: 20px">
9 </div>
10 <b>${f.user.username}</b> (${f.user.name} ${f.user.lastname}) /
10 <span style="font-size: 20px">
11 ${h.link_to(f.repo_name,h.url('summary_home',repo_name=f.repo_name))}
11 <b>${f.user.username}</b> (${f.user.name} ${f.user.lastname}) /
12 </span>
12 ${h.link_to(f.repo_name,h.url('summary_home',repo_name=f.repo_name))}
13 <div style="padding:5px 3px 3px 42px;">${f.description}</div>
13 </span>
14 </div>
14 <div style="padding:5px 3px 3px 42px;">${f.description}</div>
15 <div style="clear:both;padding-top: 10px"></div>
15 </div>
16 <div class="follower_date">${_('forked')} -
16 <div style="clear:both;padding-top: 10px"></div>
17 <span class="tooltip" title="${f.created_on}"> ${h.age(f.created_on)}</span></div>
17 <div class="follower_date">${_('forked')} -
18 <div style="border-bottom: 1px solid #DDD;margin:10px 0px 10px 0px"></div>
18 <span class="tooltip" title="${f.created_on}"> ${h.age(f.created_on)}</span></div>
19 </div>
19 <div style="border-bottom: 1px solid #DDD;margin:10px 0px 10px 0px"></div>
20 % endfor
20 </div>
21
21 % endfor
22 % else:
23 ${_('There are no forks yet')}
24 % endif
22 <div class="pagination-wh pagination-left">
25 <div class="pagination-wh pagination-left">
23 <script type="text/javascript">
26 <script type="text/javascript">
24 var data_div = 'forks';
27 var data_div = 'forks';
25 YAHOO.util.Event.onDOMReady(function(){
28 YAHOO.util.Event.onDOMReady(function(){
26 YAHOO.util.Event.addListener(
29 YAHOO.util.Event.addListener(
27 YUD.getElementsByClassName('pager_link'),"click",
30 YUD.getElementsByClassName('pager_link'),"click",
28 function(){
31 function(){
29 YAHOO.util.Dom.setStyle(data_div,'opacity','0.3');
32 YAHOO.util.Dom.setStyle(data_div,'opacity','0.3');
30 });
33 });
31 });
34 });
32 </script>
35 </script>
33
36
34 ${c.forks_pager.pager('$link_previous ~2~ $link_next',
37 ${c.forks_pager.pager('$link_previous ~2~ $link_next',
35 onclick="""YAHOO.util.Connect.asyncRequest('GET','$partial_url',{
38 onclick="""YAHOO.util.Connect.asyncRequest('GET','$partial_url',{
36 success:function(o){YAHOO.util.Dom.get(data_div).innerHTML=o.responseText;
39 success:function(o){YAHOO.util.Dom.get(data_div).innerHTML=o.responseText;
37 YUE.on(YAHOO.util.Dom.getElementsByClassName('pager_link'),"click",function(){
40 YUE.on(YAHOO.util.Dom.getElementsByClassName('pager_link'),"click",function(){
38 YAHOO.util.Dom.setStyle(data_div,'opacity','0.3');});
41 YAHOO.util.Dom.setStyle(data_div,'opacity','0.3');});
39 YAHOO.util.Dom.setStyle(data_div,'opacity','1');}},null); return false;""")}
42 YAHOO.util.Dom.setStyle(data_div,'opacity','1');}},null); return false;""")}
40 </div> No newline at end of file
43 </div>
General Comments 0
You need to be logged in to leave comments. Login now