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