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