##// END OF EJS Templates
added journal icon and made active links in journal, fixed edit user bug when given wrong id
marcink -
r476:8ba65e4c celery
parent child Browse files
Show More
@@ -1,162 +1,164 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 # encoding: utf-8
2 # encoding: utf-8
3 # users controller for pylons
3 # users controller for pylons
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 April 4, 2010
21 Created on April 4, 2010
22 users controller for pylons
22 users controller for pylons
23 @author: marcink
23 @author: marcink
24 """
24 """
25
25
26 from formencode import htmlfill
26 from formencode import htmlfill
27 from pylons import request, session, tmpl_context as c, url
27 from pylons import request, session, tmpl_context as c, url
28 from pylons.controllers.util import abort, redirect
28 from pylons.controllers.util import abort, redirect
29 from pylons.i18n.translation import _
29 from pylons.i18n.translation import _
30 from pylons_app.lib import helpers as h
30 from pylons_app.lib import helpers as h
31 from pylons_app.lib.auth import LoginRequired, HasPermissionAllDecorator
31 from pylons_app.lib.auth import LoginRequired, HasPermissionAllDecorator
32 from pylons_app.lib.base import BaseController, render
32 from pylons_app.lib.base import BaseController, render
33 from pylons_app.model.db import User, UserLog
33 from pylons_app.model.db import User, UserLog
34 from pylons_app.model.forms import UserForm
34 from pylons_app.model.forms import UserForm
35 from pylons_app.model.user_model import UserModel, DefaultUserException
35 from pylons_app.model.user_model import UserModel, DefaultUserException
36 import formencode
36 import formencode
37 import logging
37 import logging
38 import traceback
38 import traceback
39
39
40 log = logging.getLogger(__name__)
40 log = logging.getLogger(__name__)
41
41
42 class UsersController(BaseController):
42 class UsersController(BaseController):
43 """REST Controller styled on the Atom Publishing Protocol"""
43 """REST Controller styled on the Atom Publishing Protocol"""
44 # To properly map this controller, ensure your config/routing.py
44 # To properly map this controller, ensure your config/routing.py
45 # file has a resource setup:
45 # file has a resource setup:
46 # map.resource('user', 'users')
46 # map.resource('user', 'users')
47
47
48 @LoginRequired()
48 @LoginRequired()
49 @HasPermissionAllDecorator('hg.admin')
49 @HasPermissionAllDecorator('hg.admin')
50 def __before__(self):
50 def __before__(self):
51 c.admin_user = session.get('admin_user')
51 c.admin_user = session.get('admin_user')
52 c.admin_username = session.get('admin_username')
52 c.admin_username = session.get('admin_username')
53 super(UsersController, self).__before__()
53 super(UsersController, self).__before__()
54
54
55
55
56 def index(self, format='html'):
56 def index(self, format='html'):
57 """GET /users: All items in the collection"""
57 """GET /users: All items in the collection"""
58 # url('users')
58 # url('users')
59
59
60 c.users_list = self.sa.query(User).all()
60 c.users_list = self.sa.query(User).all()
61 return render('admin/users/users.html')
61 return render('admin/users/users.html')
62
62
63 def create(self):
63 def create(self):
64 """POST /users: Create a new item"""
64 """POST /users: Create a new item"""
65 # url('users')
65 # url('users')
66
66
67 user_model = UserModel()
67 user_model = UserModel()
68 login_form = UserForm()()
68 login_form = UserForm()()
69 try:
69 try:
70 form_result = login_form.to_python(dict(request.POST))
70 form_result = login_form.to_python(dict(request.POST))
71 user_model.create(form_result)
71 user_model.create(form_result)
72 h.flash(_('created user %s') % form_result['username'],
72 h.flash(_('created user %s') % form_result['username'],
73 category='success')
73 category='success')
74 except formencode.Invalid as errors:
74 except formencode.Invalid as errors:
75 return htmlfill.render(
75 return htmlfill.render(
76 render('admin/users/user_add.html'),
76 render('admin/users/user_add.html'),
77 defaults=errors.value,
77 defaults=errors.value,
78 errors=errors.error_dict or {},
78 errors=errors.error_dict or {},
79 prefix_error=False,
79 prefix_error=False,
80 encoding="UTF-8")
80 encoding="UTF-8")
81 except Exception:
81 except Exception:
82 log.error(traceback.format_exc())
82 log.error(traceback.format_exc())
83 h.flash(_('error occured during creation of user %s') \
83 h.flash(_('error occured during creation of user %s') \
84 % request.POST.get('username'), category='error')
84 % request.POST.get('username'), category='error')
85 return redirect(url('users'))
85 return redirect(url('users'))
86
86
87 def new(self, format='html'):
87 def new(self, format='html'):
88 """GET /users/new: Form to create a new item"""
88 """GET /users/new: Form to create a new item"""
89 # url('new_user')
89 # url('new_user')
90 return render('admin/users/user_add.html')
90 return render('admin/users/user_add.html')
91
91
92 def update(self, id):
92 def update(self, id):
93 """PUT /users/id: Update an existing item"""
93 """PUT /users/id: Update an existing item"""
94 # Forms posted to this method should contain a hidden field:
94 # Forms posted to this method should contain a hidden field:
95 # <input type="hidden" name="_method" value="PUT" />
95 # <input type="hidden" name="_method" value="PUT" />
96 # Or using helpers:
96 # Or using helpers:
97 # h.form(url('user', id=ID),
97 # h.form(url('user', id=ID),
98 # method='put')
98 # method='put')
99 # url('user', id=ID)
99 # url('user', id=ID)
100 user_model = UserModel()
100 user_model = UserModel()
101 _form = UserForm(edit=True, old_data={'user_id':id})()
101 _form = UserForm(edit=True, old_data={'user_id':id})()
102 form_result = {}
102 form_result = {}
103 try:
103 try:
104 form_result = _form.to_python(dict(request.POST))
104 form_result = _form.to_python(dict(request.POST))
105 user_model.update(id, form_result)
105 user_model.update(id, form_result)
106 h.flash(_('User updated succesfully'), category='success')
106 h.flash(_('User updated succesfully'), category='success')
107
107
108 except formencode.Invalid as errors:
108 except formencode.Invalid as errors:
109 c.user = user_model.get_user(id)
109 c.user = user_model.get_user(id)
110 return htmlfill.render(
110 return htmlfill.render(
111 render('admin/users/user_edit.html'),
111 render('admin/users/user_edit.html'),
112 defaults=errors.value,
112 defaults=errors.value,
113 errors=errors.error_dict or {},
113 errors=errors.error_dict or {},
114 prefix_error=False,
114 prefix_error=False,
115 encoding="UTF-8")
115 encoding="UTF-8")
116 except Exception:
116 except Exception:
117 log.error(traceback.format_exc())
117 log.error(traceback.format_exc())
118 h.flash(_('error occured during update of user %s') \
118 h.flash(_('error occured during update of user %s') \
119 % form_result.get('username'), category='error')
119 % form_result.get('username'), category='error')
120
120
121 return redirect(url('users'))
121 return redirect(url('users'))
122
122
123 def delete(self, id):
123 def delete(self, id):
124 """DELETE /users/id: Delete an existing item"""
124 """DELETE /users/id: Delete an existing item"""
125 # Forms posted to this method should contain a hidden field:
125 # Forms posted to this method should contain a hidden field:
126 # <input type="hidden" name="_method" value="DELETE" />
126 # <input type="hidden" name="_method" value="DELETE" />
127 # Or using helpers:
127 # Or using helpers:
128 # h.form(url('user', id=ID),
128 # h.form(url('user', id=ID),
129 # method='delete')
129 # method='delete')
130 # url('user', id=ID)
130 # url('user', id=ID)
131 user_model = UserModel()
131 user_model = UserModel()
132 try:
132 try:
133 user_model.delete(id)
133 user_model.delete(id)
134 h.flash(_('sucessfully deleted user'), category='success')
134 h.flash(_('sucessfully deleted user'), category='success')
135 except DefaultUserException as e:
135 except DefaultUserException as e:
136 h.flash(str(e), category='warning')
136 h.flash(str(e), category='warning')
137 except Exception:
137 except Exception:
138 h.flash(_('An error occured during deletion of user'),
138 h.flash(_('An error occured during deletion of user'),
139 category='error')
139 category='error')
140 return redirect(url('users'))
140 return redirect(url('users'))
141
141
142 def show(self, id, format='html'):
142 def show(self, id, format='html'):
143 """GET /users/id: Show a specific item"""
143 """GET /users/id: Show a specific item"""
144 # url('user', id=ID)
144 # url('user', id=ID)
145
145
146
146
147 def edit(self, id, format='html'):
147 def edit(self, id, format='html'):
148 """GET /users/id/edit: Form to edit an existing item"""
148 """GET /users/id/edit: Form to edit an existing item"""
149 # url('edit_user', id=ID)
149 # url('edit_user', id=ID)
150 c.user = self.sa.query(User).get(id)
150 c.user = self.sa.query(User).get(id)
151 if not c.user:
152 return redirect(url('users'))
151 if c.user.username == 'default':
153 if c.user.username == 'default':
152 h.flash(_("You can't edit this user since it's"
154 h.flash(_("You can't edit this user since it's"
153 " crucial for entire application"), category='warning')
155 " crucial for entire application"), category='warning')
154 return redirect(url('users'))
156 return redirect(url('users'))
155
157
156 defaults = c.user.__dict__
158 defaults = c.user.__dict__
157 return htmlfill.render(
159 return htmlfill.render(
158 render('admin/users/user_edit.html'),
160 render('admin/users/user_edit.html'),
159 defaults=defaults,
161 defaults=defaults,
160 encoding="UTF-8",
162 encoding="UTF-8",
161 force_defaults=False
163 force_defaults=False
162 )
164 )
@@ -1,3633 +1,3642 b''
1 /* -----------------------------------------------------------
1 /* -----------------------------------------------------------
2 main stylesheet
2 main stylesheet
3 ----------------------------------------------------------- */
3 ----------------------------------------------------------- */
4
4
5 html
5 html
6 {
6 {
7 height: 100%;
7 height: 100%;
8 }
8 }
9
9
10 body
10 body
11 {
11 {
12 margin: 0;
12 margin: 0;
13 padding: 0;
13 padding: 0;
14 height: 100%;
14 height: 100%;
15 background: #d1d1d1 url("../images/background.png") repeat;
15 background: #d1d1d1 url("../images/background.png") repeat;
16 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
16 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
17 font-size: 11px;
17 font-size: 11px;
18 }
18 }
19
19
20 /* -----------------------------------------------------------
20 /* -----------------------------------------------------------
21 images
21 images
22 ----------------------------------------------------------- */
22 ----------------------------------------------------------- */
23
23
24 img
24 img
25 {
25 {
26 border: none;
26 border: none;
27 }
27 }
28
28
29 img.icon{
29 img.icon{
30 vertical-align: bottom;
30 vertical-align: bottom;
31
31
32 }
32 }
33 /* -----------------------------------------------------------
33 /* -----------------------------------------------------------
34 anchors
34 anchors
35 ----------------------------------------------------------- */
35 ----------------------------------------------------------- */
36
36
37 a
37 a
38 {
38 {
39 color: #0066CC;
39 color: #0066CC;
40 text-decoration: none;
40 text-decoration: none;
41 cursor: pointer;
41 cursor: pointer;
42 }
42 }
43
43
44 a:hover
44 a:hover
45 {
45 {
46 color: #000000;
46 color: #000000;
47 text-decoration: underline;
47 text-decoration: underline;
48 }
48 }
49
49
50 /* -----------------------------------------------------------
50 /* -----------------------------------------------------------
51 headings
51 headings
52 ----------------------------------------------------------- */
52 ----------------------------------------------------------- */
53
53
54 h1, h2, h3, h4, h5, h6
54 h1, h2, h3, h4, h5, h6
55 {
55 {
56 color: #292929;
56 color: #292929;
57 font-weight: bold;
57 font-weight: bold;
58 }
58 }
59
59
60 h1
60 h1
61 {
61 {
62 font-size: 22px;
62 font-size: 22px;
63 }
63 }
64
64
65 h2
65 h2
66 {
66 {
67 font-size: 20px;
67 font-size: 20px;
68 }
68 }
69
69
70 h3
70 h3
71 {
71 {
72 font-size: 18px;
72 font-size: 18px;
73 }
73 }
74
74
75 h4
75 h4
76 {
76 {
77 font-size: 16px;
77 font-size: 16px;
78 }
78 }
79
79
80 h5
80 h5
81 {
81 {
82 font-size: 14px;
82 font-size: 14px;
83 }
83 }
84
84
85 h6
85 h6
86 {
86 {
87 font-size: 11px;
87 font-size: 11px;
88 }
88 }
89
89
90 /* -----------------------------------------------------------
90 /* -----------------------------------------------------------
91 lists
91 lists
92 ----------------------------------------------------------- */
92 ----------------------------------------------------------- */
93
93
94 ul.circle { list-style-type: circle; }
94 ul.circle { list-style-type: circle; }
95 ul.disc { list-style-type: disc; }
95 ul.disc { list-style-type: disc; }
96 ul.square { list-style-type: square; }
96 ul.square { list-style-type: square; }
97 ol.lower-roman { list-style-type: lower-roman; }
97 ol.lower-roman { list-style-type: lower-roman; }
98 ol.upper-roman { list-style-type: upper-roman; }
98 ol.upper-roman { list-style-type: upper-roman; }
99 ol.lower-alpha { list-style-type: lower-alpha; }
99 ol.lower-alpha { list-style-type: lower-alpha; }
100 ol.upper-alpha { list-style-type: upper-alpha; }
100 ol.upper-alpha { list-style-type: upper-alpha; }
101 ol.decimal { list-style-type: decimal; }
101 ol.decimal { list-style-type: decimal; }
102
102
103 /* -----------------------------------------------------------
103 /* -----------------------------------------------------------
104 colors
104 colors
105 ----------------------------------------------------------- */
105 ----------------------------------------------------------- */
106
106
107 div.color
107 div.color
108 {
108 {
109 margin: 7px 0 0 60px;
109 margin: 7px 0 0 60px;
110 padding: 1px 1px 1px 0px;
110 padding: 1px 1px 1px 0px;
111 clear: both;
111 clear: both;
112 overflow: hidden;
112 overflow: hidden;
113 position: absolute;
113 position: absolute;
114 background: #FFFFFF;
114 background: #FFFFFF;
115 }
115 }
116
116
117 div.color a
117 div.color a
118 {
118 {
119 margin: 0 0 0 1px;
119 margin: 0 0 0 1px;
120 padding: 0;
120 padding: 0;
121 width: 15px;
121 width: 15px;
122 height: 15px;
122 height: 15px;
123 display: block;
123 display: block;
124 float: left;
124 float: left;
125 }
125 }
126
126
127 div.color a.blue
127 div.color a.blue
128 {
128 {
129 background: #376ea6;
129 background: #376ea6;
130 }
130 }
131
131
132 div.color a.green
132 div.color a.green
133 {
133 {
134 background: #85924b;
134 background: #85924b;
135 }
135 }
136
136
137 div.color a.brown
137 div.color a.brown
138 {
138 {
139 background: #9b6e42;
139 background: #9b6e42;
140 }
140 }
141
141
142 div.color a.purple
142 div.color a.purple
143 {
143 {
144 background: #88528b;
144 background: #88528b;
145 }
145 }
146
146
147 div.color a.red
147 div.color a.red
148 {
148 {
149 background: #bd3220;
149 background: #bd3220;
150 }
150 }
151
151
152 div.color a.greyblue
152 div.color a.greyblue
153 {
153 {
154 background: #566e86;
154 background: #566e86;
155 }
155 }
156
156
157 /* -----------------------------------------------------------
157 /* -----------------------------------------------------------
158 options
158 options
159 ----------------------------------------------------------- */
159 ----------------------------------------------------------- */
160
160
161 div.options
161 div.options
162 {
162 {
163 margin: 7px 0 0 162px;
163 margin: 7px 0 0 162px;
164 padding: 0;
164 padding: 0;
165 clear: both;
165 clear: both;
166 overflow: hidden;
166 overflow: hidden;
167 position: absolute;
167 position: absolute;
168 background: #FFFFFF;
168 background: #FFFFFF;
169 }
169 }
170
170
171 div.options a
171 div.options a
172 {
172 {
173 margin: 0;
173 margin: 0;
174 padding: 3px 8px 3px 8px;
174 padding: 3px 8px 3px 8px;
175 height: 1%;
175 height: 1%;
176 display: block;
176 display: block;
177 text-decoration: none;
177 text-decoration: none;
178 }
178 }
179
179
180 div.options a:hover
180 div.options a:hover
181 {
181 {
182 text-decoration: none;
182 text-decoration: none;
183 }
183 }
184
184
185 /* -----------------------------------------------------------
185 /* -----------------------------------------------------------
186 header
186 header
187 ----------------------------------------------------------- */
187 ----------------------------------------------------------- */
188
188
189 #header
189 #header
190 {
190 {
191 margin: 0;
191 margin: 0;
192 padding: 0 30px 0 30px;
192 padding: 0 30px 0 30px;
193 background: #b0b0b0 url("../images/header_background.png") repeat;
193 background: #b0b0b0 url("../images/header_background.png") repeat;
194 }
194 }
195
195
196
196
197 /* -----------------------------------------------------------
197 /* -----------------------------------------------------------
198 header -> user
198 header -> user
199 ----------------------------------------------------------- */
199 ----------------------------------------------------------- */
200
200
201 #header ul#logged-user
201 #header ul#logged-user
202 {
202 {
203 margin: 0;
203 margin: 0;
204 padding: 0;
204 padding: 0;
205 float: right;
205 float: right;
206 }
206 }
207
207
208 #header ul#logged-user li
208 #header ul#logged-user li
209 {
209 {
210 margin: 0;
210 margin: 0;
211 padding: 10px 12px 10px 12px;
211 padding: 10px 12px 10px 12px;
212 list-style: none;
212 list-style: none;
213 float: left;
213 float: left;
214 border-left: 1px solid #bbbbbb;
214 border-left: 1px solid #bbbbbb;
215 border-right: 1px solid #a5a5a5;
215 border-right: 1px solid #a5a5a5;
216 }
216 }
217
217
218 #header ul#logged-user li.first
218 #header ul#logged-user li.first
219 {
219 {
220 border-left: none;
220 border-left: none;
221 margin:-6px;
221 margin:-6px;
222 }
222 }
223 #header ul#logged-user li.first div.account
223 #header ul#logged-user li.first div.account
224 {
224 {
225 padding-top: 4px;
225 padding-top: 4px;
226 float: left;
226 float: left;
227 }
227 }
228
228
229
229
230 #header ul#logged-user li.last
230 #header ul#logged-user li.last
231 {
231 {
232 border-right: none;
232 border-right: none;
233 }
233 }
234
234
235 #header ul#logged-user li a
235 #header ul#logged-user li a
236 {
236 {
237 color: #4e4e4e;
237 color: #4e4e4e;
238 font-weight: bold;
238 font-weight: bold;
239 text-decoration: none;
239 text-decoration: none;
240 }
240 }
241
241
242 #header ul#logged-user li a:hover
242 #header ul#logged-user li a:hover
243 {
243 {
244 color: #376ea6;
244 color: #376ea6;
245 text-decoration: underline;
245 text-decoration: underline;
246 }
246 }
247
247
248 #header ul#logged-user li.highlight a
248 #header ul#logged-user li.highlight a
249 {
249 {
250 color: #ffffff;
250 color: #ffffff;
251 }
251 }
252
252
253 #header ul#logged-user li.highlight a:hover
253 #header ul#logged-user li.highlight a:hover
254 {
254 {
255 color: #376ea6;
255 color: #376ea6;
256 }
256 }
257
257
258 #header #header-inner
258 #header #header-inner
259 {
259 {
260 margin: 0;
260 margin: 0;
261 padding: 0;
261 padding: 0;
262 height: 40px;
262 height: 40px;
263 clear: both;
263 clear: both;
264 position: relative;
264 position: relative;
265 background: #003367 url("../images/colors/blue/header_inner.png") repeat-x;
265 background: #003367 url("../images/colors/blue/header_inner.png") repeat-x;
266 border-bottom: 6px solid #ffffff;
266 border-bottom: 6px solid #ffffff;
267 }
267 }
268
268
269 /* -----------------------------------------------------------
269 /* -----------------------------------------------------------
270 header -> home
270 header -> home
271 ----------------------------------------------------------- */
271 ----------------------------------------------------------- */
272
272
273 #header #header-inner #home
273 #header #header-inner #home
274 {
274 {
275 float: left;
275 float: left;
276 }
276 }
277
277
278 #header #header-inner #home a
278 #header #header-inner #home a
279 {
279 {
280 margin: 0;
280 margin: 0;
281 padding: 0;
281 padding: 0;
282 height: 40px;
282 height: 40px;
283 width: 46px;
283 width: 46px;
284 display: block;
284 display: block;
285 background: url("../images/colors/blue/button_home.png");
285 background: url("../images/colors/blue/button_home.png");
286 background-position: 0 0;
286 background-position: 0 0;
287 }
287 }
288
288
289 #header #header-inner #home a:hover
289 #header #header-inner #home a:hover
290 {
290 {
291 background-position: 0 -40px;
291 background-position: 0 -40px;
292 }
292 }
293
293
294 /* -----------------------------------------------------------
294 /* -----------------------------------------------------------
295 header -> logo
295 header -> logo
296 ----------------------------------------------------------- */
296 ----------------------------------------------------------- */
297
297
298 #header #header-inner #logo
298 #header #header-inner #logo
299 {
299 {
300 float: left;
300 float: left;
301 }
301 }
302
302
303 #header #header-inner #logo h1
303 #header #header-inner #logo h1
304 {
304 {
305 margin: 13px 0 0 13px;
305 margin: 13px 0 0 13px;
306 padding: 0;
306 padding: 0;
307 color: #FFFFFF;
307 color: #FFFFFF;
308 font-size: 14px;
308 font-size: 14px;
309 text-transform: uppercase;
309 text-transform: uppercase;
310 }
310 }
311
311
312 #header #header-inner #logo a
312 #header #header-inner #logo a
313 {
313 {
314 color: #ffffff;
314 color: #ffffff;
315 text-decoration: none;
315 text-decoration: none;
316 }
316 }
317
317
318 #header #header-inner #logo a:hover
318 #header #header-inner #logo a:hover
319 {
319 {
320 color: #dabf29;
320 color: #dabf29;
321 }
321 }
322
322
323 /* -----------------------------------------------------------
323 /* -----------------------------------------------------------
324 header -> quick
324 header -> quick
325 ----------------------------------------------------------- */
325 ----------------------------------------------------------- */
326 #header #header-inner #quick,
326 #header #header-inner #quick,
327 #header #header-inner #quick ul
327 #header #header-inner #quick ul
328 {
328 {
329 margin: 10px 5px 0 0;
329 margin: 10px 5px 0 0;
330 padding: 0;
330 padding: 0;
331 position: relative;
331 position: relative;
332 float: right;
332 float: right;
333 list-style-type: none;
333 list-style-type: none;
334 list-style-position: outside;
334 list-style-position: outside;
335 }
335 }
336
336
337 #header #header-inner #quick li
337 #header #header-inner #quick li
338 {
338 {
339 margin: 0 5px 0 0;
339 margin: 0 5px 0 0;
340 padding: 0;
340 padding: 0;
341 position: relative;
341 position: relative;
342 float: left;
342 float: left;
343 }
343 }
344
344
345 #header #header-inner #quick li a
345 #header #header-inner #quick li a
346 {
346 {
347 top: 0;
347 top: 0;
348 left: 0;
348 left: 0;
349 padding: 0;
349 padding: 0;
350 height: 1%;
350 height: 1%;
351 display: block;
351 display: block;
352 clear: both;
352 clear: both;
353 overflow: hidden;
353 overflow: hidden;
354 background: #336699 url("../../resources/images/colors/blue/quick_l.png") no-repeat top left;
354 background: #336699 url("../../resources/images/colors/blue/quick_l.png") no-repeat top left;
355 color: #FFFFFF;
355 color: #FFFFFF;
356 font-weight: bold;
356 font-weight: bold;
357 text-decoration: none;
357 text-decoration: none;
358 }
358 }
359
359
360 #header #header-inner #quick li span
360 #header #header-inner #quick li span
361 {
361 {
362 top: 0;
362 top: 0;
363 right: 0;
363 right: 0;
364 margin: 0;
364 margin: 0;
365 padding: 10px 12px 8px 10px;
365 padding: 10px 12px 8px 10px;
366 height: 1%;
366 height: 1%;
367 display: block;
367 display: block;
368 float: left;
368 float: left;
369 background: url("../../resources/images/colors/blue/quick_r.png") no-repeat top right;
369 background: url("../../resources/images/colors/blue/quick_r.png") no-repeat top right;
370 border-left: 1px solid #3f6f9f;
370 border-left: 1px solid #3f6f9f;
371 }
371 }
372
372
373 #header #header-inner #quick li span.normal
373 #header #header-inner #quick li span.normal
374 {
374 {
375 padding: 10px 12px 8px 12px;
375 padding: 10px 12px 8px 12px;
376 border: none;
376 border: none;
377 }
377 }
378
378
379 #header #header-inner #quick li span.icon
379 #header #header-inner #quick li span.icon
380 {
380 {
381 top: 0;
381 top: 0;
382 left: 0;
382 left: 0;
383 padding: 8px 8px 4px 8px;
383 padding: 8px 8px 4px 8px;
384 background: url("../../resources/images/colors/blue/quick_l.png") no-repeat top left;
384 background: url("../../resources/images/colors/blue/quick_l.png") no-repeat top left;
385 border-left: none;
385 border-left: none;
386 border-right: 1px solid #2e5c89;
386 border-right: 1px solid #2e5c89;
387 }
387 }
388
388
389 #header #header-inner #quick li a:hover
389 #header #header-inner #quick li a:hover
390 {
390 {
391 background: #4e4e4e url("../../resources/images/colors/blue/quick_l_selected.png") no-repeat top left;
391 background: #4e4e4e url("../../resources/images/colors/blue/quick_l_selected.png") no-repeat top left;
392 }
392 }
393
393
394 #header #header-inner #quick li a:hover span
394 #header #header-inner #quick li a:hover span
395 {
395 {
396 background: url("../../resources/images/colors/blue/quick_r_selected.png") no-repeat top right;
396 background: url("../../resources/images/colors/blue/quick_r_selected.png") no-repeat top right;
397 border-left: 1px solid #545454;
397 border-left: 1px solid #545454;
398 }
398 }
399
399
400 #header #header-inner #quick li a:hover span.normal
400 #header #header-inner #quick li a:hover span.normal
401 {
401 {
402 border: none;
402 border: none;
403 }
403 }
404
404
405 #header #header-inner #quick li a:hover span.icon
405 #header #header-inner #quick li a:hover span.icon
406 {
406 {
407 background: url("../../resources/images/colors/blue/quick_l_selected.png") no-repeat top left;
407 background: url("../../resources/images/colors/blue/quick_l_selected.png") no-repeat top left;
408 border-left: none;
408 border-left: none;
409 border-right: 1px solid #464646;
409 border-right: 1px solid #464646;
410 }
410 }
411
411
412 #header #header-inner #quick ul
412 #header #header-inner #quick ul
413 {
413 {
414 top: 29px;
414 top: 29px;
415 right: 0;
415 right: 0;
416 margin: 0;
416 margin: 0;
417 padding: 0;
417 padding: 0;
418 width: 200px;
418 width: 200px;
419 display: none;
419 display: none;
420 position: absolute;
420 position: absolute;
421 background: #FFFFFF;
421 background: #FFFFFF;
422 border: 1px solid #666;
422 border: 1px solid #666;
423 border-top: 1px solid #003367;
423 border-top: 1px solid #003367;
424 z-index: 100;
424 z-index: 100;
425 }
425 }
426
426
427 #header #header-inner #quick ul.repo_switcher{
427 #header #header-inner #quick ul.repo_switcher{
428 max-height:275px;
428 max-height:275px;
429 overflow-x:hidden;
429 overflow-x:hidden;
430 overflow-y:auto;
430 overflow-y:auto;
431 white-space:nowrap;
431 white-space:nowrap;
432 }
432 }
433
433
434 #header #header-inner #quick li ul li
434 #header #header-inner #quick li ul li
435 {
435 {
436 border-bottom: 1px solid #dddddd;
436 border-bottom: 1px solid #dddddd;
437 }
437 }
438
438
439 #header #header-inner #quick li ul li.last
439 #header #header-inner #quick li ul li.last
440 {
440 {
441 border: none;
441 border: none;
442 }
442 }
443
443
444 #header #header-inner #quick li ul li a
444 #header #header-inner #quick li ul li a
445 {
445 {
446 margin: 0;
446 margin: 0;
447 padding: 7px 9px 7px 9px;
447 padding: 7px 9px 7px 9px;
448 height: 1%;
448 height: 1%;
449 width: 182px;
449 width: 182px;
450 height: auto;
450 height: auto;
451 display: block;
451 display: block;
452 float: left;
452 float: left;
453 background: #FFFFFF;
453 background: #FFFFFF;
454 color: #0066CC;
454 color: #0066CC;
455 font-weight: normal;
455 font-weight: normal;
456 }
456 }
457
457
458 #header #header-inner #quick li ul li a.childs
458 #header #header-inner #quick li ul li a.childs
459 {
459 {
460 margin: 0;
460 margin: 0;
461 padding: 7px 9px 7px 24px;
461 padding: 7px 9px 7px 24px;
462 width: 167px;
462 width: 167px;
463 background: #FFFFFF url("../../resources/images/plus.png") no-repeat 8px 9px;
463 background: #FFFFFF url("../../resources/images/plus.png") no-repeat 8px 9px;
464 }
464 }
465
465
466 #header #header-inner #quick li ul li a:hover
466 #header #header-inner #quick li ul li a:hover
467 {
467 {
468 color: #000000;
468 color: #000000;
469 background: #FFFFFF;
469 background: #FFFFFF;
470 }
470 }
471
471
472 #header #header-inner #quick li ul li a.childs:hover
472 #header #header-inner #quick li ul li a.childs:hover
473 {
473 {
474 background: #FFFFFF url("../../resources/images/minus.png") no-repeat 8px 9px;
474 background: #FFFFFF url("../../resources/images/minus.png") no-repeat 8px 9px;
475 }
475 }
476
476
477 #header #header-inner #quick ul ul
477 #header #header-inner #quick ul ul
478 {
478 {
479 top: auto;
479 top: auto;
480 }
480 }
481
481
482 #header #header-inner #quick li ul ul
482 #header #header-inner #quick li ul ul
483 {
483 {
484 right: 200px;
484 right: 200px;
485 max-height: 275px;
485 max-height: 275px;
486 overflow: auto;
486 overflow: auto;
487 overflow-x: hidden;
487 overflow-x: hidden;
488 white-space:nowrap;
488 white-space:nowrap;
489 }
489 }
490
490
491 #header #header-inner #quick li:hover ul ul,
491 #header #header-inner #quick li:hover ul ul,
492 #header #header-inner #quick li:hover ul ul ul,
492 #header #header-inner #quick li:hover ul ul ul,
493 #header #header-inner #quick li:hover ul ul ul ul
493 #header #header-inner #quick li:hover ul ul ul ul
494 {
494 {
495 display: none;
495 display: none;
496 }
496 }
497
497
498 #header #header-inner #quick li:hover ul,
498 #header #header-inner #quick li:hover ul,
499 #header #header-inner #quick li li:hover ul,
499 #header #header-inner #quick li li:hover ul,
500 #header #header-inner #quick li li li:hover ul,
500 #header #header-inner #quick li li li:hover ul,
501 #header #header-inner #quick li li li li:hover ul
501 #header #header-inner #quick li li li li:hover ul
502 {
502 {
503 display: block;
503 display: block;
504 }
504 }
505
505
506
506
507 /*ICONS*/
507 /*ICONS*/
508 #header #header-inner #quick li ul li a.journal,
509 #header #header-inner #quick li ul li a.journal:hover
510 {
511 background:url("../images/icons/book.png") no-repeat scroll 4px 9px #FFFFFF;
512 margin:0;
513 padding:12px 9px 7px 24px;
514 width:167px;
515
516 }
508
517
509 #header #header-inner #quick li ul li a.repos,
518 #header #header-inner #quick li ul li a.repos,
510 #header #header-inner #quick li ul li a.repos:hover
519 #header #header-inner #quick li ul li a.repos:hover
511 {
520 {
512 background:url("../images/icons/folder_edit.png") no-repeat scroll 4px 9px #FFFFFF;
521 background:url("../images/icons/folder_edit.png") no-repeat scroll 4px 9px #FFFFFF;
513 margin:0;
522 margin:0;
514 padding:12px 9px 7px 24px;
523 padding:12px 9px 7px 24px;
515 width:167px;
524 width:167px;
516
525
517 }
526 }
518 #header #header-inner #quick li ul li a.users,
527 #header #header-inner #quick li ul li a.users,
519 #header #header-inner #quick li ul li a.users:hover
528 #header #header-inner #quick li ul li a.users:hover
520 {
529 {
521 background: #FFFFFF url("../images/icons/user_edit.png") no-repeat 4px 9px;
530 background: #FFFFFF url("../images/icons/user_edit.png") no-repeat 4px 9px;
522 margin:0;
531 margin:0;
523 padding:12px 9px 7px 24px;
532 padding:12px 9px 7px 24px;
524 width:167px;
533 width:167px;
525 }
534 }
526 #header #header-inner #quick li ul li a.settings,
535 #header #header-inner #quick li ul li a.settings,
527 #header #header-inner #quick li ul li a.settings:hover
536 #header #header-inner #quick li ul li a.settings:hover
528 {
537 {
529 background: #FFFFFF url("../images/icons/cog.png") no-repeat 4px 9px;
538 background: #FFFFFF url("../images/icons/cog.png") no-repeat 4px 9px;
530 margin:0;
539 margin:0;
531 padding:12px 9px 7px 24px;
540 padding:12px 9px 7px 24px;
532 width:167px;
541 width:167px;
533 }
542 }
534
543
535 #header #header-inner #quick li ul li a.permissions,
544 #header #header-inner #quick li ul li a.permissions,
536 #header #header-inner #quick li ul li a.permissions:hover
545 #header #header-inner #quick li ul li a.permissions:hover
537 {
546 {
538
547
539 background: #FFFFFF url("../images/icons/key.png") no-repeat 4px 9px;
548 background: #FFFFFF url("../images/icons/key.png") no-repeat 4px 9px;
540 margin:0;
549 margin:0;
541 padding:12px 9px 7px 24px;
550 padding:12px 9px 7px 24px;
542 width:167px;
551 width:167px;
543 }
552 }
544
553
545 #header #header-inner #quick li ul li a.branches,#header #header-inner #quick li ul li a.branches:hover
554 #header #header-inner #quick li ul li a.branches,#header #header-inner #quick li ul li a.branches:hover
546 {
555 {
547
556
548 background: #FFFFFF url("../images/icons/arrow_branch.png") no-repeat 4px 9px;
557 background: #FFFFFF url("../images/icons/arrow_branch.png") no-repeat 4px 9px;
549 margin:0;
558 margin:0;
550 padding:12px 9px 7px 24px;
559 padding:12px 9px 7px 24px;
551 width:167px;
560 width:167px;
552 }
561 }
553
562
554 #header #header-inner #quick li ul li a.tags,#header #header-inner #quick li ul li a.tags:hover
563 #header #header-inner #quick li ul li a.tags,#header #header-inner #quick li ul li a.tags:hover
555 {
564 {
556
565
557 background: #FFFFFF url("../images/icons/tag_blue.png") no-repeat 4px 9px;
566 background: #FFFFFF url("../images/icons/tag_blue.png") no-repeat 4px 9px;
558 margin:0;
567 margin:0;
559 padding:12px 9px 7px 24px;
568 padding:12px 9px 7px 24px;
560 width:167px;
569 width:167px;
561 }
570 }
562 /* -----------------------------------------------------------
571 /* -----------------------------------------------------------
563 header corners
572 header corners
564 ----------------------------------------------------------- */
573 ----------------------------------------------------------- */
565
574
566 #header #header-inner div.corner
575 #header #header-inner div.corner
567 {
576 {
568 height: 6px;
577 height: 6px;
569 width: 6px;
578 width: 6px;
570 position: absolute;
579 position: absolute;
571 background: url("../images/colors/blue/header_inner_corners.png") no-repeat;
580 background: url("../images/colors/blue/header_inner_corners.png") no-repeat;
572 }
581 }
573
582
574 #header #header-inner div.tl
583 #header #header-inner div.tl
575 {
584 {
576 top: 0;
585 top: 0;
577 left: 0;
586 left: 0;
578 background-position: 0 0;
587 background-position: 0 0;
579 }
588 }
580
589
581 #header #header-inner div.tr
590 #header #header-inner div.tr
582 {
591 {
583 top: 0;
592 top: 0;
584 right: 0;
593 right: 0;
585 background-position: -6px 0;
594 background-position: -6px 0;
586 }
595 }
587
596
588 /* -----------------------------------------------------------
597 /* -----------------------------------------------------------
589 content
598 content
590 ----------------------------------------------------------- */
599 ----------------------------------------------------------- */
591
600
592 #content
601 #content
593 {
602 {
594 margin: 10px 0 0 0;
603 margin: 10px 0 0 0;
595 padding: 0;
604 padding: 0;
596 min-height: 100%;
605 min-height: 100%;
597 clear: both;
606 clear: both;
598 overflow: hidden;
607 overflow: hidden;
599 background: url("../images/content.png") repeat-y top left;
608 background: url("../images/content.png") repeat-y top left;
600 }
609 }
601
610
602 /* -----------------------------------------------------------
611 /* -----------------------------------------------------------
603 content -> left
612 content -> left
604 ----------------------------------------------------------- */
613 ----------------------------------------------------------- */
605
614
606 #content #left
615 #content #left
607 {
616 {
608 left: 0;
617 left: 0;
609 width: 280px;
618 width: 280px;
610 position: absolute;
619 position: absolute;
611 }
620 }
612
621
613 /* -----------------------------------------------------------
622 /* -----------------------------------------------------------
614 content -> left -> menu
623 content -> left -> menu
615 ----------------------------------------------------------- */
624 ----------------------------------------------------------- */
616
625
617 #content #left #menu
626 #content #left #menu
618 {
627 {
619 margin: 5px 10px 0 60px;
628 margin: 5px 10px 0 60px;
620 padding: 0;
629 padding: 0;
621 clear: both;
630 clear: both;
622 overflow: hidden;
631 overflow: hidden;
623 }
632 }
624
633
625 /* -----------------------------------------------------------
634 /* -----------------------------------------------------------
626 content -> left -> menu / heading
635 content -> left -> menu / heading
627 ----------------------------------------------------------- */
636 ----------------------------------------------------------- */
628
637
629 #content #left #menu h6
638 #content #left #menu h6
630 {
639 {
631 margin: 5px 0 0 0;
640 margin: 5px 0 0 0;
632 padding: 0;
641 padding: 0;
633 clear: both;
642 clear: both;
634 overflow: hidden;
643 overflow: hidden;
635 background: #dfdfdf url("../images/menu.png") repeat-x;
644 background: #dfdfdf url("../images/menu.png") repeat-x;
636 color: #6e6e6e;
645 color: #6e6e6e;
637 }
646 }
638
647
639 #content #left #menu h6 a
648 #content #left #menu h6 a
640 {
649 {
641 margin: 0;
650 margin: 0;
642 padding: 0;
651 padding: 0;
643 height: 1%;
652 height: 1%;
644 display: block;
653 display: block;
645 clear: both;
654 clear: both;
646 overflow: hidden;
655 overflow: hidden;
647 background: url("../images/menu_l.png") no-repeat top left;
656 background: url("../images/menu_l.png") no-repeat top left;
648 color: #6e6e6e;
657 color: #6e6e6e;
649 text-decoration: none;
658 text-decoration: none;
650 }
659 }
651
660
652 #content #left #menu h6 span
661 #content #left #menu h6 span
653 {
662 {
654 margin: 0;
663 margin: 0;
655 padding: 9px 10px 10px 10px;
664 padding: 9px 10px 10px 10px;
656 height: 1%;
665 height: 1%;
657 display: block;
666 display: block;
658 background: url("../images/menu_r.png") no-repeat top right;
667 background: url("../images/menu_r.png") no-repeat top right;
659 }
668 }
660
669
661 #content #left #menu h6.selected
670 #content #left #menu h6.selected
662 {
671 {
663 background: #00376e url("../images/colors/blue/menu_selected.png") repeat-x;
672 background: #00376e url("../images/colors/blue/menu_selected.png") repeat-x;
664 color: #FFFFFF;
673 color: #FFFFFF;
665 }
674 }
666
675
667 #content #left #menu h6.selected a
676 #content #left #menu h6.selected a
668 {
677 {
669 background: url("../images/colors/blue/menu_l_selected.png") no-repeat top left;
678 background: url("../images/colors/blue/menu_l_selected.png") no-repeat top left;
670 color: #ffffff;
679 color: #ffffff;
671 }
680 }
672
681
673 #content #left #menu h6.selected span
682 #content #left #menu h6.selected span
674 {
683 {
675 background: url("../images/colors/blue/menu_r_selected.png") no-repeat top right;
684 background: url("../images/colors/blue/menu_r_selected.png") no-repeat top right;
676 }
685 }
677
686
678 /* -----------------------------------------------------------
687 /* -----------------------------------------------------------
679 content -> left -> menu / links
688 content -> left -> menu / links
680 ----------------------------------------------------------- */
689 ----------------------------------------------------------- */
681
690
682 #content #left #menu ul
691 #content #left #menu ul
683 {
692 {
684 margin: 0;
693 margin: 0;
685 padding: 0;
694 padding: 0;
686 background: #376ea6;
695 background: #376ea6;
687 }
696 }
688
697
689 #content #left #menu ul.opened
698 #content #left #menu ul.opened
690 {
699 {
691 display: block;
700 display: block;
692 }
701 }
693
702
694 #content #left #menu ul.closed
703 #content #left #menu ul.closed
695 {
704 {
696 display: none;
705 display: none;
697 }
706 }
698
707
699 #content #left #menu li
708 #content #left #menu li
700 {
709 {
701 margin: 0;
710 margin: 0;
702 padding: 0;
711 padding: 0;
703 clear: both;
712 clear: both;
704 overflow: hidden;
713 overflow: hidden;
705 list-style: none;
714 list-style: none;
706 border-bottom: 1px solid #5f8bb7;
715 border-bottom: 1px solid #5f8bb7;
707 color: #ffffff;
716 color: #ffffff;
708 }
717 }
709
718
710 #content #left #menu li a
719 #content #left #menu li a
711 {
720 {
712 margin: 0 0 0 6px;
721 margin: 0 0 0 6px;
713 padding: 8px 0 8px 18px;
722 padding: 8px 0 8px 18px;
714 height: 1%;
723 height: 1%;
715 display: block;
724 display: block;
716 float: left;
725 float: left;
717 background: url("../images/colors/colors/blue/menu_arrow.png") no-repeat 0 9px;
726 background: url("../images/colors/colors/blue/menu_arrow.png") no-repeat 0 9px;
718 color: #ffffff;
727 color: #ffffff;
719 text-decoration: none;
728 text-decoration: none;
720 }
729 }
721
730
722 #content #left #menu li a:hover
731 #content #left #menu li a:hover
723 {
732 {
724 color: #b9dcff;
733 color: #b9dcff;
725 }
734 }
726
735
727 /* -----------------------------------------------------------
736 /* -----------------------------------------------------------
728 content -> left -> menu / collapsible
737 content -> left -> menu / collapsible
729 ----------------------------------------------------------- */
738 ----------------------------------------------------------- */
730
739
731 #content #left #menu li.collapsible
740 #content #left #menu li.collapsible
732 {
741 {
733 background: url("../images/colors/blue/menu_border.png") no-repeat top left;
742 background: url("../images/colors/blue/menu_border.png") no-repeat top left;
734 }
743 }
735
744
736 #content #left #menu li.collapsible a
745 #content #left #menu li.collapsible a
737 {
746 {
738 margin: 0 0 0 6px;
747 margin: 0 0 0 6px;
739 padding: 8px 0 8px 0;
748 padding: 8px 0 8px 0;
740 height: 1%;
749 height: 1%;
741 display: block;
750 display: block;
742 background: transparent;
751 background: transparent;
743 float: left;
752 float: left;
744 font-weight: bold;
753 font-weight: bold;
745 }
754 }
746
755
747 #content #left #menu li.collapsible a.plus
756 #content #left #menu li.collapsible a.plus
748 {
757 {
749 margin: 0;
758 margin: 0;
750 padding: 8px 0 9px 24px;
759 padding: 8px 0 9px 24px;
751 height: 10px;
760 height: 10px;
752 width: 10px;
761 width: 10px;
753 display: block;
762 display: block;
754 float: left;
763 float: left;
755 background: url("../images/menu_plus.png") no-repeat 5px 10px;
764 background: url("../images/menu_plus.png") no-repeat 5px 10px;
756 border: none;
765 border: none;
757 }
766 }
758
767
759 #content #left #menu li.collapsible a.minus
768 #content #left #menu li.collapsible a.minus
760 {
769 {
761 margin: 0;
770 margin: 0;
762 padding: 8px 0 9px 24px;
771 padding: 8px 0 9px 24px;
763 height: 10px;
772 height: 10px;
764 width: 10px;
773 width: 10px;
765 display: block;
774 display: block;
766 float: left;
775 float: left;
767 background: url("../images/menu_minus.png") no-repeat 5px 10px;
776 background: url("../images/menu_minus.png") no-repeat 5px 10px;
768 border: none;
777 border: none;
769 }
778 }
770
779
771 #content #left #menu li ul
780 #content #left #menu li ul
772 {
781 {
773 margin: 0;
782 margin: 0;
774 padding: 0;
783 padding: 0;
775 border-left: 18px solid #285889;
784 border-left: 18px solid #285889;
776 }
785 }
777
786
778 #content #left #menu li ul.expanded
787 #content #left #menu li ul.expanded
779 {
788 {
780 display: block;
789 display: block;
781 }
790 }
782
791
783 #content #left #menu li ul.collapsed
792 #content #left #menu li ul.collapsed
784 {
793 {
785 display: none;
794 display: none;
786 }
795 }
787
796
788 #content #left #menu li ul li
797 #content #left #menu li ul li
789 {
798 {
790 margin: 0;
799 margin: 0;
791 padding: 0;
800 padding: 0;
792 clear: both;
801 clear: both;
793 overflow: hidden;
802 overflow: hidden;
794 list-style: none;
803 list-style: none;
795 border-bottom: 1px solid #5f8bb7;
804 border-bottom: 1px solid #5f8bb7;
796 color: #ffffff;
805 color: #ffffff;
797 }
806 }
798
807
799 #content #left #menu li.collapsible ul li a
808 #content #left #menu li.collapsible ul li a
800 {
809 {
801 font-weight: normal;
810 font-weight: normal;
802 }
811 }
803
812
804 #content #left #menu li.last
813 #content #left #menu li.last
805 {
814 {
806 border-bottom: none;
815 border-bottom: none;
807 }
816 }
808
817
809 /* -----------------------------------------------------------
818 /* -----------------------------------------------------------
810 content -> left -> date picker
819 content -> left -> date picker
811 ----------------------------------------------------------- */
820 ----------------------------------------------------------- */
812
821
813 #content #left #date-picker
822 #content #left #date-picker
814 {
823 {
815 margin: 10px 10px 0 60px;
824 margin: 10px 10px 0 60px;
816 padding: 0;
825 padding: 0;
817 clear: both;
826 clear: both;
818 overflow: hidden;
827 overflow: hidden;
819 }
828 }
820
829
821 #content #left #date-picker .ui-datepicker
830 #content #left #date-picker .ui-datepicker
822 {
831 {
823 width: auto;
832 width: auto;
824 padding: 0;
833 padding: 0;
825 clear: both;
834 clear: both;
826 overflow: hidden;
835 overflow: hidden;
827 background: #FFFFFF;
836 background: #FFFFFF;
828 border: 1px solid #d1d1d1;
837 border: 1px solid #d1d1d1;
829 }
838 }
830
839
831 #content #left #date-picker .ui-datepicker .ui-datepicker-header
840 #content #left #date-picker .ui-datepicker .ui-datepicker-header
832 {
841 {
833 padding: 5px 0;
842 padding: 5px 0;
834 }
843 }
835
844
836 #content #left #date-picker .ui-datepicker .ui-datepicker-prev
845 #content #left #date-picker .ui-datepicker .ui-datepicker-prev
837 {
846 {
838 top: 5px;
847 top: 5px;
839 left: 4px;
848 left: 4px;
840 }
849 }
841
850
842 #content #left #date-picker .ui-datepicker .ui-datepicker-next
851 #content #left #date-picker .ui-datepicker .ui-datepicker-next
843 {
852 {
844 top: 5px;
853 top: 5px;
845 right: 4px;
854 right: 4px;
846 }
855 }
847
856
848 #content #left #date-picker .ui-datepicker .ui-datepicker-prev-hover
857 #content #left #date-picker .ui-datepicker .ui-datepicker-prev-hover
849 {
858 {
850 top: 5px;
859 top: 5px;
851 left: 4px;
860 left: 4px;
852 }
861 }
853
862
854 #content #left #date-picker .ui-datepicker .ui-datepicker-next-hover
863 #content #left #date-picker .ui-datepicker .ui-datepicker-next-hover
855 {
864 {
856 top: 5px;
865 top: 5px;
857 right: 4px;
866 right: 4px;
858 }
867 }
859
868
860 /* -----------------------------------------------------------
869 /* -----------------------------------------------------------
861 content -> right
870 content -> right
862 ----------------------------------------------------------- */
871 ----------------------------------------------------------- */
863
872
864 #content #right
873 #content #right
865 {
874 {
866 margin: 0 60px 10px 290px;
875 margin: 0 60px 10px 290px;
867 }
876 }
868
877
869 /* -----------------------------------------------------------
878 /* -----------------------------------------------------------
870 content -> right -> box
879 content -> right -> box
871 ----------------------------------------------------------- */
880 ----------------------------------------------------------- */
872
881
873 #content div.box
882 #content div.box
874 {
883 {
875 margin: 0 0 10px 0;
884 margin: 0 0 10px 0;
876 padding: 0 0 10px 0;
885 padding: 0 0 10px 0;
877 clear: both;
886 clear: both;
878 overflow: hidden;
887 overflow: hidden;
879 background: #ffffff;
888 background: #ffffff;
880 }
889 }
881
890
882 #content div.box-left
891 #content div.box-left
883 {
892 {
884 margin: 0 0 10px;
893 margin: 0 0 10px;
885 width: 49%;
894 width: 49%;
886 clear: none;
895 clear: none;
887 float: left;
896 float: left;
888 }
897 }
889
898
890 #content div.box-right
899 #content div.box-right
891 {
900 {
892 margin: 0 0 10px;
901 margin: 0 0 10px;
893 width: 49%;
902 width: 49%;
894 clear: none;
903 clear: none;
895 float: right;
904 float: right;
896 }
905 }
897
906
898 /* -----------------------------------------------------------
907 /* -----------------------------------------------------------
899 content -> right -> box / title
908 content -> right -> box / title
900 ----------------------------------------------------------- */
909 ----------------------------------------------------------- */
901
910
902 #content div.box div.title
911 #content div.box div.title
903 {
912 {
904 margin: 0 0 20px 0;
913 margin: 0 0 20px 0;
905 padding: 0;
914 padding: 0;
906 clear: both;
915 clear: both;
907 overflow: hidden;
916 overflow: hidden;
908 background: #336699 url("../images/colors/blue/title.png") repeat-x;
917 background: #336699 url("../images/colors/blue/title.png") repeat-x;
909 }
918 }
910
919
911 #content div.box div.title h5
920 #content div.box div.title h5
912 {
921 {
913 margin: 0;
922 margin: 0;
914 padding: 11px 0 11px 10px;
923 padding: 11px 0 11px 10px;
915 float: left;
924 float: left;
916 border: none;
925 border: none;
917 color: #ffffff;
926 color: #ffffff;
918 text-transform: uppercase;
927 text-transform: uppercase;
919 }
928 }
920
929
921 #content div.box div.title ul.links
930 #content div.box div.title ul.links
922 {
931 {
923 margin: 0;
932 margin: 0;
924 padding: 0;
933 padding: 0;
925 float: right;
934 float: right;
926 }
935 }
927
936
928 #content div.box div.title ul.links li
937 #content div.box div.title ul.links li
929 {
938 {
930 margin: 0;
939 margin: 0;
931 padding: 0;
940 padding: 0;
932 list-style: none;
941 list-style: none;
933 float: left;
942 float: left;
934 }
943 }
935
944
936 #content div.box div.title ul.links li a
945 #content div.box div.title ul.links li a
937 {
946 {
938 margin: 0;
947 margin: 0;
939 padding: 13px 16px 12px 16px;
948 padding: 13px 16px 12px 16px;
940 height: 1%;
949 height: 1%;
941 display: block;
950 display: block;
942 float: left;
951 float: left;
943 background: url("../images/colors/blue/title_link.png") no-repeat top left;
952 background: url("../images/colors/blue/title_link.png") no-repeat top left;
944 border-left: 1px solid #316293;
953 border-left: 1px solid #316293;
945 color: #ffffff;
954 color: #ffffff;
946 font-size: 11px;
955 font-size: 11px;
947 font-weight: bold;
956 font-weight: bold;
948 text-decoration: none;
957 text-decoration: none;
949 }
958 }
950
959
951 #content div.box div.title ul.links li a:hover
960 #content div.box div.title ul.links li a:hover
952 {
961 {
953 color: #bfe3ff;
962 color: #bfe3ff;
954 }
963 }
955
964
956 #content div.box div.title ul.links li.ui-tabs-selected a
965 #content div.box div.title ul.links li.ui-tabs-selected a
957 {
966 {
958 background: url("../../../resources/images/colors/blue/title_tab_selected.png") no-repeat bottom center;
967 background: url("../../../resources/images/colors/blue/title_tab_selected.png") no-repeat bottom center;
959 color: #bfe3ff;
968 color: #bfe3ff;
960 }
969 }
961
970
962 /* -----------------------------------------------------------
971 /* -----------------------------------------------------------
963 content -> right -> box / headings
972 content -> right -> box / headings
964 ----------------------------------------------------------- */
973 ----------------------------------------------------------- */
965
974
966 #content div.box h1,
975 #content div.box h1,
967 #content div.box h2,
976 #content div.box h2,
968 #content div.box h3,
977 #content div.box h3,
969 #content div.box h4,
978 #content div.box h4,
970 #content div.box h5,
979 #content div.box h5,
971 #content div.box h6
980 #content div.box h6
972 {
981 {
973 margin: 10px 20px 10px 20px;
982 margin: 10px 20px 10px 20px;
974 padding: 0 0 15px 0;
983 padding: 0 0 15px 0;
975 clear: both;
984 clear: both;
976 overflow: hidden;
985 overflow: hidden;
977 border-bottom: 1px solid #DDDDDD;
986 border-bottom: 1px solid #DDDDDD;
978 }
987 }
979
988
980 /* -----------------------------------------------------------
989 /* -----------------------------------------------------------
981 content -> right -> box / paragraphs
990 content -> right -> box / paragraphs
982 ----------------------------------------------------------- */
991 ----------------------------------------------------------- */
983
992
984 #content div.box p
993 #content div.box p
985 {
994 {
986 margin: 0 24px 10px 24px;
995 margin: 0 24px 10px 24px;
987 padding: 0;
996 padding: 0;
988 color: #5f5f5f;
997 color: #5f5f5f;
989 font-size: 12px;
998 font-size: 12px;
990 line-height: 150%;
999 line-height: 150%;
991 }
1000 }
992
1001
993 #content div.box blockquote
1002 #content div.box blockquote
994 {
1003 {
995 margin: 0 34px 0 34px;
1004 margin: 0 34px 0 34px;
996 padding: 0 0 0 14px;
1005 padding: 0 0 0 14px;
997 border-left: 4px solid #DDDDDD;
1006 border-left: 4px solid #DDDDDD;
998 color: #5f5f5f;
1007 color: #5f5f5f;
999 font-size: 11px;
1008 font-size: 11px;
1000 line-height: 150%;
1009 line-height: 150%;
1001 }
1010 }
1002
1011
1003 #content div.box blockquote p
1012 #content div.box blockquote p
1004 {
1013 {
1005 margin: 10px 0 10px 0;
1014 margin: 10px 0 10px 0;
1006 padding: 0;
1015 padding: 0;
1007 }
1016 }
1008
1017
1009 /* -----------------------------------------------------------
1018 /* -----------------------------------------------------------
1010 content -> right -> box / lists
1019 content -> right -> box / lists
1011 ----------------------------------------------------------- */
1020 ----------------------------------------------------------- */
1012
1021
1013 #content div.box dl
1022 #content div.box dl
1014 {
1023 {
1015 margin: 10px 24px 10px 24px;
1024 margin: 10px 24px 10px 24px;
1016 }
1025 }
1017
1026
1018 #content div.box dt
1027 #content div.box dt
1019 {
1028 {
1020 margin: 0;
1029 margin: 0;
1021 font-size: 12px;
1030 font-size: 12px;
1022 }
1031 }
1023
1032
1024 #content div.box dd
1033 #content div.box dd
1025 {
1034 {
1026 margin: 0;
1035 margin: 0;
1027 padding: 8px 0 8px 15px;
1036 padding: 8px 0 8px 15px;
1028 font-size: 12px;
1037 font-size: 12px;
1029 }
1038 }
1030
1039
1031 #content div.box ul.left
1040 #content div.box ul.left
1032 {
1041 {
1033 float: left;
1042 float: left;
1034 }
1043 }
1035
1044
1036 #content div.box ol.left
1045 #content div.box ol.left
1037 {
1046 {
1038 float: left;
1047 float: left;
1039 }
1048 }
1040
1049
1041 #content div.box li
1050 #content div.box li
1042 {
1051 {
1043 padding: 4px 0 4px 0;
1052 padding: 4px 0 4px 0;
1044 font-size: 12px;
1053 font-size: 12px;
1045 }
1054 }
1046
1055
1047 #content div.box ol.lower-roman,
1056 #content div.box ol.lower-roman,
1048 #content div.box ol.upper-roman
1057 #content div.box ol.upper-roman
1049 {
1058 {
1050 margin: 10px 24px 10px 44px;
1059 margin: 10px 24px 10px 44px;
1051 }
1060 }
1052
1061
1053 #content div.box ol.lower-alpha,
1062 #content div.box ol.lower-alpha,
1054 #content div.box ol.upper-alpha
1063 #content div.box ol.upper-alpha
1055 {
1064 {
1056 margin: 10px 24px 10px 44px;
1065 margin: 10px 24px 10px 44px;
1057 }
1066 }
1058
1067
1059 #content div.box ol.decimal
1068 #content div.box ol.decimal
1060 {
1069 {
1061 margin: 10px 24px 10px 44px;
1070 margin: 10px 24px 10px 44px;
1062 }
1071 }
1063
1072
1064 #content div.box ul.disc,
1073 #content div.box ul.disc,
1065 #content div.box ul.circle
1074 #content div.box ul.circle
1066 {
1075 {
1067 margin: 10px 24px 10px 38px;
1076 margin: 10px 24px 10px 38px;
1068 }
1077 }
1069
1078
1070 #content div.box ul.square
1079 #content div.box ul.square
1071 {
1080 {
1072 margin: 10px 24px 10px 40px;
1081 margin: 10px 24px 10px 40px;
1073 }
1082 }
1074
1083
1075 /* -----------------------------------------------------------
1084 /* -----------------------------------------------------------
1076 content -> right -> box / images
1085 content -> right -> box / images
1077 ----------------------------------------------------------- */
1086 ----------------------------------------------------------- */
1078
1087
1079 #content div.box img.left
1088 #content div.box img.left
1080 {
1089 {
1081 margin: 10px 10px 10px 0;
1090 margin: 10px 10px 10px 0;
1082 border: none;
1091 border: none;
1083 float: left;
1092 float: left;
1084 }
1093 }
1085
1094
1086 #content div.box img.right
1095 #content div.box img.right
1087 {
1096 {
1088 margin: 10px 0 10px 10px;
1097 margin: 10px 0 10px 10px;
1089 border: none;
1098 border: none;
1090 float: right;
1099 float: right;
1091 }
1100 }
1092
1101
1093 /* -----------------------------------------------------------
1102 /* -----------------------------------------------------------
1094 content -> right -> box / messages
1103 content -> right -> box / messages
1095 ----------------------------------------------------------- */
1104 ----------------------------------------------------------- */
1096
1105
1097 #content div.box div.messages
1106 #content div.box div.messages
1098 {
1107 {
1099 margin: 0 20px 0 20px;
1108 margin: 0 20px 0 20px;
1100 padding: 0;
1109 padding: 0;
1101 clear: both;
1110 clear: both;
1102 overflow: hidden;
1111 overflow: hidden;
1103 }
1112 }
1104
1113
1105 #content div.box div.message
1114 #content div.box div.message
1106 {
1115 {
1107 margin: 0 0 0px 0;
1116 margin: 0 0 0px 0;
1108 padding: 0 0 10px 0;
1117 padding: 0 0 10px 0;
1109 clear: both;
1118 clear: both;
1110 overflow: hidden;
1119 overflow: hidden;
1111 }
1120 }
1112
1121
1113 #content div.box div.message div.image
1122 #content div.box div.message div.image
1114 {
1123 {
1115 margin: 9px 0 0 5px;
1124 margin: 9px 0 0 5px;
1116 padding: 6px;
1125 padding: 6px;
1117 float: left;
1126 float: left;
1118 }
1127 }
1119
1128
1120 #content div.box div.message div.image img
1129 #content div.box div.message div.image img
1121 {
1130 {
1122 margin: 0;
1131 margin: 0;
1123 vertical-align: middle;
1132 vertical-align: middle;
1124 }
1133 }
1125
1134
1126 #content div.box div.message div.text
1135 #content div.box div.message div.text
1127 {
1136 {
1128 margin: 0;
1137 margin: 0;
1129 padding: 9px 6px 9px 6px;
1138 padding: 9px 6px 9px 6px;
1130 float: left;
1139 float: left;
1131 }
1140 }
1132
1141
1133 #content div.box div.message div.dismiss
1142 #content div.box div.message div.dismiss
1134 {
1143 {
1135 margin: 0;
1144 margin: 0;
1136 padding: 0;
1145 padding: 0;
1137 float: right;
1146 float: right;
1138 }
1147 }
1139
1148
1140 #content div.box div.message div.dismiss a
1149 #content div.box div.message div.dismiss a
1141 {
1150 {
1142 margin: 15px 14px 0 0;
1151 margin: 15px 14px 0 0;
1143 padding: 0;
1152 padding: 0;
1144 height: 16px;
1153 height: 16px;
1145 width: 16px;
1154 width: 16px;
1146 display: block;
1155 display: block;
1147 background: url("../images/icons/cross.png") no-repeat;
1156 background: url("../images/icons/cross.png") no-repeat;
1148 }
1157 }
1149
1158
1150 #content div.box div.message div.text h1,
1159 #content div.box div.message div.text h1,
1151 #content div.box div.message div.text h2,
1160 #content div.box div.message div.text h2,
1152 #content div.box div.message div.text h3,
1161 #content div.box div.message div.text h3,
1153 #content div.box div.message div.text h4,
1162 #content div.box div.message div.text h4,
1154 #content div.box div.message div.text h5,
1163 #content div.box div.message div.text h5,
1155 #content div.box div.message div.text h6
1164 #content div.box div.message div.text h6
1156 {
1165 {
1157 margin: 0;
1166 margin: 0;
1158 padding: 0px;
1167 padding: 0px;
1159 border: none;
1168 border: none;
1160 }
1169 }
1161
1170
1162 #content div.box div.message div.text span
1171 #content div.box div.message div.text span
1163 {
1172 {
1164 margin: 0;
1173 margin: 0;
1165 padding: 5px 0 0 0;
1174 padding: 5px 0 0 0;
1166 height: 1%;
1175 height: 1%;
1167 display: block;
1176 display: block;
1168 }
1177 }
1169
1178
1170 #content div.box div.message-error
1179 #content div.box div.message-error
1171 {
1180 {
1172 height: 1%;
1181 height: 1%;
1173 clear: both;
1182 clear: both;
1174 overflow: hidden;
1183 overflow: hidden;
1175 background: #FBE3E4;
1184 background: #FBE3E4;
1176 border: 1px solid #FBC2C4;
1185 border: 1px solid #FBC2C4;
1177 color: #860006;
1186 color: #860006;
1178 }
1187 }
1179
1188
1180 #content div.box div.message-error h6
1189 #content div.box div.message-error h6
1181 {
1190 {
1182 color: #860006;
1191 color: #860006;
1183 }
1192 }
1184
1193
1185 #content div.box div.message-warning
1194 #content div.box div.message-warning
1186 {
1195 {
1187 height: 1%;
1196 height: 1%;
1188 clear: both;
1197 clear: both;
1189 overflow: hidden;
1198 overflow: hidden;
1190 background: #FFF6BF;
1199 background: #FFF6BF;
1191 border: 1px solid #FFD324;
1200 border: 1px solid #FFD324;
1192 color: #5f5200;
1201 color: #5f5200;
1193 }
1202 }
1194
1203
1195 #content div.box div.message-warning h6
1204 #content div.box div.message-warning h6
1196 {
1205 {
1197 color: #5f5200;
1206 color: #5f5200;
1198 }
1207 }
1199
1208
1200 #content div.box div.message-notice
1209 #content div.box div.message-notice
1201 {
1210 {
1202 height: 1%;
1211 height: 1%;
1203 clear: both;
1212 clear: both;
1204 overflow: hidden;
1213 overflow: hidden;
1205 background: #8FBDE0;
1214 background: #8FBDE0;
1206 border: 1px solid #6BACDE;
1215 border: 1px solid #6BACDE;
1207 color: #003863;
1216 color: #003863;
1208 }
1217 }
1209
1218
1210 #content div.box div.message-notice h6
1219 #content div.box div.message-notice h6
1211 {
1220 {
1212 color: #003863;
1221 color: #003863;
1213 }
1222 }
1214
1223
1215 #content div.box div.message-success
1224 #content div.box div.message-success
1216 {
1225 {
1217 height: 1%;
1226 height: 1%;
1218 clear: both;
1227 clear: both;
1219 overflow: hidden;
1228 overflow: hidden;
1220 background: #E6EFC2;
1229 background: #E6EFC2;
1221 border: 1px solid #C6D880;
1230 border: 1px solid #C6D880;
1222 color: #4e6100;
1231 color: #4e6100;
1223 }
1232 }
1224
1233
1225 #content div.box div.message-success h6
1234 #content div.box div.message-success h6
1226 {
1235 {
1227 color: #4e6100;
1236 color: #4e6100;
1228 }
1237 }
1229
1238
1230 /* -----------------------------------------------------------
1239 /* -----------------------------------------------------------
1231 content -> right -> box / forms
1240 content -> right -> box / forms
1232 ----------------------------------------------------------- */
1241 ----------------------------------------------------------- */
1233
1242
1234 #content div.box div.form
1243 #content div.box div.form
1235 {
1244 {
1236 margin: 0;
1245 margin: 0;
1237 padding: 0 20px 10px 20px;
1246 padding: 0 20px 10px 20px;
1238 clear: both;
1247 clear: both;
1239 overflow: hidden;
1248 overflow: hidden;
1240 }
1249 }
1241
1250
1242 #content div.box div.form div.fields
1251 #content div.box div.form div.fields
1243 {
1252 {
1244 margin: 0;
1253 margin: 0;
1245 padding: 0;
1254 padding: 0;
1246 clear: both;
1255 clear: both;
1247 overflow: hidden;
1256 overflow: hidden;
1248 }
1257 }
1249
1258
1250 #content div.box div.form div.fields div.field
1259 #content div.box div.form div.fields div.field
1251 {
1260 {
1252 margin: 0;
1261 margin: 0;
1253 padding: 10px 0 10px 0;
1262 padding: 10px 0 10px 0;
1254 height: 1%;
1263 height: 1%;
1255 border-bottom: 1px solid #DDDDDD;
1264 border-bottom: 1px solid #DDDDDD;
1256 clear: both;
1265 clear: both;
1257 overflow: hidden;
1266 overflow: hidden;
1258 }
1267 }
1259
1268
1260 #content div.box div.form div.fields div.field-first
1269 #content div.box div.form div.fields div.field-first
1261 {
1270 {
1262 padding: 0 0 10px 0;
1271 padding: 0 0 10px 0;
1263 }
1272 }
1264
1273
1265 #content div.box div.form div.fields div.field span.error-message
1274 #content div.box div.form div.fields div.field span.error-message
1266 {
1275 {
1267 margin: 8px 0 0 0;
1276 margin: 8px 0 0 0;
1268 padding: 0;
1277 padding: 0;
1269 height: 1%;
1278 height: 1%;
1270 display: block;
1279 display: block;
1271 color: #FF0000;
1280 color: #FF0000;
1272 }
1281 }
1273
1282
1274 #content div.box div.form div.fields div.field span.success
1283 #content div.box div.form div.fields div.field span.success
1275 {
1284 {
1276 margin: 8px 0 0 0;
1285 margin: 8px 0 0 0;
1277 padding: 0;
1286 padding: 0;
1278 height: 1%;
1287 height: 1%;
1279 display: block;
1288 display: block;
1280 color: #316309;
1289 color: #316309;
1281 }
1290 }
1282
1291
1283 /* -----------------------------------------------------------
1292 /* -----------------------------------------------------------
1284 content -> right -> forms -> labels
1293 content -> right -> forms -> labels
1285 ----------------------------------------------------------- */
1294 ----------------------------------------------------------- */
1286
1295
1287 #content div.box div.form div.fields div.field div.label
1296 #content div.box div.form div.fields div.field div.label
1288 {
1297 {
1289 left: 310px;
1298 left: 310px;
1290 margin: 0;
1299 margin: 0;
1291 padding: 8px 0 0 5px;
1300 padding: 8px 0 0 5px;
1292 width: auto;
1301 width: auto;
1293 position: absolute;
1302 position: absolute;
1294 }
1303 }
1295
1304
1296 #content div.box-left div.form div.fields div.field div.label,
1305 #content div.box-left div.form div.fields div.field div.label,
1297 #content div.box-right div.form div.fields div.field div.label
1306 #content div.box-right div.form div.fields div.field div.label
1298 {
1307 {
1299 left: 0;
1308 left: 0;
1300 margin: 0;
1309 margin: 0;
1301 padding: 0 0 8px 0;
1310 padding: 0 0 8px 0;
1302 width: auto;
1311 width: auto;
1303 position: relative;
1312 position: relative;
1304 clear: both;
1313 clear: both;
1305 overflow: hidden;
1314 overflow: hidden;
1306
1315
1307 }
1316 }
1308
1317
1309 /* -----------------------------------------------------------
1318 /* -----------------------------------------------------------
1310 content -> right -> forms -> label (select)
1319 content -> right -> forms -> label (select)
1311 ----------------------------------------------------------- */
1320 ----------------------------------------------------------- */
1312
1321
1313 #content div.box div.form div.fields div.field div.label-select
1322 #content div.box div.form div.fields div.field div.label-select
1314 {
1323 {
1315 padding: 2px 0 0 5px;
1324 padding: 2px 0 0 5px;
1316 }
1325 }
1317
1326
1318 #content div.box-left div.form div.fields div.field div.label-select,
1327 #content div.box-left div.form div.fields div.field div.label-select,
1319 #content div.box-right div.form div.fields div.field div.label-select
1328 #content div.box-right div.form div.fields div.field div.label-select
1320 {
1329 {
1321 padding: 0 0 8px 0;
1330 padding: 0 0 8px 0;
1322 }
1331 }
1323
1332
1324 /* -----------------------------------------------------------
1333 /* -----------------------------------------------------------
1325 content -> right -> forms -> label (checkbox)
1334 content -> right -> forms -> label (checkbox)
1326 ----------------------------------------------------------- */
1335 ----------------------------------------------------------- */
1327
1336
1328 #content div.box div.form div.fields div.field div.label-checkbox
1337 #content div.box div.form div.fields div.field div.label-checkbox
1329 {
1338 {
1330 padding:0 0 0 5px !important;
1339 padding:0 0 0 5px !important;
1331 }
1340 }
1332
1341
1333 /* -----------------------------------------------------------
1342 /* -----------------------------------------------------------
1334 content -> right -> forms -> label (radio)
1343 content -> right -> forms -> label (radio)
1335 ----------------------------------------------------------- */
1344 ----------------------------------------------------------- */
1336
1345
1337 #content div.box div.form div.fields div.field div.label-radio
1346 #content div.box div.form div.fields div.field div.label-radio
1338 {
1347 {
1339 padding:0 0 0 5px !important;
1348 padding:0 0 0 5px !important;
1340 }
1349 }
1341
1350
1342 /* -----------------------------------------------------------
1351 /* -----------------------------------------------------------
1343 content -> right -> forms -> label (textarea)
1352 content -> right -> forms -> label (textarea)
1344 ----------------------------------------------------------- */
1353 ----------------------------------------------------------- */
1345
1354
1346 #content div.box div.form div.fields div.field div.label-textarea
1355 #content div.box div.form div.fields div.field div.label-textarea
1347 {
1356 {
1348 padding:0 0 0 5px !important;
1357 padding:0 0 0 5px !important;
1349 }
1358 }
1350
1359
1351 #content div.box-left div.form div.fields div.field div.label-textarea,
1360 #content div.box-left div.form div.fields div.field div.label-textarea,
1352 #content div.box-right div.form div.fields div.field div.label-textarea
1361 #content div.box-right div.form div.fields div.field div.label-textarea
1353 {
1362 {
1354 padding: 0 0 8px 0 !important;
1363 padding: 0 0 8px 0 !important;
1355 }
1364 }
1356
1365
1357 /* -----------------------------------------------------------
1366 /* -----------------------------------------------------------
1358 content -> right -> forms -> labels (label)
1367 content -> right -> forms -> labels (label)
1359 ----------------------------------------------------------- */
1368 ----------------------------------------------------------- */
1360
1369
1361 #content div.box div.form div.fields div.field div.label label
1370 #content div.box div.form div.fields div.field div.label label
1362 {
1371 {
1363 color: #393939;
1372 color: #393939;
1364 font-weight: bold;
1373 font-weight: bold;
1365 }
1374 }
1366
1375
1367 #content div.box div.form div.fields div.field div.label span
1376 #content div.box div.form div.fields div.field div.label span
1368 {
1377 {
1369 margin: 0;
1378 margin: 0;
1370 padding: 2px 0 0 0;
1379 padding: 2px 0 0 0;
1371 height: 1%;
1380 height: 1%;
1372 display: block;
1381 display: block;
1373 color: #363636;
1382 color: #363636;
1374 }
1383 }
1375
1384
1376 /* -----------------------------------------------------------
1385 /* -----------------------------------------------------------
1377 content -> right -> forms -> input
1386 content -> right -> forms -> input
1378 ----------------------------------------------------------- */
1387 ----------------------------------------------------------- */
1379
1388
1380 #content div.box div.form div.fields div.field div.input
1389 #content div.box div.form div.fields div.field div.input
1381 {
1390 {
1382 margin: 0 0 0 200px;
1391 margin: 0 0 0 200px;
1383 padding: 0;
1392 padding: 0;
1384 }
1393 }
1385
1394
1386 #content div.box-left div.form div.fields div.field div.input,
1395 #content div.box-left div.form div.fields div.field div.input,
1387 #content div.box-right div.form div.fields div.field div.input
1396 #content div.box-right div.form div.fields div.field div.input
1388 {
1397 {
1389 margin: 0;
1398 margin: 0;
1390 padding: 7px 7px 6px 7px;
1399 padding: 7px 7px 6px 7px;
1391 clear: both;
1400 clear: both;
1392 overflow: hidden;
1401 overflow: hidden;
1393 border-top: 1px solid #b3b3b3;
1402 border-top: 1px solid #b3b3b3;
1394 border-left: 1px solid #b3b3b3;
1403 border-left: 1px solid #b3b3b3;
1395 border-right: 1px solid #eaeaea;
1404 border-right: 1px solid #eaeaea;
1396 border-bottom: 1px solid #eaeaea;
1405 border-bottom: 1px solid #eaeaea;
1397
1406
1398 }
1407 }
1399
1408
1400 #content div.box div.form div.fields div.field div.input input
1409 #content div.box div.form div.fields div.field div.input input
1401 {
1410 {
1402 margin: 0;
1411 margin: 0;
1403 padding: 7px 7px 6px 7px;
1412 padding: 7px 7px 6px 7px;
1404 background: #FFFFFF;
1413 background: #FFFFFF;
1405 border-top: 1px solid #b3b3b3;
1414 border-top: 1px solid #b3b3b3;
1406 border-left: 1px solid #b3b3b3;
1415 border-left: 1px solid #b3b3b3;
1407 border-right: 1px solid #eaeaea;
1416 border-right: 1px solid #eaeaea;
1408 border-bottom: 1px solid #eaeaea;
1417 border-bottom: 1px solid #eaeaea;
1409 color: #000000;
1418 color: #000000;
1410 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1419 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1411 font-size: 11px;
1420 font-size: 11px;
1412 float: left;
1421 float: left;
1413 }
1422 }
1414
1423
1415 #content div.box-left div.form div.fields div.field div.input input,
1424 #content div.box-left div.form div.fields div.field div.input input,
1416 #content div.box-right div.form div.fields div.field div.input input
1425 #content div.box-right div.form div.fields div.field div.input input
1417 {
1426 {
1418 width: 100%;
1427 width: 100%;
1419 padding: 0;
1428 padding: 0;
1420 border: none;
1429 border: none;
1421 }
1430 }
1422
1431
1423 #content div.box div.form div.fields div.field div.input input.small
1432 #content div.box div.form div.fields div.field div.input input.small
1424 {
1433 {
1425 width: 30%;
1434 width: 30%;
1426 }
1435 }
1427
1436
1428 #content div.box div.form div.fields div.field div.input input.medium
1437 #content div.box div.form div.fields div.field div.input input.medium
1429 {
1438 {
1430 width: 55%;
1439 width: 55%;
1431 }
1440 }
1432
1441
1433 #content div.box div.form div.fields div.field div.input input.large
1442 #content div.box div.form div.fields div.field div.input input.large
1434 {
1443 {
1435 width: 85%;
1444 width: 85%;
1436 }
1445 }
1437
1446
1438 #content div.box div.form div.fields div.field div.input input.date
1447 #content div.box div.form div.fields div.field div.input input.date
1439 {
1448 {
1440 width: 177px;
1449 width: 177px;
1441 }
1450 }
1442
1451
1443 #content div.box div.form div.fields div.field div.input input.button
1452 #content div.box div.form div.fields div.field div.input input.button
1444 {
1453 {
1445 margin: 0;
1454 margin: 0;
1446 padding: 4px 8px 4px 8px;
1455 padding: 4px 8px 4px 8px;
1447 background: #D4D0C8;
1456 background: #D4D0C8;
1448 border-top: 1px solid #FFFFFF;
1457 border-top: 1px solid #FFFFFF;
1449 border-left: 1px solid #FFFFFF;
1458 border-left: 1px solid #FFFFFF;
1450 border-right: 1px solid #404040;
1459 border-right: 1px solid #404040;
1451 border-bottom: 1px solid #404040;
1460 border-bottom: 1px solid #404040;
1452 color: #000000;
1461 color: #000000;
1453 }
1462 }
1454
1463
1455 #content div.box div.form div.fields div.field div.input input.error
1464 #content div.box div.form div.fields div.field div.input input.error
1456 {
1465 {
1457 background: #FBE3E4;
1466 background: #FBE3E4;
1458 border-top: 1px solid #e1b2b3;
1467 border-top: 1px solid #e1b2b3;
1459 border-left: 1px solid #e1b2b3;
1468 border-left: 1px solid #e1b2b3;
1460 border-right: 1px solid #FBC2C4;
1469 border-right: 1px solid #FBC2C4;
1461 border-bottom: 1px solid #FBC2C4;
1470 border-bottom: 1px solid #FBC2C4;
1462 }
1471 }
1463
1472
1464 #content div.box div.form div.fields div.field div.input input.success
1473 #content div.box div.form div.fields div.field div.input input.success
1465 {
1474 {
1466 background: #E6EFC2;
1475 background: #E6EFC2;
1467 border-top: 1px solid #cebb98;
1476 border-top: 1px solid #cebb98;
1468 border-left: 1px solid #cebb98;
1477 border-left: 1px solid #cebb98;
1469 border-right: 1px solid #c6d880;
1478 border-right: 1px solid #c6d880;
1470 border-bottom: 1px solid #c6d880;
1479 border-bottom: 1px solid #c6d880;
1471 }
1480 }
1472
1481
1473 #content div.box div.form div.fields div.field div.input img.ui-datepicker-trigger
1482 #content div.box div.form div.fields div.field div.input img.ui-datepicker-trigger
1474 {
1483 {
1475 margin: 0 0 0 6px;
1484 margin: 0 0 0 6px;
1476 }
1485 }
1477
1486
1478 /* -----------------------------------------------------------
1487 /* -----------------------------------------------------------
1479 content -> right -> forms -> input (file styling)
1488 content -> right -> forms -> input (file styling)
1480 ----------------------------------------------------------- */
1489 ----------------------------------------------------------- */
1481
1490
1482 #content div.box div.form div.fields div.field div.input a.ui-input-file
1491 #content div.box div.form div.fields div.field div.input a.ui-input-file
1483 {
1492 {
1484 margin: 0 0 0 6px;
1493 margin: 0 0 0 6px;
1485 padding: 0;
1494 padding: 0;
1486 width: 28px;
1495 width: 28px;
1487 height: 28px;
1496 height: 28px;
1488 display: inline;
1497 display: inline;
1489 position: absolute;
1498 position: absolute;
1490 overflow: hidden;
1499 overflow: hidden;
1491 cursor: pointer;
1500 cursor: pointer;
1492 background: #e5e3e3 url("../images/button_browse.png") no-repeat;
1501 background: #e5e3e3 url("../images/button_browse.png") no-repeat;
1493 border: none;
1502 border: none;
1494 text-decoration: none;
1503 text-decoration: none;
1495 }
1504 }
1496
1505
1497 #content div.box div.form div.fields div.field div.input a:hover.ui-input-file
1506 #content div.box div.form div.fields div.field div.input a:hover.ui-input-file
1498 {
1507 {
1499 background: #e5e3e3 url("../images/button_browse_selected.png") no-repeat;
1508 background: #e5e3e3 url("../images/button_browse_selected.png") no-repeat;
1500 }
1509 }
1501
1510
1502 /* -----------------------------------------------------------
1511 /* -----------------------------------------------------------
1503 content -> right -> forms -> textarea
1512 content -> right -> forms -> textarea
1504 ----------------------------------------------------------- */
1513 ----------------------------------------------------------- */
1505
1514
1506 #content div.box div.form div.fields div.field div.textarea
1515 #content div.box div.form div.fields div.field div.textarea
1507 {
1516 {
1508 margin: 0 0 0 200px;
1517 margin: 0 0 0 200px;
1509 padding: 10px;
1518 padding: 10px;
1510 border-top: 1px solid #b3b3b3;
1519 border-top: 1px solid #b3b3b3;
1511 border-left: 1px solid #b3b3b3;
1520 border-left: 1px solid #b3b3b3;
1512 border-right: 1px solid #eaeaea;
1521 border-right: 1px solid #eaeaea;
1513 border-bottom: 1px solid #eaeaea;
1522 border-bottom: 1px solid #eaeaea;
1514 }
1523 }
1515
1524
1516 #content div.box div.form div.fields div.field div.textarea-editor
1525 #content div.box div.form div.fields div.field div.textarea-editor
1517 {
1526 {
1518 padding: 0;
1527 padding: 0;
1519 border: 1px solid #dddddd;
1528 border: 1px solid #dddddd;
1520 }
1529 }
1521
1530
1522 #content div.box-left div.form div.fields div.field div.textarea,
1531 #content div.box-left div.form div.fields div.field div.textarea,
1523 #content div.box-right div.form div.fields div.field div.textarea
1532 #content div.box-right div.form div.fields div.field div.textarea
1524 {
1533 {
1525 margin: 0;
1534 margin: 0;
1526 }
1535 }
1527
1536
1528 #content div.box div.form div.fields div.field div.textarea textarea
1537 #content div.box div.form div.fields div.field div.textarea textarea
1529 {
1538 {
1530 margin: 0;
1539 margin: 0;
1531 padding: 0;
1540 padding: 0;
1532 width: 100%;
1541 width: 100%;
1533 height: 220px;
1542 height: 220px;
1534 overflow: hidden;
1543 overflow: hidden;
1535 background: #FFFFFF;
1544 background: #FFFFFF;
1536 border-width: 0;
1545 border-width: 0;
1537 color: #000000;
1546 color: #000000;
1538 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1547 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1539 font-size: 11px;
1548 font-size: 11px;
1540 outline: none;
1549 outline: none;
1541 }
1550 }
1542
1551
1543 #content div.box-left div.form div.fields div.field div.textarea textarea,
1552 #content div.box-left div.form div.fields div.field div.textarea textarea,
1544 #content div.box-right div.form div.fields div.field div.textarea textarea
1553 #content div.box-right div.form div.fields div.field div.textarea textarea
1545 {
1554 {
1546 width: 100%;
1555 width: 100%;
1547 height: 100px;
1556 height: 100px;
1548 }
1557 }
1549
1558
1550 #content div.box div.form div.fields div.field div.textarea textarea.error
1559 #content div.box div.form div.fields div.field div.textarea textarea.error
1551 {
1560 {
1552 padding: 3px 10px 10px 23px;
1561 padding: 3px 10px 10px 23px;
1553 background-color: #FBE3E4;
1562 background-color: #FBE3E4;
1554 background-image: url("../../../resources/images/icons/exclamation.png");
1563 background-image: url("../../../resources/images/icons/exclamation.png");
1555 background-repeat: no-repeat;
1564 background-repeat: no-repeat;
1556 background-position: 3px 3px;
1565 background-position: 3px 3px;
1557 border: 1px solid #FBC2C4;
1566 border: 1px solid #FBC2C4;
1558 }
1567 }
1559
1568
1560 #content div.box div.form div.fields div.field div.textarea textarea.success
1569 #content div.box div.form div.fields div.field div.textarea textarea.success
1561 {
1570 {
1562 padding: 3px 10px 10px 23px;
1571 padding: 3px 10px 10px 23px;
1563 background-color: #E6EFC2;
1572 background-color: #E6EFC2;
1564 background-image: url("../../../resources/images/icons/accept.png");
1573 background-image: url("../../../resources/images/icons/accept.png");
1565 background-repeat: no-repeat;
1574 background-repeat: no-repeat;
1566 background-position: 3px 3px;
1575 background-position: 3px 3px;
1567 border: 1px solid #C6D880;
1576 border: 1px solid #C6D880;
1568 }
1577 }
1569
1578
1570 /* -----------------------------------------------------------
1579 /* -----------------------------------------------------------
1571 content -> right -> forms -> textarea (tinymce editor)
1580 content -> right -> forms -> textarea (tinymce editor)
1572 ----------------------------------------------------------- */
1581 ----------------------------------------------------------- */
1573
1582
1574 #content div.box div.form div.fields div.field div.textarea table
1583 #content div.box div.form div.fields div.field div.textarea table
1575 {
1584 {
1576 margin: 0;
1585 margin: 0;
1577 padding: 0;
1586 padding: 0;
1578 width: 100%;
1587 width: 100%;
1579 border: none;
1588 border: none;
1580 }
1589 }
1581
1590
1582 #content div.box div.form div.fields div.field div.textarea table td
1591 #content div.box div.form div.fields div.field div.textarea table td
1583 {
1592 {
1584 padding: 0;
1593 padding: 0;
1585 background: #DDDDDD;
1594 background: #DDDDDD;
1586 border: none;
1595 border: none;
1587 }
1596 }
1588
1597
1589 #content div.box div.form div.fields div.field div.textarea table td table
1598 #content div.box div.form div.fields div.field div.textarea table td table
1590 {
1599 {
1591 margin: 0;
1600 margin: 0;
1592 padding: 0;
1601 padding: 0;
1593 width: auto;
1602 width: auto;
1594 border: none;
1603 border: none;
1595 }
1604 }
1596
1605
1597 #content div.box div.form div.fields div.field div.textarea table td table td
1606 #content div.box div.form div.fields div.field div.textarea table td table td
1598 {
1607 {
1599 padding: 5px 5px 5px 0;
1608 padding: 5px 5px 5px 0;
1600 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1609 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1601 font-size: 11px;
1610 font-size: 11px;
1602 }
1611 }
1603
1612
1604 #content div.box div.form div.fields div.field div.textarea table td table td a
1613 #content div.box div.form div.fields div.field div.textarea table td table td a
1605 {
1614 {
1606 border: none;
1615 border: none;
1607 }
1616 }
1608
1617
1609 #content div.box div.form div.fields div.field div.textarea table td table td a.mceButtonActive
1618 #content div.box div.form div.fields div.field div.textarea table td table td a.mceButtonActive
1610 {
1619 {
1611 background: #b1b1b1;
1620 background: #b1b1b1;
1612 }
1621 }
1613
1622
1614 /* -----------------------------------------------------------
1623 /* -----------------------------------------------------------
1615 content -> right -> forms -> select
1624 content -> right -> forms -> select
1616 ----------------------------------------------------------- */
1625 ----------------------------------------------------------- */
1617
1626
1618 #content div.box div.form div.fields div.field div.select
1627 #content div.box div.form div.fields div.field div.select
1619 {
1628 {
1620 margin: 0 0 0 200px;
1629 margin: 0 0 0 200px;
1621 padding: 0;
1630 padding: 0;
1622 }
1631 }
1623
1632
1624 #content div.box div.form div.fields div.field div.select a:hover
1633 #content div.box div.form div.fields div.field div.select a:hover
1625 {
1634 {
1626 color: #000000;
1635 color: #000000;
1627 text-decoration: none;
1636 text-decoration: none;
1628 }
1637 }
1629
1638
1630 #content div.box div.form div.fields div.field div.select select
1639 #content div.box div.form div.fields div.field div.select select
1631 {
1640 {
1632 margin: 0;
1641 margin: 0;
1633 }
1642 }
1634
1643
1635 /* -----------------------------------------------------------
1644 /* -----------------------------------------------------------
1636 content -> right -> forms -> select (jquery styling)
1645 content -> right -> forms -> select (jquery styling)
1637 ----------------------------------------------------------- */
1646 ----------------------------------------------------------- */
1638
1647
1639 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus
1648 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus
1640 {
1649 {
1641 border: 1px solid #666666;
1650 border: 1px solid #666666;
1642 }
1651 }
1643
1652
1644 #content div.box div.form div.fields div.field div.select a.ui-selectmenu
1653 #content div.box div.form div.fields div.field div.select a.ui-selectmenu
1645 {
1654 {
1646 color: #565656;
1655 color: #565656;
1647 text-decoration: none;
1656 text-decoration: none;
1648 }
1657 }
1649
1658
1650 #content div.box div.form div.fields div.field div.select a.ui-selectmenu:hover
1659 #content div.box div.form div.fields div.field div.select a.ui-selectmenu:hover
1651 {
1660 {
1652 color: #000000;
1661 color: #000000;
1653 text-decoration: none;
1662 text-decoration: none;
1654 }
1663 }
1655
1664
1656 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus span.ui-icon
1665 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus span.ui-icon
1657 {
1666 {
1658 background-image: url(../images/ui/ui-icons_222222_256x240.png);
1667 background-image: url(../images/ui/ui-icons_222222_256x240.png);
1659 }
1668 }
1660
1669
1661 /* -----------------------------------------------------------
1670 /* -----------------------------------------------------------
1662 content -> right -> forms -> element focus
1671 content -> right -> forms -> element focus
1663 ----------------------------------------------------------- */
1672 ----------------------------------------------------------- */
1664
1673
1665 #content div.box div.form div.fields div.field input[type=text]:focus,
1674 #content div.box div.form div.fields div.field input[type=text]:focus,
1666 #content div.box div.form div.fields div.field input[type=password]:focus,
1675 #content div.box div.form div.fields div.field input[type=password]:focus,
1667 #content div.box div.form div.fields div.field input[type=file]:focus,
1676 #content div.box div.form div.fields div.field input[type=file]:focus,
1668 #content div.box div.form div.fields div.field textarea:focus,
1677 #content div.box div.form div.fields div.field textarea:focus,
1669 #content div.box div.form div.fields div.field select:focus
1678 #content div.box div.form div.fields div.field select:focus
1670 {
1679 {
1671 background: #f6f6f6;
1680 background: #f6f6f6;
1672 border-color: #666;
1681 border-color: #666;
1673 }
1682 }
1674
1683
1675 /* -----------------------------------------------------------
1684 /* -----------------------------------------------------------
1676 content -> right -> forms -> checkboxes
1685 content -> right -> forms -> checkboxes
1677 ----------------------------------------------------------- */
1686 ----------------------------------------------------------- */
1678
1687
1679 #content div.box div.form div.fields div.field div.checkboxes
1688 #content div.box div.form div.fields div.field div.checkboxes
1680 {
1689 {
1681 margin: 0 0 0 200px;
1690 margin: 0 0 0 200px;
1682 padding: 0;
1691 padding: 0;
1683 }
1692 }
1684
1693
1685 #content div.box div.form div.fields div.field div.checkboxes div.checkbox
1694 #content div.box div.form div.fields div.field div.checkboxes div.checkbox
1686 {
1695 {
1687 margin: 0;
1696 margin: 0;
1688 padding: 2px 0 2px 0;
1697 padding: 2px 0 2px 0;
1689 clear: both;
1698 clear: both;
1690 overflow: hidden;
1699 overflow: hidden;
1691 }
1700 }
1692
1701
1693 #content div.box div.form div.fields div.field div.checkboxes div.checkbox input
1702 #content div.box div.form div.fields div.field div.checkboxes div.checkbox input
1694 {
1703 {
1695 margin: 0;
1704 margin: 0;
1696 float: left;
1705 float: left;
1697 }
1706 }
1698
1707
1699 #content div.box div.form div.fields div.field div.checkboxes div.checkbox label
1708 #content div.box div.form div.fields div.field div.checkboxes div.checkbox label
1700 {
1709 {
1701 margin: 3px 0 0 4px;
1710 margin: 3px 0 0 4px;
1702 height: 1%;
1711 height: 1%;
1703 display: block;
1712 display: block;
1704 float: left;
1713 float: left;
1705 }
1714 }
1706
1715
1707 /* -----------------------------------------------------------
1716 /* -----------------------------------------------------------
1708 content -> right -> forms -> radios
1717 content -> right -> forms -> radios
1709 ----------------------------------------------------------- */
1718 ----------------------------------------------------------- */
1710
1719
1711 #content div.box div.form div.fields div.field div.radios
1720 #content div.box div.form div.fields div.field div.radios
1712 {
1721 {
1713 margin: 0 0 0 200px;
1722 margin: 0 0 0 200px;
1714 padding: 0;
1723 padding: 0;
1715 }
1724 }
1716
1725
1717 #content div.box div.form div.fields div.field div.radios div.radio
1726 #content div.box div.form div.fields div.field div.radios div.radio
1718 {
1727 {
1719 margin: 0;
1728 margin: 0;
1720 padding: 2px 0 2px 0;
1729 padding: 2px 0 2px 0;
1721 clear: both;
1730 clear: both;
1722 overflow: hidden;
1731 overflow: hidden;
1723 }
1732 }
1724
1733
1725 #content div.box div.form div.fields div.field div.radios div.radio input
1734 #content div.box div.form div.fields div.field div.radios div.radio input
1726 {
1735 {
1727 margin: 0;
1736 margin: 0;
1728 float: left;
1737 float: left;
1729 }
1738 }
1730
1739
1731 #content div.box div.form div.fields div.field div.radios div.radio label
1740 #content div.box div.form div.fields div.field div.radios div.radio label
1732 {
1741 {
1733 margin: 3px 0 0 4px;
1742 margin: 3px 0 0 4px;
1734 height: 1%;
1743 height: 1%;
1735 display: block;
1744 display: block;
1736 float: left;
1745 float: left;
1737 }
1746 }
1738 /* -----------------------------------------------------------
1747 /* -----------------------------------------------------------
1739 content -> right -> forms -> button
1748 content -> right -> forms -> button
1740 ----------------------------------------------------------- */
1749 ----------------------------------------------------------- */
1741
1750
1742 div.form div.fields div.field div.button
1751 div.form div.fields div.field div.button
1743 {
1752 {
1744 margin: 0;
1753 margin: 0;
1745 padding: 0 0 0 8px;
1754 padding: 0 0 0 8px;
1746 float: left;
1755 float: left;
1747 }
1756 }
1748
1757
1749 div.form div.fields div.field div.button input
1758 div.form div.fields div.field div.button input
1750 {
1759 {
1751 margin: 0;
1760 margin: 0;
1752 color: #000000;
1761 color: #000000;
1753 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1762 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1754 font-size: 11px;
1763 font-size: 11px;
1755 font-weight: bold;
1764 font-weight: bold;
1756 }
1765 }
1757
1766
1758 div.form div.fields div.field div.button .ui-state-default
1767 div.form div.fields div.field div.button .ui-state-default
1759 {
1768 {
1760 margin: 0;
1769 margin: 0;
1761 padding: 6px 12px 6px 12px;
1770 padding: 6px 12px 6px 12px;
1762 background: #e5e3e3 url("../images/button.png") repeat-x;
1771 background: #e5e3e3 url("../images/button.png") repeat-x;
1763 border-top: 1px solid #DDDDDD;
1772 border-top: 1px solid #DDDDDD;
1764 border-left: 1px solid #c6c6c6;
1773 border-left: 1px solid #c6c6c6;
1765 border-right: 1px solid #DDDDDD;
1774 border-right: 1px solid #DDDDDD;
1766 border-bottom: 1px solid #c6c6c6;
1775 border-bottom: 1px solid #c6c6c6;
1767 color: #515151;
1776 color: #515151;
1768 outline: none;
1777 outline: none;
1769 }
1778 }
1770
1779
1771 div.form div.fields div.field div.button .ui-state-hover
1780 div.form div.fields div.field div.button .ui-state-hover
1772 {
1781 {
1773 margin: 0;
1782 margin: 0;
1774 padding: 6px 12px 6px 12px;
1783 padding: 6px 12px 6px 12px;
1775 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
1784 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
1776 border-top: 1px solid #cccccc;
1785 border-top: 1px solid #cccccc;
1777 border-left: 1px solid #bebebe;
1786 border-left: 1px solid #bebebe;
1778 border-right: 1px solid #b1b1b1;
1787 border-right: 1px solid #b1b1b1;
1779 border-bottom: 1px solid #afafaf;
1788 border-bottom: 1px solid #afafaf;
1780 color: #515151;
1789 color: #515151;
1781 outline: none;
1790 outline: none;
1782 }
1791 }
1783
1792
1784 div.form div.fields div.field div.highlight
1793 div.form div.fields div.field div.highlight
1785 {
1794 {
1786 display: inline;
1795 display: inline;
1787 }
1796 }
1788
1797
1789 div.form div.fields div.field div.highlight .ui-state-default
1798 div.form div.fields div.field div.highlight .ui-state-default
1790 {
1799 {
1791 margin: 0;
1800 margin: 0;
1792 padding: 6px 12px 6px 12px;
1801 padding: 6px 12px 6px 12px;
1793 background: #4e85bb url("../images/colors/blue/button_highlight.png") repeat-x;
1802 background: #4e85bb url("../images/colors/blue/button_highlight.png") repeat-x;
1794 border-top: 1px solid #5c91a4;
1803 border-top: 1px solid #5c91a4;
1795 border-left: 1px solid #2a6f89;
1804 border-left: 1px solid #2a6f89;
1796 border-right: 1px solid #2b7089;
1805 border-right: 1px solid #2b7089;
1797 border-bottom: 1px solid #1a6480;
1806 border-bottom: 1px solid #1a6480;
1798 color: #FFFFFF;
1807 color: #FFFFFF;
1799 }
1808 }
1800
1809
1801 div.form div.fields div.field div.highlight .ui-state-hover
1810 div.form div.fields div.field div.highlight .ui-state-hover
1802 {
1811 {
1803 margin: 0;
1812 margin: 0;
1804 padding: 6px 12px 6px 12px;
1813 padding: 6px 12px 6px 12px;
1805 background: #46a0c1 url("../images/colors/blue/button_highlight_selected.png") repeat-x;
1814 background: #46a0c1 url("../images/colors/blue/button_highlight_selected.png") repeat-x;
1806 border-top: 1px solid #78acbf;
1815 border-top: 1px solid #78acbf;
1807 border-left: 1px solid #34819e;
1816 border-left: 1px solid #34819e;
1808 border-right: 1px solid #35829f;
1817 border-right: 1px solid #35829f;
1809 border-bottom: 1px solid #257897;
1818 border-bottom: 1px solid #257897;
1810 color: #FFFFFF;
1819 color: #FFFFFF;
1811 }
1820 }
1812
1821
1813
1822
1814 /* -----------------------------------------------------------
1823 /* -----------------------------------------------------------
1815 content -> right -> forms -> buttons
1824 content -> right -> forms -> buttons
1816 ----------------------------------------------------------- */
1825 ----------------------------------------------------------- */
1817
1826
1818 #content div.box div.form div.fields div.buttons
1827 #content div.box div.form div.fields div.buttons
1819 {
1828 {
1820 margin: 10px 0 0 200px;
1829 margin: 10px 0 0 200px;
1821 padding: 0;
1830 padding: 0;
1822 }
1831 }
1823
1832
1824 #content div.box-left div.form div.fields div.buttons,
1833 #content div.box-left div.form div.fields div.buttons,
1825 #content div.box-right div.form div.fields div.buttons
1834 #content div.box-right div.form div.fields div.buttons
1826 {
1835 {
1827 margin: 10px 0 0 0;
1836 margin: 10px 0 0 0;
1828 }
1837 }
1829
1838
1830 #content div.box div.form div.fields div.buttons input
1839 #content div.box div.form div.fields div.buttons input
1831 {
1840 {
1832 margin: 0;
1841 margin: 0;
1833 color: #000000;
1842 color: #000000;
1834 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1843 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1835 font-size: 11px;
1844 font-size: 11px;
1836 font-weight: bold;
1845 font-weight: bold;
1837 }
1846 }
1838 /* -----------------------------------------------------------
1847 /* -----------------------------------------------------------
1839 content -> right -> forms -> buttons
1848 content -> right -> forms -> buttons
1840 ----------------------------------------------------------- */
1849 ----------------------------------------------------------- */
1841
1850
1842 div.form div.fields div.buttons
1851 div.form div.fields div.buttons
1843 {
1852 {
1844 margin: 10px 0 0 200px;
1853 margin: 10px 0 0 200px;
1845 padding: 0;
1854 padding: 0;
1846 }
1855 }
1847
1856
1848 div.box-left div.form div.fields div.buttons,
1857 div.box-left div.form div.fields div.buttons,
1849 div.box-right div.form div.fields div.buttons
1858 div.box-right div.form div.fields div.buttons
1850 {
1859 {
1851 margin: 10px 0 0 0;
1860 margin: 10px 0 0 0;
1852 }
1861 }
1853
1862
1854 div.form div.fields div.buttons input
1863 div.form div.fields div.buttons input
1855 {
1864 {
1856 margin: 0;
1865 margin: 0;
1857 color: #000000;
1866 color: #000000;
1858 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1867 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
1859 font-size: 11px;
1868 font-size: 11px;
1860 font-weight: bold;
1869 font-weight: bold;
1861 }
1870 }
1862
1871
1863 /* -----------------------------------------------------------
1872 /* -----------------------------------------------------------
1864 content -> right -> forms -> buttons (jquery styling)
1873 content -> right -> forms -> buttons (jquery styling)
1865 ----------------------------------------------------------- */
1874 ----------------------------------------------------------- */
1866
1875
1867 #content div.box div.form div.fields div.buttons input.ui-state-default
1876 #content div.box div.form div.fields div.buttons input.ui-state-default
1868 {
1877 {
1869 margin: 0;
1878 margin: 0;
1870 padding: 6px 12px 6px 12px;
1879 padding: 6px 12px 6px 12px;
1871 background: #e5e3e3 url("../images/button.png") repeat-x;
1880 background: #e5e3e3 url("../images/button.png") repeat-x;
1872 border-top: 1px solid #DDDDDD;
1881 border-top: 1px solid #DDDDDD;
1873 border-left: 1px solid #c6c6c6;
1882 border-left: 1px solid #c6c6c6;
1874 border-right: 1px solid #DDDDDD;
1883 border-right: 1px solid #DDDDDD;
1875 border-bottom: 1px solid #c6c6c6;
1884 border-bottom: 1px solid #c6c6c6;
1876 color: #515151;
1885 color: #515151;
1877 outline: none;
1886 outline: none;
1878 }
1887 }
1879
1888
1880 #content div.box div.form div.fields div.buttons input.ui-state-hover
1889 #content div.box div.form div.fields div.buttons input.ui-state-hover
1881 {
1890 {
1882 margin: 0;
1891 margin: 0;
1883 padding: 6px 12px 6px 12px;
1892 padding: 6px 12px 6px 12px;
1884 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
1893 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
1885 border-top: 1px solid #cccccc;
1894 border-top: 1px solid #cccccc;
1886 border-left: 1px solid #bebebe;
1895 border-left: 1px solid #bebebe;
1887 border-right: 1px solid #b1b1b1;
1896 border-right: 1px solid #b1b1b1;
1888 border-bottom: 1px solid #afafaf;
1897 border-bottom: 1px solid #afafaf;
1889 color: #515151;
1898 color: #515151;
1890 outline: none;
1899 outline: none;
1891 }
1900 }
1892
1901
1893 #content div.box div.form div.fields div.buttons div.highlight
1902 #content div.box div.form div.fields div.buttons div.highlight
1894 {
1903 {
1895 display: inline;
1904 display: inline;
1896 }
1905 }
1897
1906
1898 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-default
1907 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-default
1899 {
1908 {
1900 margin: 0;
1909 margin: 0;
1901 padding: 6px 12px 6px 12px;
1910 padding: 6px 12px 6px 12px;
1902 background: #4e85bb url("../images/colors/blue/button_highlight.png") repeat-x;
1911 background: #4e85bb url("../images/colors/blue/button_highlight.png") repeat-x;
1903 border-top: 1px solid #5c91a4;
1912 border-top: 1px solid #5c91a4;
1904 border-left: 1px solid #2a6f89;
1913 border-left: 1px solid #2a6f89;
1905 border-right: 1px solid #2b7089;
1914 border-right: 1px solid #2b7089;
1906 border-bottom: 1px solid #1a6480;
1915 border-bottom: 1px solid #1a6480;
1907 color: #FFFFFF;
1916 color: #FFFFFF;
1908 }
1917 }
1909
1918
1910 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-hover
1919 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-hover
1911 {
1920 {
1912 margin: 0;
1921 margin: 0;
1913 padding: 6px 12px 6px 12px;
1922 padding: 6px 12px 6px 12px;
1914 background: #46a0c1 url("../images/colors/blue/button_highlight_selected.png") repeat-x;
1923 background: #46a0c1 url("../images/colors/blue/button_highlight_selected.png") repeat-x;
1915 border-top: 1px solid #78acbf;
1924 border-top: 1px solid #78acbf;
1916 border-left: 1px solid #34819e;
1925 border-left: 1px solid #34819e;
1917 border-right: 1px solid #35829f;
1926 border-right: 1px solid #35829f;
1918 border-bottom: 1px solid #257897;
1927 border-bottom: 1px solid #257897;
1919 color: #FFFFFF;
1928 color: #FFFFFF;
1920 }
1929 }
1921
1930
1922 /* -----------------------------------------------------------
1931 /* -----------------------------------------------------------
1923 content -> right -> box / tables
1932 content -> right -> box / tables
1924 ----------------------------------------------------------- */
1933 ----------------------------------------------------------- */
1925
1934
1926 #content div.box div.table
1935 #content div.box div.table
1927 {
1936 {
1928 margin: 0;
1937 margin: 0;
1929 padding: 0 20px 10px 20px;
1938 padding: 0 20px 10px 20px;
1930 clear: both;
1939 clear: both;
1931 overflow: hidden;
1940 overflow: hidden;
1932 }
1941 }
1933
1942
1934 #content div.box table
1943 #content div.box table
1935 {
1944 {
1936 margin: 0;
1945 margin: 0;
1937 padding: 0;
1946 padding: 0;
1938 width: 100%;
1947 width: 100%;
1939 border-collapse: collapse;
1948 border-collapse: collapse;
1940 }
1949 }
1941
1950
1942 #content div.box table th
1951 #content div.box table th
1943 {
1952 {
1944 padding: 10px;
1953 padding: 10px;
1945 background: #eeeeee;
1954 background: #eeeeee;
1946 border-bottom: 1px solid #dddddd;
1955 border-bottom: 1px solid #dddddd;
1947 }
1956 }
1948
1957
1949 #content div.box table th.left
1958 #content div.box table th.left
1950 {
1959 {
1951 text-align: left;
1960 text-align: left;
1952 }
1961 }
1953
1962
1954 #content div.box table th.right
1963 #content div.box table th.right
1955 {
1964 {
1956 text-align: right;
1965 text-align: right;
1957 }
1966 }
1958
1967
1959 #content div.box table th.center
1968 #content div.box table th.center
1960 {
1969 {
1961 text-align: center;
1970 text-align: center;
1962 }
1971 }
1963
1972
1964 #content div.box table th.selected
1973 #content div.box table th.selected
1965 {
1974 {
1966 padding: 0;
1975 padding: 0;
1967 vertical-align: middle;
1976 vertical-align: middle;
1968 }
1977 }
1969
1978
1970 #content div.box table th.selected input
1979 #content div.box table th.selected input
1971 {
1980 {
1972 margin: 0;
1981 margin: 0;
1973 }
1982 }
1974
1983
1975 #content div.box table td
1984 #content div.box table td
1976 {
1985 {
1977 padding: 5px;
1986 padding: 5px;
1978 background: #ffffff;
1987 background: #ffffff;
1979 border-bottom: 1px solid #cdcdcd;
1988 border-bottom: 1px solid #cdcdcd;
1980 vertical-align:middle;
1989 vertical-align:middle;
1981 }
1990 }
1982
1991
1983 #content div.box table tr.selected td
1992 #content div.box table tr.selected td
1984 {
1993 {
1985 background: #FFFFCC;
1994 background: #FFFFCC;
1986 }
1995 }
1987
1996
1988 #content div.box table td.selected
1997 #content div.box table td.selected
1989 {
1998 {
1990 padding: 0;
1999 padding: 0;
1991 width: 3%;
2000 width: 3%;
1992 text-align: center;
2001 text-align: center;
1993 vertical-align: middle;
2002 vertical-align: middle;
1994 }
2003 }
1995
2004
1996 #content div.box table td.selected input
2005 #content div.box table td.selected input
1997 {
2006 {
1998 margin: 0;
2007 margin: 0;
1999 }
2008 }
2000
2009
2001 #content div.box table td.action
2010 #content div.box table td.action
2002 {
2011 {
2003 width: 45%;
2012 width: 45%;
2004 text-align: left;
2013 text-align: left;
2005 }
2014 }
2006
2015
2007 #content div.box table td.user
2016 #content div.box table td.user
2008 {
2017 {
2009 width: 10%;
2018 width: 10%;
2010 text-align: center;
2019 text-align: center;
2011 }
2020 }
2012
2021
2013 #content div.box table td.date
2022 #content div.box table td.date
2014 {
2023 {
2015 width: 33%;
2024 width: 33%;
2016 text-align: center;
2025 text-align: center;
2017 }
2026 }
2018
2027
2019 #content div.box table td.address
2028 #content div.box table td.address
2020 {
2029 {
2021 width: 10%;
2030 width: 10%;
2022 text-align: center;
2031 text-align: center;
2023 }
2032 }
2024
2033
2025 /* -----------------------------------------------------------
2034 /* -----------------------------------------------------------
2026 content -> right -> box / table action
2035 content -> right -> box / table action
2027 ----------------------------------------------------------- */
2036 ----------------------------------------------------------- */
2028
2037
2029 #content div.box div.action
2038 #content div.box div.action
2030 {
2039 {
2031 margin: 10px 0 0 0;
2040 margin: 10px 0 0 0;
2032 padding: 0;
2041 padding: 0;
2033 float: right;
2042 float: right;
2034 background: #FFFFFF;
2043 background: #FFFFFF;
2035 text-align: right;
2044 text-align: right;
2036 }
2045 }
2037
2046
2038 #content div.box div.action a:hover
2047 #content div.box div.action a:hover
2039 {
2048 {
2040 color: #000000;
2049 color: #000000;
2041 text-decoration: none;
2050 text-decoration: none;
2042 }
2051 }
2043
2052
2044 #content div.box div.action select
2053 #content div.box div.action select
2045 {
2054 {
2046 margin: 0;
2055 margin: 0;
2047 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
2056 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
2048 font-size: 11px;
2057 font-size: 11px;
2049 }
2058 }
2050
2059
2051 #content div.box div.action div.button
2060 #content div.box div.action div.button
2052 {
2061 {
2053 margin: 6px 0 0 0;
2062 margin: 6px 0 0 0;
2054 padding: 0;
2063 padding: 0;
2055 text-align: right;
2064 text-align: right;
2056 }
2065 }
2057
2066
2058 #content div.box div.action div.button input
2067 #content div.box div.action div.button input
2059 {
2068 {
2060 margin: 0;
2069 margin: 0;
2061 color: #000000;
2070 color: #000000;
2062 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
2071 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
2063 font-size: 11px;
2072 font-size: 11px;
2064 font-weight: bold;
2073 font-weight: bold;
2065 }
2074 }
2066
2075
2067 #content div.box div.action div.button input.ui-state-default
2076 #content div.box div.action div.button input.ui-state-default
2068 {
2077 {
2069 margin: 0;
2078 margin: 0;
2070 padding: 6px 12px 6px 12px;
2079 padding: 6px 12px 6px 12px;
2071 background: #e5e3e3 url("../images/button.png") repeat-x;
2080 background: #e5e3e3 url("../images/button.png") repeat-x;
2072 border-top: 1px solid #DDDDDD;
2081 border-top: 1px solid #DDDDDD;
2073 border-left: 1px solid #c6c6c6;
2082 border-left: 1px solid #c6c6c6;
2074 border-right: 1px solid #DDDDDD;
2083 border-right: 1px solid #DDDDDD;
2075 border-bottom: 1px solid #c6c6c6;
2084 border-bottom: 1px solid #c6c6c6;
2076 color: #515151;
2085 color: #515151;
2077 }
2086 }
2078
2087
2079 #content div.box div.action div.button input.ui-state-hover
2088 #content div.box div.action div.button input.ui-state-hover
2080 {
2089 {
2081 margin: 0;
2090 margin: 0;
2082 padding: 6px 12px 6px 12px;
2091 padding: 6px 12px 6px 12px;
2083 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
2092 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
2084 border-top: 1px solid #cccccc;
2093 border-top: 1px solid #cccccc;
2085 border-left: 1px solid #bebebe;
2094 border-left: 1px solid #bebebe;
2086 border-right: 1px solid #b1b1b1;
2095 border-right: 1px solid #b1b1b1;
2087 border-bottom: 1px solid #afafaf;
2096 border-bottom: 1px solid #afafaf;
2088 color: #515151;
2097 color: #515151;
2089 }
2098 }
2090
2099
2091 #content div.box div.action .ui-selectmenu
2100 #content div.box div.action .ui-selectmenu
2092 {
2101 {
2093 margin: 0;
2102 margin: 0;
2094 padding: 0;
2103 padding: 0;
2095 }
2104 }
2096
2105
2097 #content div.box div.action a.ui-selectmenu-focus
2106 #content div.box div.action a.ui-selectmenu-focus
2098 {
2107 {
2099 border: 1px solid #666666;
2108 border: 1px solid #666666;
2100 }
2109 }
2101
2110
2102 #content div.box div.action a.ui-selectmenu-focus span.ui-icon
2111 #content div.box div.action a.ui-selectmenu-focus span.ui-icon
2103 {
2112 {
2104 background-image: url(../images/ui/ui-icons_222222_256x240.png);
2113 background-image: url(../images/ui/ui-icons_222222_256x240.png);
2105 }
2114 }
2106
2115
2107 /* -----------------------------------------------------------
2116 /* -----------------------------------------------------------
2108 content -> right -> pagination
2117 content -> right -> pagination
2109 ----------------------------------------------------------- */
2118 ----------------------------------------------------------- */
2110
2119
2111 #content div.box div.pagination
2120 #content div.box div.pagination
2112 {
2121 {
2113 margin: 10px 0 0 0;
2122 margin: 10px 0 0 0;
2114 padding: 0;
2123 padding: 0;
2115 height: 1%;
2124 height: 1%;
2116 clear: both;
2125 clear: both;
2117 overflow: hidden;
2126 overflow: hidden;
2118 }
2127 }
2119
2128
2120 #content div.box div.pagination div.results
2129 #content div.box div.pagination div.results
2121 {
2130 {
2122 margin: 0;
2131 margin: 0;
2123 padding: 0;
2132 padding: 0;
2124 text-align: left;
2133 text-align: left;
2125 float: left
2134 float: left
2126 }
2135 }
2127
2136
2128 #content div.box div.pagination div.results span
2137 #content div.box div.pagination div.results span
2129 {
2138 {
2130 margin: 0;
2139 margin: 0;
2131 padding: 6px 8px 6px 8px;
2140 padding: 6px 8px 6px 8px;
2132 height: 1%;
2141 height: 1%;
2133 display: block;
2142 display: block;
2134 float: left;
2143 float: left;
2135 background: #ebebeb url("../images/pager.png") repeat-x;
2144 background: #ebebeb url("../images/pager.png") repeat-x;
2136 border-top: 1px solid #dedede;
2145 border-top: 1px solid #dedede;
2137 border-left: 1px solid #cfcfcf;
2146 border-left: 1px solid #cfcfcf;
2138 border-right: 1px solid #c4c4c4;
2147 border-right: 1px solid #c4c4c4;
2139 border-bottom: 1px solid #c4c4c4;
2148 border-bottom: 1px solid #c4c4c4;
2140 color: #4A4A4A;
2149 color: #4A4A4A;
2141 font-weight: bold;
2150 font-weight: bold;
2142 }
2151 }
2143
2152
2144 #content div.box div.pagination ul.pager
2153 #content div.box div.pagination ul.pager
2145 {
2154 {
2146 margin: 0;
2155 margin: 0;
2147 padding: 0;
2156 padding: 0;
2148 float: right;
2157 float: right;
2149 text-align: right;
2158 text-align: right;
2150 }
2159 }
2151
2160
2152 #content div.box div.pagination ul.pager li
2161 #content div.box div.pagination ul.pager li
2153 {
2162 {
2154 margin: 0 0 0 4px;
2163 margin: 0 0 0 4px;
2155 padding: 0;
2164 padding: 0;
2156 height: 1%;
2165 height: 1%;
2157 float: left;
2166 float: left;
2158 list-style: none;
2167 list-style: none;
2159 background: #ebebeb url("../images/pager.png") repeat-x;
2168 background: #ebebeb url("../images/pager.png") repeat-x;
2160 border-top: 1px solid #dedede;
2169 border-top: 1px solid #dedede;
2161 border-left: 1px solid #cfcfcf;
2170 border-left: 1px solid #cfcfcf;
2162 border-right: 1px solid #c4c4c4;
2171 border-right: 1px solid #c4c4c4;
2163 border-bottom: 1px solid #c4c4c4;
2172 border-bottom: 1px solid #c4c4c4;
2164 color: #4A4A4A;
2173 color: #4A4A4A;
2165 font-weight: bold;
2174 font-weight: bold;
2166 }
2175 }
2167
2176
2168 #content div.box div.pagination ul.pager li.separator
2177 #content div.box div.pagination ul.pager li.separator
2169 {
2178 {
2170 padding: 6px;
2179 padding: 6px;
2171 }
2180 }
2172
2181
2173 #content div.box div.pagination ul.pager li.current
2182 #content div.box div.pagination ul.pager li.current
2174 {
2183 {
2175 padding: 6px;
2184 padding: 6px;
2176 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2185 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2177 border-top: 1px solid #cccccc;
2186 border-top: 1px solid #cccccc;
2178 border-left: 1px solid #bebebe;
2187 border-left: 1px solid #bebebe;
2179 border-right: 1px solid #b1b1b1;
2188 border-right: 1px solid #b1b1b1;
2180 border-bottom: 1px solid #afafaf;
2189 border-bottom: 1px solid #afafaf;
2181 color: #515151;
2190 color: #515151;
2182 }
2191 }
2183
2192
2184 #content div.box div.pagination ul.pager li.disabled
2193 #content div.box div.pagination ul.pager li.disabled
2185 {
2194 {
2186 padding: 6px;
2195 padding: 6px;
2187 color: #B4B4B4;
2196 color: #B4B4B4;
2188 }
2197 }
2189
2198
2190 #content div.box div.pagination ul.pager li a
2199 #content div.box div.pagination ul.pager li a
2191 {
2200 {
2192 margin: 0;
2201 margin: 0;
2193 padding: 6px;
2202 padding: 6px;
2194 height: 1%;
2203 height: 1%;
2195 display: block;
2204 display: block;
2196 float: left;
2205 float: left;
2197 color: #515151;
2206 color: #515151;
2198 text-decoration: none;
2207 text-decoration: none;
2199 }
2208 }
2200
2209
2201 #content div.box div.pagination ul.pager li a:hover,
2210 #content div.box div.pagination ul.pager li a:hover,
2202 #content div.box div.pagination ul.pager li a:active
2211 #content div.box div.pagination ul.pager li a:active
2203 {
2212 {
2204 margin: -1px;
2213 margin: -1px;
2205 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2214 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2206 border-top: 1px solid #cccccc;
2215 border-top: 1px solid #cccccc;
2207 border-left: 1px solid #bebebe;
2216 border-left: 1px solid #bebebe;
2208 border-right: 1px solid #b1b1b1;
2217 border-right: 1px solid #b1b1b1;
2209 border-bottom: 1px solid #afafaf;
2218 border-bottom: 1px solid #afafaf;
2210 }
2219 }
2211
2220
2212 /* -----------------------------------------------------------
2221 /* -----------------------------------------------------------
2213 content -> webhelpers pagination
2222 content -> webhelpers pagination
2214 ----------------------------------------------------------- */
2223 ----------------------------------------------------------- */
2215
2224
2216 #content div.box div.pagination-wh
2225 #content div.box div.pagination-wh
2217 {
2226 {
2218 margin: 10px 0 0 0;
2227 margin: 10px 0 0 0;
2219 padding: 0;
2228 padding: 0;
2220 height: 1%;
2229 height: 1%;
2221 clear: both;
2230 clear: both;
2222 overflow: hidden;
2231 overflow: hidden;
2223 text-align: right;
2232 text-align: right;
2224 }
2233 }
2225
2234
2226 #content div.box div.pagination-wh div.results
2235 #content div.box div.pagination-wh div.results
2227 {
2236 {
2228 margin: 0;
2237 margin: 0;
2229 padding: 0;
2238 padding: 0;
2230 text-align: left;
2239 text-align: left;
2231 float: left
2240 float: left
2232 }
2241 }
2233
2242
2234 #content div.box div.pagination-wh div.results span
2243 #content div.box div.pagination-wh div.results span
2235 {
2244 {
2236 margin: 0;
2245 margin: 0;
2237 padding: 6px 8px 6px 8px;
2246 padding: 6px 8px 6px 8px;
2238 height: 1%;
2247 height: 1%;
2239 display: block;
2248 display: block;
2240 float: left;
2249 float: left;
2241 background: #ebebeb url("../images/pager.png") repeat-x;
2250 background: #ebebeb url("../images/pager.png") repeat-x;
2242 border-top: 1px solid #dedede;
2251 border-top: 1px solid #dedede;
2243 border-left: 1px solid #cfcfcf;
2252 border-left: 1px solid #cfcfcf;
2244 border-right: 1px solid #c4c4c4;
2253 border-right: 1px solid #c4c4c4;
2245 border-bottom: 1px solid #c4c4c4;
2254 border-bottom: 1px solid #c4c4c4;
2246 color: #4A4A4A;
2255 color: #4A4A4A;
2247 font-weight: bold;
2256 font-weight: bold;
2248 }
2257 }
2249
2258
2250 #content div.box div.pagination-left{
2259 #content div.box div.pagination-left{
2251 float:left;
2260 float:left;
2252 }
2261 }
2253 #content div.box div.pagination-right{
2262 #content div.box div.pagination-right{
2254 float:right;
2263 float:right;
2255 }
2264 }
2256
2265
2257 #content div.box div.pagination-wh a,
2266 #content div.box div.pagination-wh a,
2258 #content div.box div.pagination-wh span.pager_dotdot
2267 #content div.box div.pagination-wh span.pager_dotdot
2259 {
2268 {
2260 margin: 0 0 0 4px;
2269 margin: 0 0 0 4px;
2261 padding: 6px;
2270 padding: 6px;
2262 height: 1%;
2271 height: 1%;
2263 float: left;
2272 float: left;
2264 background: #ebebeb url("../images/pager.png") repeat-x;
2273 background: #ebebeb url("../images/pager.png") repeat-x;
2265 border-top: 1px solid #dedede;
2274 border-top: 1px solid #dedede;
2266 border-left: 1px solid #cfcfcf;
2275 border-left: 1px solid #cfcfcf;
2267 border-right: 1px solid #c4c4c4;
2276 border-right: 1px solid #c4c4c4;
2268 border-bottom: 1px solid #c4c4c4;
2277 border-bottom: 1px solid #c4c4c4;
2269 color: #4A4A4A;
2278 color: #4A4A4A;
2270 font-weight: bold;
2279 font-weight: bold;
2271 }
2280 }
2272 #content div.box div.pagination-wh span.pager_curpage
2281 #content div.box div.pagination-wh span.pager_curpage
2273 {
2282 {
2274 margin: 0 0 0 4px;
2283 margin: 0 0 0 4px;
2275 padding: 6px;
2284 padding: 6px;
2276 height: 1%;
2285 height: 1%;
2277 float: left;
2286 float: left;
2278 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2287 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2279 border-top: 1px solid #cccccc;
2288 border-top: 1px solid #cccccc;
2280 border-left: 1px solid #bebebe;
2289 border-left: 1px solid #bebebe;
2281 border-right: 1px solid #b1b1b1;
2290 border-right: 1px solid #b1b1b1;
2282 border-bottom: 1px solid #afafaf;
2291 border-bottom: 1px solid #afafaf;
2283 color: #515151;
2292 color: #515151;
2284 font-weight: bold;
2293 font-weight: bold;
2285 }
2294 }
2286
2295
2287 #content div.box div.pagination-wh a.disabled
2296 #content div.box div.pagination-wh a.disabled
2288 {
2297 {
2289 padding: 6px;
2298 padding: 6px;
2290 color: #B4B4B4;
2299 color: #B4B4B4;
2291 }
2300 }
2292
2301
2293
2302
2294 #content div.box div.pagination-wh a:hover,
2303 #content div.box div.pagination-wh a:hover,
2295 #content div.box div.pagination-wh a:active
2304 #content div.box div.pagination-wh a:active
2296 {
2305 {
2297 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2306 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2298 border-top: 1px solid #cccccc;
2307 border-top: 1px solid #cccccc;
2299 border-left: 1px solid #bebebe;
2308 border-left: 1px solid #bebebe;
2300 border-right: 1px solid #b1b1b1;
2309 border-right: 1px solid #b1b1b1;
2301 border-bottom: 1px solid #afafaf;
2310 border-bottom: 1px solid #afafaf;
2302 text-decoration: none;
2311 text-decoration: none;
2303 }
2312 }
2304
2313
2305
2314
2306 /* -----------------------------------------------------------
2315 /* -----------------------------------------------------------
2307 content -> right -> traffic chart
2316 content -> right -> traffic chart
2308 ----------------------------------------------------------- */
2317 ----------------------------------------------------------- */
2309
2318
2310 #content div.box div.traffic
2319 #content div.box div.traffic
2311 {
2320 {
2312 margin: 0;
2321 margin: 0;
2313 padding: 0 20px 10px 20px;
2322 padding: 0 20px 10px 20px;
2314 clear: both;
2323 clear: both;
2315 overflow: hidden;
2324 overflow: hidden;
2316 }
2325 }
2317
2326
2318 #content div.box div.traffic div.legend
2327 #content div.box div.traffic div.legend
2319 {
2328 {
2320 margin: 0 0 10px 0;
2329 margin: 0 0 10px 0;
2321 padding: 0 0 10px 0;
2330 padding: 0 0 10px 0;
2322 clear: both;
2331 clear: both;
2323 overflow: hidden;
2332 overflow: hidden;
2324 border-bottom: 1px solid #dddddd;
2333 border-bottom: 1px solid #dddddd;
2325 }
2334 }
2326
2335
2327 #content div.box div.traffic div.legend h6
2336 #content div.box div.traffic div.legend h6
2328 {
2337 {
2329 margin: 0;
2338 margin: 0;
2330 padding: 0;
2339 padding: 0;
2331 float: left;
2340 float: left;
2332 border: none;
2341 border: none;
2333 }
2342 }
2334
2343
2335 #content div.box div.traffic div.legend ul
2344 #content div.box div.traffic div.legend ul
2336 {
2345 {
2337 margin: 0;
2346 margin: 0;
2338 padding: 0;
2347 padding: 0;
2339 float: right;
2348 float: right;
2340 }
2349 }
2341
2350
2342 #content div.box div.traffic div.legend li
2351 #content div.box div.traffic div.legend li
2343 {
2352 {
2344 margin: 0;
2353 margin: 0;
2345 padding: 0 8px 0 4px;
2354 padding: 0 8px 0 4px;
2346 list-style: none;
2355 list-style: none;
2347 float: left;
2356 float: left;
2348 font-size: 11px;
2357 font-size: 11px;
2349 }
2358 }
2350
2359
2351 #content div.box div.traffic div.legend li.visits
2360 #content div.box div.traffic div.legend li.visits
2352 {
2361 {
2353 border-left: 12px solid #edc240;
2362 border-left: 12px solid #edc240;
2354 }
2363 }
2355
2364
2356 #content div.box div.traffic div.legend li.pageviews
2365 #content div.box div.traffic div.legend li.pageviews
2357 {
2366 {
2358 border-left: 12px solid #afd8f8;
2367 border-left: 12px solid #afd8f8;
2359 }
2368 }
2360
2369
2361 #content div.box div.traffic table
2370 #content div.box div.traffic table
2362 {
2371 {
2363 width: auto;
2372 width: auto;
2364 }
2373 }
2365
2374
2366 #content div.box div.traffic table td
2375 #content div.box div.traffic table td
2367 {
2376 {
2368 padding: 2px 3px 3px 3px;
2377 padding: 2px 3px 3px 3px;
2369 background: transparent;
2378 background: transparent;
2370 border: none;
2379 border: none;
2371 }
2380 }
2372
2381
2373 #content div.box div.traffic table td.legendLabel
2382 #content div.box div.traffic table td.legendLabel
2374 {
2383 {
2375 padding: 0 3px 2px 3px;
2384 padding: 0 3px 2px 3px;
2376 }
2385 }
2377
2386
2378 /* -----------------------------------------------------------
2387 /* -----------------------------------------------------------
2379 footer
2388 footer
2380 ----------------------------------------------------------- */
2389 ----------------------------------------------------------- */
2381
2390
2382 #footer
2391 #footer
2383 {
2392 {
2384 margin: 0;
2393 margin: 0;
2385 padding: 5px 0 5px 0;
2394 padding: 5px 0 5px 0;
2386 clear: both;
2395 clear: both;
2387 overflow: hidden;
2396 overflow: hidden;
2388 background: #2a2a2a;
2397 background: #2a2a2a;
2389 text-align: right;
2398 text-align: right;
2390 }
2399 }
2391
2400
2392 #footer p
2401 #footer p
2393 {
2402 {
2394 margin: 0 80px 0 80px;
2403 margin: 0 80px 0 80px;
2395 padding: 10px 0 10px 0;
2404 padding: 10px 0 10px 0;
2396 color: #ffffff;
2405 color: #ffffff;
2397 }
2406 }
2398
2407
2399 /* -----------------------------------------------------------
2408 /* -----------------------------------------------------------
2400 login
2409 login
2401 ----------------------------------------------------------- */
2410 ----------------------------------------------------------- */
2402
2411
2403 #login
2412 #login
2404 {
2413 {
2405 margin: 10% auto 0 auto;
2414 margin: 10% auto 0 auto;
2406 padding: 0;
2415 padding: 0;
2407 width: 420px;
2416 width: 420px;
2408 }
2417 }
2409
2418
2410 /* -----------------------------------------------------------
2419 /* -----------------------------------------------------------
2411 login -> colors
2420 login -> colors
2412 ----------------------------------------------------------- */
2421 ----------------------------------------------------------- */
2413
2422
2414 #login div.color
2423 #login div.color
2415 {
2424 {
2416 margin: 10px auto 0 auto;
2425 margin: 10px auto 0 auto;
2417 padding: 3px 3px 3px 0;
2426 padding: 3px 3px 3px 0;
2418 clear: both;
2427 clear: both;
2419 overflow: hidden;
2428 overflow: hidden;
2420 background: #FFFFFF;
2429 background: #FFFFFF;
2421 }
2430 }
2422
2431
2423 #login div.color a
2432 #login div.color a
2424 {
2433 {
2425 margin: 0 0 0 3px;
2434 margin: 0 0 0 3px;
2426 padding: 0;
2435 padding: 0;
2427 width: 20px;
2436 width: 20px;
2428 height: 20px;
2437 height: 20px;
2429 display: block;
2438 display: block;
2430 float: left;
2439 float: left;
2431 }
2440 }
2432
2441
2433 /* -----------------------------------------------------------
2442 /* -----------------------------------------------------------
2434 login -> title
2443 login -> title
2435 ----------------------------------------------------------- */
2444 ----------------------------------------------------------- */
2436
2445
2437 #login div.title
2446 #login div.title
2438 {
2447 {
2439 margin: 0 auto;
2448 margin: 0 auto;
2440 padding: 0;
2449 padding: 0;
2441 width: 420px;
2450 width: 420px;
2442 clear: both;
2451 clear: both;
2443 overflow: hidden;
2452 overflow: hidden;
2444 position: relative;
2453 position: relative;
2445 background: #003367 url("../images/colors/blue/header_inner.png") repeat-x;
2454 background: #003367 url("../images/colors/blue/header_inner.png") repeat-x;
2446 }
2455 }
2447
2456
2448 #login div.title h5
2457 #login div.title h5
2449 {
2458 {
2450 margin: 10px;
2459 margin: 10px;
2451 padding: 0;
2460 padding: 0;
2452 color: #ffffff;
2461 color: #ffffff;
2453 }
2462 }
2454
2463
2455 /* -----------------------------------------------------------
2464 /* -----------------------------------------------------------
2456 login -> title / corners
2465 login -> title / corners
2457 ----------------------------------------------------------- */
2466 ----------------------------------------------------------- */
2458
2467
2459 #login div.title div.corner
2468 #login div.title div.corner
2460 {
2469 {
2461 height: 6px;
2470 height: 6px;
2462 width: 6px;
2471 width: 6px;
2463 position: absolute;
2472 position: absolute;
2464 background: url("../images/colors/blue/login_corners.png") no-repeat;
2473 background: url("../images/colors/blue/login_corners.png") no-repeat;
2465 }
2474 }
2466
2475
2467 #login div.title div.tl
2476 #login div.title div.tl
2468 {
2477 {
2469 top: 0;
2478 top: 0;
2470 left: 0;
2479 left: 0;
2471 background-position: 0 0;
2480 background-position: 0 0;
2472 }
2481 }
2473
2482
2474 #login div.title div.tr
2483 #login div.title div.tr
2475 {
2484 {
2476 top: 0;
2485 top: 0;
2477 right: 0;
2486 right: 0;
2478 background-position: -6px 0;
2487 background-position: -6px 0;
2479 }
2488 }
2480
2489
2481 #login div.inner
2490 #login div.inner
2482 {
2491 {
2483 margin: 0 auto;
2492 margin: 0 auto;
2484 padding: 20px;
2493 padding: 20px;
2485 width: 380px;
2494 width: 380px;
2486 background: #FFFFFF url("../images/login.png") no-repeat top left;
2495 background: #FFFFFF url("../images/login.png") no-repeat top left;
2487 border-top: none;
2496 border-top: none;
2488 border-bottom: none;
2497 border-bottom: none;
2489 }
2498 }
2490
2499
2491 /* -----------------------------------------------------------
2500 /* -----------------------------------------------------------
2492 login -> form
2501 login -> form
2493 ----------------------------------------------------------- */
2502 ----------------------------------------------------------- */
2494
2503
2495 #login div.form
2504 #login div.form
2496 {
2505 {
2497 margin: 0;
2506 margin: 0;
2498 padding: 0;
2507 padding: 0;
2499 clear: both;
2508 clear: both;
2500 overflow: hidden;
2509 overflow: hidden;
2501 }
2510 }
2502
2511
2503 #login div.form div.fields
2512 #login div.form div.fields
2504 {
2513 {
2505 margin: 0;
2514 margin: 0;
2506 padding: 0;
2515 padding: 0;
2507 clear: both;
2516 clear: both;
2508 overflow: hidden;
2517 overflow: hidden;
2509 }
2518 }
2510
2519
2511 #login div.form div.fields div.field
2520 #login div.form div.fields div.field
2512 {
2521 {
2513 margin: 0;
2522 margin: 0;
2514 padding: 0 0 10px 0;
2523 padding: 0 0 10px 0;
2515 clear: both;
2524 clear: both;
2516 overflow: hidden;
2525 overflow: hidden;
2517 }
2526 }
2518
2527
2519 #login div.form div.fields div.field span.error-message
2528 #login div.form div.fields div.field span.error-message
2520 {
2529 {
2521 margin: 8px 0 0 0;
2530 margin: 8px 0 0 0;
2522 padding: 0;
2531 padding: 0;
2523 height: 1%;
2532 height: 1%;
2524 display: block;
2533 display: block;
2525 color: #FF0000;
2534 color: #FF0000;
2526 }
2535 }
2527
2536
2528 #login div.form div.fields div.field div.label
2537 #login div.form div.fields div.field div.label
2529 {
2538 {
2530 margin: 2px 10px 0 0;
2539 margin: 2px 10px 0 0;
2531 padding: 5px 0 0 5px;
2540 padding: 5px 0 0 5px;
2532 width: 173px;
2541 width: 173px;
2533 float: left;
2542 float: left;
2534 text-align: right;
2543 text-align: right;
2535 }
2544 }
2536
2545
2537 #login div.form div.fields div.field div.label label
2546 #login div.form div.fields div.field div.label label
2538 {
2547 {
2539 color: #000000;
2548 color: #000000;
2540 font-weight: bold;
2549 font-weight: bold;
2541 }
2550 }
2542
2551
2543 #login div.form div.fields div.field div.label span
2552 #login div.form div.fields div.field div.label span
2544 {
2553 {
2545 margin: 0;
2554 margin: 0;
2546 padding: 2px 0 0 0;
2555 padding: 2px 0 0 0;
2547 height: 1%;
2556 height: 1%;
2548 display: block;
2557 display: block;
2549 color: #363636;
2558 color: #363636;
2550 }
2559 }
2551
2560
2552 #login div.form div.fields div.field div.input
2561 #login div.form div.fields div.field div.input
2553 {
2562 {
2554 margin: 0;
2563 margin: 0;
2555 padding: 0;
2564 padding: 0;
2556 float: left;
2565 float: left;
2557 }
2566 }
2558
2567
2559 #login div.form div.fields div.field div.input input
2568 #login div.form div.fields div.field div.input input
2560 {
2569 {
2561 margin: 0;
2570 margin: 0;
2562 padding: 7px 7px 6px 7px;
2571 padding: 7px 7px 6px 7px;
2563 width: 176px;
2572 width: 176px;
2564 background: #FFFFFF;
2573 background: #FFFFFF;
2565 border-top: 1px solid #b3b3b3;
2574 border-top: 1px solid #b3b3b3;
2566 border-left: 1px solid #b3b3b3;
2575 border-left: 1px solid #b3b3b3;
2567 border-right: 1px solid #eaeaea;
2576 border-right: 1px solid #eaeaea;
2568 border-bottom: 1px solid #eaeaea;
2577 border-bottom: 1px solid #eaeaea;
2569 color: #000000;
2578 color: #000000;
2570 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
2579 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
2571 font-size: 11px;
2580 font-size: 11px;
2572 }
2581 }
2573
2582
2574 #login div.form div.fields div.field div.input input.error
2583 #login div.form div.fields div.field div.input input.error
2575 {
2584 {
2576 background: #FBE3E4;
2585 background: #FBE3E4;
2577 border-top: 1px solid #e1b2b3;
2586 border-top: 1px solid #e1b2b3;
2578 border-left: 1px solid #e1b2b3;
2587 border-left: 1px solid #e1b2b3;
2579 border-right: 1px solid #FBC2C4;
2588 border-right: 1px solid #FBC2C4;
2580 border-bottom: 1px solid #FBC2C4;
2589 border-bottom: 1px solid #FBC2C4;
2581 }
2590 }
2582
2591
2583 #login div.form div.fields div.field div.input input.success
2592 #login div.form div.fields div.field div.input input.success
2584 {
2593 {
2585 background: #E6EFC2;
2594 background: #E6EFC2;
2586 border-top: 1px solid #cebb98;
2595 border-top: 1px solid #cebb98;
2587 border-left: 1px solid #cebb98;
2596 border-left: 1px solid #cebb98;
2588 border-right: 1px solid #c6d880;
2597 border-right: 1px solid #c6d880;
2589 border-bottom: 1px solid #c6d880;
2598 border-bottom: 1px solid #c6d880;
2590 }
2599 }
2591
2600
2592 #login div.form div.fields div.field div.input div.link
2601 #login div.form div.fields div.field div.input div.link
2593 {
2602 {
2594 margin: 6px 0 0 0;
2603 margin: 6px 0 0 0;
2595 padding: 0;
2604 padding: 0;
2596 text-align: right;
2605 text-align: right;
2597 }
2606 }
2598
2607
2599 #login div.form div.fields div.field div.checkbox
2608 #login div.form div.fields div.field div.checkbox
2600 {
2609 {
2601 margin: 0 0 0 184px;
2610 margin: 0 0 0 184px;
2602 padding: 0;
2611 padding: 0;
2603 }
2612 }
2604
2613
2605 #login div.form div.fields div.field div.checkbox label
2614 #login div.form div.fields div.field div.checkbox label
2606 {
2615 {
2607 color: #565656;
2616 color: #565656;
2608 font-weight: bold;
2617 font-weight: bold;
2609 }
2618 }
2610
2619
2611 #login div.form div.fields div.buttons
2620 #login div.form div.fields div.buttons
2612 {
2621 {
2613 margin: 0;
2622 margin: 0;
2614 padding: 10px 0 0 0;
2623 padding: 10px 0 0 0;
2615 clear: both;
2624 clear: both;
2616 overflow: hidden;
2625 overflow: hidden;
2617 border-top: 1px solid #DDDDDD;
2626 border-top: 1px solid #DDDDDD;
2618 text-align: right;
2627 text-align: right;
2619 }
2628 }
2620
2629
2621 #login div.form div.fields div.buttons input
2630 #login div.form div.fields div.buttons input
2622 {
2631 {
2623 margin: 0;
2632 margin: 0;
2624 color: #000000;
2633 color: #000000;
2625 font-size: 1.0em;
2634 font-size: 1.0em;
2626 font-weight: bold;
2635 font-weight: bold;
2627 font-family: Verdana, Helvetica, Sans-Serif;
2636 font-family: Verdana, Helvetica, Sans-Serif;
2628 }
2637 }
2629
2638
2630 #login div.form div.fields div.buttons input.ui-state-default
2639 #login div.form div.fields div.buttons input.ui-state-default
2631 {
2640 {
2632 margin: 0;
2641 margin: 0;
2633 padding: 6px 12px 6px 12px;
2642 padding: 6px 12px 6px 12px;
2634 background: #e5e3e3 url("../images/button.png") repeat-x;
2643 background: #e5e3e3 url("../images/button.png") repeat-x;
2635 border-top: 1px solid #DDDDDD;
2644 border-top: 1px solid #DDDDDD;
2636 border-left: 1px solid #c6c6c6;
2645 border-left: 1px solid #c6c6c6;
2637 border-right: 1px solid #DDDDDD;
2646 border-right: 1px solid #DDDDDD;
2638 border-bottom: 1px solid #c6c6c6;
2647 border-bottom: 1px solid #c6c6c6;
2639 color: #515151;
2648 color: #515151;
2640 }
2649 }
2641
2650
2642 #login div.form div.fields div.buttons input.ui-state-hover
2651 #login div.form div.fields div.buttons input.ui-state-hover
2643 {
2652 {
2644 margin: 0;
2653 margin: 0;
2645 padding: 6px 12px 6px 12px;
2654 padding: 6px 12px 6px 12px;
2646 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
2655 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
2647 border-top: 1px solid #cccccc;
2656 border-top: 1px solid #cccccc;
2648 border-left: 1px solid #bebebe;
2657 border-left: 1px solid #bebebe;
2649 border-right: 1px solid #b1b1b1;
2658 border-right: 1px solid #b1b1b1;
2650 border-bottom: 1px solid #afafaf;
2659 border-bottom: 1px solid #afafaf;
2651 color: #515151;
2660 color: #515151;
2652 }
2661 }
2653
2662
2654 /* -----------------------------------------------------------
2663 /* -----------------------------------------------------------
2655 login -> links
2664 login -> links
2656 ----------------------------------------------------------- */
2665 ----------------------------------------------------------- */
2657
2666
2658 #login div.form div.links
2667 #login div.form div.links
2659 {
2668 {
2660 margin: 10px 0 0 0;
2669 margin: 10px 0 0 0;
2661 padding: 0 0 2px 0;
2670 padding: 0 0 2px 0;
2662 clear: both;
2671 clear: both;
2663 overflow: hidden;
2672 overflow: hidden;
2664 }
2673 }
2665
2674
2666 /* -----------------------------------------------------------
2675 /* -----------------------------------------------------------
2667 register
2676 register
2668 ----------------------------------------------------------- */
2677 ----------------------------------------------------------- */
2669
2678
2670 #register
2679 #register
2671 {
2680 {
2672 margin: 10% auto 0 auto;
2681 margin: 10% auto 0 auto;
2673 padding: 0;
2682 padding: 0;
2674 width: 420px;
2683 width: 420px;
2675 }
2684 }
2676
2685
2677 /* -----------------------------------------------------------
2686 /* -----------------------------------------------------------
2678 register -> colors
2687 register -> colors
2679 ----------------------------------------------------------- */
2688 ----------------------------------------------------------- */
2680
2689
2681 #register div.color
2690 #register div.color
2682 {
2691 {
2683 margin: 10px auto 0 auto;
2692 margin: 10px auto 0 auto;
2684 padding: 3px 3px 3px 0;
2693 padding: 3px 3px 3px 0;
2685 clear: both;
2694 clear: both;
2686 overflow: hidden;
2695 overflow: hidden;
2687 background: #FFFFFF;
2696 background: #FFFFFF;
2688 }
2697 }
2689
2698
2690 #register div.color a
2699 #register div.color a
2691 {
2700 {
2692 margin: 0 0 0 3px;
2701 margin: 0 0 0 3px;
2693 padding: 0;
2702 padding: 0;
2694 width: 20px;
2703 width: 20px;
2695 height: 20px;
2704 height: 20px;
2696 display: block;
2705 display: block;
2697 float: left;
2706 float: left;
2698 }
2707 }
2699
2708
2700 /* -----------------------------------------------------------
2709 /* -----------------------------------------------------------
2701 register -> title
2710 register -> title
2702 ----------------------------------------------------------- */
2711 ----------------------------------------------------------- */
2703
2712
2704 #register div.title
2713 #register div.title
2705 {
2714 {
2706 margin: 0 auto;
2715 margin: 0 auto;
2707 padding: 0;
2716 padding: 0;
2708 width: 420px;
2717 width: 420px;
2709 clear: both;
2718 clear: both;
2710 overflow: hidden;
2719 overflow: hidden;
2711 position: relative;
2720 position: relative;
2712 background: #003367 url("../images/colors/blue/header_inner.png") repeat-x;
2721 background: #003367 url("../images/colors/blue/header_inner.png") repeat-x;
2713 }
2722 }
2714
2723
2715 #register div.title h5
2724 #register div.title h5
2716 {
2725 {
2717 margin: 10px;
2726 margin: 10px;
2718 padding: 0;
2727 padding: 0;
2719 color: #ffffff;
2728 color: #ffffff;
2720 }
2729 }
2721
2730
2722 /* -----------------------------------------------------------
2731 /* -----------------------------------------------------------
2723 register -> inner
2732 register -> inner
2724 ----------------------------------------------------------- */
2733 ----------------------------------------------------------- */
2725 #register div.title div.corner
2734 #register div.title div.corner
2726 {
2735 {
2727 height: 6px;
2736 height: 6px;
2728 width: 6px;
2737 width: 6px;
2729 position: absolute;
2738 position: absolute;
2730 background: url("../images/colors/blue/login_corners.png") no-repeat;
2739 background: url("../images/colors/blue/login_corners.png") no-repeat;
2731 }
2740 }
2732
2741
2733 #register div.title div.tl
2742 #register div.title div.tl
2734 {
2743 {
2735 top: 0;
2744 top: 0;
2736 left: 0;
2745 left: 0;
2737 background-position: 0 0;
2746 background-position: 0 0;
2738 }
2747 }
2739
2748
2740 #register div.title div.tr
2749 #register div.title div.tr
2741 {
2750 {
2742 top: 0;
2751 top: 0;
2743 right: 0;
2752 right: 0;
2744 background-position: -6px 0;
2753 background-position: -6px 0;
2745
2754
2746 }
2755 }
2747 #register div.inner
2756 #register div.inner
2748 {
2757 {
2749 margin: 0 auto;
2758 margin: 0 auto;
2750 padding: 20px;
2759 padding: 20px;
2751 width: 380px;
2760 width: 380px;
2752 background: #FFFFFF;
2761 background: #FFFFFF;
2753 border-top: none;
2762 border-top: none;
2754 border-bottom: none;
2763 border-bottom: none;
2755 }
2764 }
2756
2765
2757 /* -----------------------------------------------------------
2766 /* -----------------------------------------------------------
2758 register -> form
2767 register -> form
2759 ----------------------------------------------------------- */
2768 ----------------------------------------------------------- */
2760
2769
2761 #register div.form
2770 #register div.form
2762 {
2771 {
2763 margin: 0;
2772 margin: 0;
2764 padding: 0;
2773 padding: 0;
2765 clear: both;
2774 clear: both;
2766 overflow: hidden;
2775 overflow: hidden;
2767 }
2776 }
2768
2777
2769 #register div.form div.fields
2778 #register div.form div.fields
2770 {
2779 {
2771 margin: 0;
2780 margin: 0;
2772 padding: 0;
2781 padding: 0;
2773 clear: both;
2782 clear: both;
2774 overflow: hidden;
2783 overflow: hidden;
2775 }
2784 }
2776
2785
2777 #register div.form div.fields div.field
2786 #register div.form div.fields div.field
2778 {
2787 {
2779 margin: 0;
2788 margin: 0;
2780 padding: 0 0 10px 0;
2789 padding: 0 0 10px 0;
2781 clear: both;
2790 clear: both;
2782 overflow: hidden;
2791 overflow: hidden;
2783 }
2792 }
2784
2793
2785 #register div.form div.fields div.field span.error-message
2794 #register div.form div.fields div.field span.error-message
2786 {
2795 {
2787 margin: 8px 0 0 0;
2796 margin: 8px 0 0 0;
2788 padding: 0;
2797 padding: 0;
2789 height: 1%;
2798 height: 1%;
2790 display: block;
2799 display: block;
2791 color: #FF0000;
2800 color: #FF0000;
2792 }
2801 }
2793
2802
2794 #register div.form div.fields div.field div.label
2803 #register div.form div.fields div.field div.label
2795 {
2804 {
2796 margin: 2px 10px 0 0;
2805 margin: 2px 10px 0 0;
2797 padding: 5px 0 0 5px;
2806 padding: 5px 0 0 5px;
2798 width: 100px;
2807 width: 100px;
2799 float: left;
2808 float: left;
2800 text-align: right;
2809 text-align: right;
2801 }
2810 }
2802
2811
2803 #register div.form div.fields div.field div.label label
2812 #register div.form div.fields div.field div.label label
2804 {
2813 {
2805 color: #000000;
2814 color: #000000;
2806 font-weight: bold;
2815 font-weight: bold;
2807 }
2816 }
2808
2817
2809 #register div.form div.fields div.field div.label span
2818 #register div.form div.fields div.field div.label span
2810 {
2819 {
2811 margin: 0;
2820 margin: 0;
2812 padding: 2px 0 0 0;
2821 padding: 2px 0 0 0;
2813 height: 1%;
2822 height: 1%;
2814 display: block;
2823 display: block;
2815 color: #363636;
2824 color: #363636;
2816 }
2825 }
2817
2826
2818 #register div.form div.fields div.field div.input
2827 #register div.form div.fields div.field div.input
2819 {
2828 {
2820 margin: 0;
2829 margin: 0;
2821 padding: 0;
2830 padding: 0;
2822 float: left;
2831 float: left;
2823 }
2832 }
2824
2833
2825 #register div.form div.fields div.field div.input input
2834 #register div.form div.fields div.field div.input input
2826 {
2835 {
2827 margin: 0;
2836 margin: 0;
2828 padding: 7px 7px 6px 7px;
2837 padding: 7px 7px 6px 7px;
2829 width: 245px;
2838 width: 245px;
2830 background: #FFFFFF;
2839 background: #FFFFFF;
2831 border-top: 1px solid #b3b3b3;
2840 border-top: 1px solid #b3b3b3;
2832 border-left: 1px solid #b3b3b3;
2841 border-left: 1px solid #b3b3b3;
2833 border-right: 1px solid #eaeaea;
2842 border-right: 1px solid #eaeaea;
2834 border-bottom: 1px solid #eaeaea;
2843 border-bottom: 1px solid #eaeaea;
2835 color: #000000;
2844 color: #000000;
2836 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
2845 font-family: Lucida Grande, Verdana, Lucida Sans Regular, Lucida Sans Unicode, Arial, sans-serif;
2837 font-size: 11px;
2846 font-size: 11px;
2838 }
2847 }
2839
2848
2840 #register div.form div.fields div.field div.input input.error
2849 #register div.form div.fields div.field div.input input.error
2841 {
2850 {
2842 background: #FBE3E4;
2851 background: #FBE3E4;
2843 border-top: 1px solid #e1b2b3;
2852 border-top: 1px solid #e1b2b3;
2844 border-left: 1px solid #e1b2b3;
2853 border-left: 1px solid #e1b2b3;
2845 border-right: 1px solid #FBC2C4;
2854 border-right: 1px solid #FBC2C4;
2846 border-bottom: 1px solid #FBC2C4;
2855 border-bottom: 1px solid #FBC2C4;
2847 }
2856 }
2848
2857
2849 #register div.form div.fields div.field div.input input.success
2858 #register div.form div.fields div.field div.input input.success
2850 {
2859 {
2851 background: #E6EFC2;
2860 background: #E6EFC2;
2852 border-top: 1px solid #cebb98;
2861 border-top: 1px solid #cebb98;
2853 border-left: 1px solid #cebb98;
2862 border-left: 1px solid #cebb98;
2854 border-right: 1px solid #c6d880;
2863 border-right: 1px solid #c6d880;
2855 border-bottom: 1px solid #c6d880;
2864 border-bottom: 1px solid #c6d880;
2856 }
2865 }
2857
2866
2858 #register div.form div.fields div.field div.input div.link
2867 #register div.form div.fields div.field div.input div.link
2859 {
2868 {
2860 margin: 6px 0 0 0;
2869 margin: 6px 0 0 0;
2861 padding: 0;
2870 padding: 0;
2862 text-align: right;
2871 text-align: right;
2863 }
2872 }
2864
2873
2865 #register div.form div.fields div.field div.checkbox
2874 #register div.form div.fields div.field div.checkbox
2866 {
2875 {
2867 margin: 0 0 0 184px;
2876 margin: 0 0 0 184px;
2868 padding: 0;
2877 padding: 0;
2869 }
2878 }
2870
2879
2871 #register div.form div.fields div.field div.checkbox label
2880 #register div.form div.fields div.field div.checkbox label
2872 {
2881 {
2873 color: #565656;
2882 color: #565656;
2874 font-weight: bold;
2883 font-weight: bold;
2875 }
2884 }
2876
2885
2877 #register div.form div.fields div.buttons
2886 #register div.form div.fields div.buttons
2878 {
2887 {
2879 margin: 0;
2888 margin: 0;
2880 padding: 10px 0 0 114px;
2889 padding: 10px 0 0 114px;
2881 clear: both;
2890 clear: both;
2882 overflow: hidden;
2891 overflow: hidden;
2883 border-top: 1px solid #DDDDDD;
2892 border-top: 1px solid #DDDDDD;
2884 text-align: left;
2893 text-align: left;
2885 }
2894 }
2886
2895
2887 #register div.form div.fields div.buttons input
2896 #register div.form div.fields div.buttons input
2888 {
2897 {
2889 margin: 0;
2898 margin: 0;
2890 color: #000000;
2899 color: #000000;
2891 font-size: 1.0em;
2900 font-size: 1.0em;
2892 font-weight: bold;
2901 font-weight: bold;
2893 font-family: Verdana, Helvetica, Sans-Serif;
2902 font-family: Verdana, Helvetica, Sans-Serif;
2894 }
2903 }
2895
2904
2896 #register div.form div.fields div.buttons input.ui-state-default
2905 #register div.form div.fields div.buttons input.ui-state-default
2897 {
2906 {
2898 margin: 0;
2907 margin: 0;
2899 padding: 6px 12px 6px 12px;
2908 padding: 6px 12px 6px 12px;
2900 background: #e5e3e3 url("../images/button.png") repeat-x;
2909 background: #e5e3e3 url("../images/button.png") repeat-x;
2901 border-top: 1px solid #DDDDDD;
2910 border-top: 1px solid #DDDDDD;
2902 border-left: 1px solid #c6c6c6;
2911 border-left: 1px solid #c6c6c6;
2903 border-right: 1px solid #DDDDDD;
2912 border-right: 1px solid #DDDDDD;
2904 border-bottom: 1px solid #c6c6c6;
2913 border-bottom: 1px solid #c6c6c6;
2905 color: #515151;
2914 color: #515151;
2906 }
2915 }
2907 #register div.form div.fields div.buttons div.highlight input.ui-state-default
2916 #register div.form div.fields div.buttons div.highlight input.ui-state-default
2908 {
2917 {
2909 background:url("../images/colors/blue/button_highlight.png") repeat-x scroll 0 0 #4E85BB;
2918 background:url("../images/colors/blue/button_highlight.png") repeat-x scroll 0 0 #4E85BB;
2910 border-color:#5C91A4 #2B7089 #1A6480 #2A6F89;
2919 border-color:#5C91A4 #2B7089 #1A6480 #2A6F89;
2911 border-style:solid;
2920 border-style:solid;
2912 border-width:1px;
2921 border-width:1px;
2913 color:#FFFFFF;
2922 color:#FFFFFF;
2914 }
2923 }
2915
2924
2916
2925
2917
2926
2918 #register div.form div.fields div.buttons input.ui-state-hover
2927 #register div.form div.fields div.buttons input.ui-state-hover
2919 {
2928 {
2920 margin: 0;
2929 margin: 0;
2921 padding: 6px 12px 6px 12px;
2930 padding: 6px 12px 6px 12px;
2922 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
2931 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
2923 border-top: 1px solid #cccccc;
2932 border-top: 1px solid #cccccc;
2924 border-left: 1px solid #bebebe;
2933 border-left: 1px solid #bebebe;
2925 border-right: 1px solid #b1b1b1;
2934 border-right: 1px solid #b1b1b1;
2926 border-bottom: 1px solid #afafaf;
2935 border-bottom: 1px solid #afafaf;
2927 color: #515151;
2936 color: #515151;
2928 }
2937 }
2929
2938
2930 #register div.form div.activation_msg {
2939 #register div.form div.activation_msg {
2931 padding-top:4px;
2940 padding-top:4px;
2932 padding-bottom:4px;
2941 padding-bottom:4px;
2933
2942
2934 }
2943 }
2935
2944
2936 /* -----------------------------------------------------------
2945 /* -----------------------------------------------------------
2937 SUMMARY
2946 SUMMARY
2938 ----------------------------------------------------------- */
2947 ----------------------------------------------------------- */
2939
2948
2940 #clone_url{
2949 #clone_url{
2941 border: none;
2950 border: none;
2942 }
2951 }
2943 /* -----------------------------------------------------------
2952 /* -----------------------------------------------------------
2944 FILES
2953 FILES
2945 ----------------------------------------------------------- */
2954 ----------------------------------------------------------- */
2946
2955
2947 h3.files_location{
2956 h3.files_location{
2948 font-size: 1.8em;
2957 font-size: 1.8em;
2949 font-weight: bold;
2958 font-weight: bold;
2950 margin: 10px 0 !important;
2959 margin: 10px 0 !important;
2951 border-bottom: none !important;
2960 border-bottom: none !important;
2952 }
2961 }
2953
2962
2954 #files_data.dl{
2963 #files_data.dl{
2955
2964
2956
2965
2957 }
2966 }
2958 #files_data dl dt{
2967 #files_data dl dt{
2959 float:left;
2968 float:left;
2960 margin:0 !important;
2969 margin:0 !important;
2961 padding:5px;
2970 padding:5px;
2962 width:115px;
2971 width:115px;
2963 }
2972 }
2964 #files_data dl dd{
2973 #files_data dl dd{
2965 margin:0 !important;
2974 margin:0 !important;
2966 padding: 5px !important;
2975 padding: 5px !important;
2967 }
2976 }
2968
2977
2969
2978
2970 /* -----------------------------------------------------------
2979 /* -----------------------------------------------------------
2971 CHANGESETS
2980 CHANGESETS
2972 ----------------------------------------------------------- */
2981 ----------------------------------------------------------- */
2973 #changeset_content {
2982 #changeset_content {
2974 border:1px solid #CCCCCC;
2983 border:1px solid #CCCCCC;
2975 padding:5px;
2984 padding:5px;
2976 }
2985 }
2977
2986
2978 #changeset_content .container .wrapper {
2987 #changeset_content .container .wrapper {
2979 width: 600px;
2988 width: 600px;
2980 }
2989 }
2981
2990
2982 #changeset_content .container {
2991 #changeset_content .container {
2983 height: 120px;
2992 height: 120px;
2984 }
2993 }
2985
2994
2986 #changeset_content .container .left {
2995 #changeset_content .container .left {
2987 float: left;
2996 float: left;
2988 width: 70%;
2997 width: 70%;
2989 padding-left: 5px;
2998 padding-left: 5px;
2990 }
2999 }
2991
3000
2992 #changeset_content .container .right {
3001 #changeset_content .container .right {
2993 float: right;
3002 float: right;
2994 width: 25%;
3003 width: 25%;
2995 text-align: right;
3004 text-align: right;
2996 }
3005 }
2997
3006
2998 #changeset_content .container .left .date {
3007 #changeset_content .container .left .date {
2999 font-weight: bold;
3008 font-weight: bold;
3000 }
3009 }
3001
3010
3002 #changeset_content .container .left .author {
3011 #changeset_content .container .left .author {
3003
3012
3004 }
3013 }
3005
3014
3006 #changeset_content .container .left .message {
3015 #changeset_content .container .left .message {
3007 font-style: italic;
3016 font-style: italic;
3008 color: #556CB5;
3017 color: #556CB5;
3009 }
3018 }
3010
3019
3011 .cs_files {
3020 .cs_files {
3012
3021
3013 }
3022 }
3014
3023
3015 .cs_files .cs_added {
3024 .cs_files .cs_added {
3016 background: url("/images/icons/page_white_add.png") no-repeat scroll 3px;
3025 background: url("/images/icons/page_white_add.png") no-repeat scroll 3px;
3017 /*background-color:#BBFFBB;*/
3026 /*background-color:#BBFFBB;*/
3018 height: 16px;
3027 height: 16px;
3019 padding-left: 20px;
3028 padding-left: 20px;
3020 margin-top: 7px;
3029 margin-top: 7px;
3021 text-align: left;
3030 text-align: left;
3022 }
3031 }
3023
3032
3024 .cs_files .cs_changed {
3033 .cs_files .cs_changed {
3025 background: url("/images/icons/page_white_edit.png") no-repeat scroll
3034 background: url("/images/icons/page_white_edit.png") no-repeat scroll
3026 3px;
3035 3px;
3027 /*background-color: #FFDD88;*/
3036 /*background-color: #FFDD88;*/
3028 height: 16px;
3037 height: 16px;
3029 padding-left: 20px;
3038 padding-left: 20px;
3030 margin-top: 7px;
3039 margin-top: 7px;
3031 text-align: left;
3040 text-align: left;
3032 }
3041 }
3033
3042
3034 .cs_files .cs_removed {
3043 .cs_files .cs_removed {
3035 background: url("/images/icons/page_white_delete.png") no-repeat scroll
3044 background: url("/images/icons/page_white_delete.png") no-repeat scroll
3036 3px;
3045 3px;
3037 /*background-color: #FF8888;*/
3046 /*background-color: #FF8888;*/
3038 height: 16px;
3047 height: 16px;
3039 padding-left: 20px;
3048 padding-left: 20px;
3040 margin-top: 7px;
3049 margin-top: 7px;
3041 text-align: left;
3050 text-align: left;
3042 }
3051 }
3043
3052
3044 /* -----------------------------------------------------------
3053 /* -----------------------------------------------------------
3045 CHANGESETS - CANVAS
3054 CHANGESETS - CANVAS
3046 ----------------------------------------------------------- */
3055 ----------------------------------------------------------- */
3047
3056
3048 #graph {
3057 #graph {
3049 overflow: hidden;
3058 overflow: hidden;
3050 }
3059 }
3051
3060
3052 #graph_nodes {
3061 #graph_nodes {
3053 width: 160px;
3062 width: 160px;
3054 float: left;
3063 float: left;
3055 margin-left:-50px;
3064 margin-left:-50px;
3056 margin-top: 5px;
3065 margin-top: 5px;
3057 }
3066 }
3058
3067
3059 #graph_content {
3068 #graph_content {
3060 width: 800px;
3069 width: 800px;
3061 float: left;
3070 float: left;
3062 }
3071 }
3063
3072
3064 #graph_content .container_header {
3073 #graph_content .container_header {
3065 border: 1px solid #CCCCCC;
3074 border: 1px solid #CCCCCC;
3066 padding:10px;
3075 padding:10px;
3067 }
3076 }
3068
3077
3069 #graph_content .container .wrapper {
3078 #graph_content .container .wrapper {
3070 width: 600px;
3079 width: 600px;
3071 }
3080 }
3072
3081
3073 #graph_content .container {
3082 #graph_content .container {
3074 border-bottom: 1px solid #CCCCCC;
3083 border-bottom: 1px solid #CCCCCC;
3075 border-left: 1px solid #CCCCCC;
3084 border-left: 1px solid #CCCCCC;
3076 border-right: 1px solid #CCCCCC;
3085 border-right: 1px solid #CCCCCC;
3077 min-height: 90px;
3086 min-height: 90px;
3078 overflow: hidden;
3087 overflow: hidden;
3079 font-size:1.2em;
3088 font-size:1.2em;
3080 }
3089 }
3081
3090
3082 #graph_content .container .left {
3091 #graph_content .container .left {
3083 float: left;
3092 float: left;
3084 width: 70%;
3093 width: 70%;
3085 padding-left: 5px;
3094 padding-left: 5px;
3086 }
3095 }
3087
3096
3088 #graph_content .container .right {
3097 #graph_content .container .right {
3089 float: right;
3098 float: right;
3090 width: 25%;
3099 width: 25%;
3091 text-align: right;
3100 text-align: right;
3092 }
3101 }
3093
3102
3094 #graph_content .container .left .date {
3103 #graph_content .container .left .date {
3095 font-weight: bold;
3104 font-weight: bold;
3096 }
3105 }
3097
3106
3098 #graph_content .container .left .author {
3107 #graph_content .container .left .author {
3099
3108
3100 }
3109 }
3101
3110
3102 #graph_content .container .left .message {
3111 #graph_content .container .left .message {
3103 font-size: 100%;
3112 font-size: 100%;
3104 padding-top: 3px;
3113 padding-top: 3px;
3105 }
3114 }
3106
3115
3107 .right div {
3116 .right div {
3108 clear: both;
3117 clear: both;
3109 }
3118 }
3110
3119
3111 .right .changes .added,.changed,.removed {
3120 .right .changes .added,.changed,.removed {
3112 border: 1px solid #DDDDDD;
3121 border: 1px solid #DDDDDD;
3113 display: block;
3122 display: block;
3114 float: right;
3123 float: right;
3115 font-size: 0.75em;
3124 font-size: 0.75em;
3116 text-align: center;
3125 text-align: center;
3117 min-width: 15px;
3126 min-width: 15px;
3118 }
3127 }
3119
3128
3120 .right .changes .added {
3129 .right .changes .added {
3121 background: #BBFFBB;
3130 background: #BBFFBB;
3122 }
3131 }
3123
3132
3124 .right .changes .changed {
3133 .right .changes .changed {
3125 background: #FFDD88;
3134 background: #FFDD88;
3126 }
3135 }
3127
3136
3128 .right .changes .removed {
3137 .right .changes .removed {
3129 background: #FF8888;
3138 background: #FF8888;
3130 }
3139 }
3131
3140
3132 .right .merge {
3141 .right .merge {
3133 vertical-align: top;
3142 vertical-align: top;
3134 font-size: 60%;
3143 font-size: 60%;
3135 font-weight: bold;
3144 font-weight: bold;
3136 }
3145 }
3137
3146
3138 .right .merge img {
3147 .right .merge img {
3139 vertical-align: bottom;
3148 vertical-align: bottom;
3140 }
3149 }
3141
3150
3142 .right .parent {
3151 .right .parent {
3143 font-size: 90%;
3152 font-size: 90%;
3144 font-family: monospace;
3153 font-family: monospace;
3145 }
3154 }
3146
3155
3147
3156
3148
3157
3149 /* -----------------------------------------------------------
3158 /* -----------------------------------------------------------
3150 FILE BROWSER
3159 FILE BROWSER
3151 ----------------------------------------------------------- */
3160 ----------------------------------------------------------- */
3152 div.browserblock {
3161 div.browserblock {
3153 overflow: hidden;
3162 overflow: hidden;
3154 padding: 0px;
3163 padding: 0px;
3155 border: 1px solid #ccc;
3164 border: 1px solid #ccc;
3156 background: #f8f8f8;
3165 background: #f8f8f8;
3157 font-size: 100%;
3166 font-size: 100%;
3158 line-height: 100%;
3167 line-height: 100%;
3159 /* new */
3168 /* new */
3160 line-height: 125%;
3169 line-height: 125%;
3161 }
3170 }
3162
3171
3163 div.browserblock .browser-header {
3172 div.browserblock .browser-header {
3164 border-bottom: 1px solid #CCCCCC;
3173 border-bottom: 1px solid #CCCCCC;
3165 background: #FFFFFF;
3174 background: #FFFFFF;
3166 color: blue;
3175 color: blue;
3167 padding: 10px 0 10px 0;
3176 padding: 10px 0 10px 0;
3168 }
3177 }
3169
3178
3170 div.browserblock .browser-header span {
3179 div.browserblock .browser-header span {
3171 margin-left: 25px;
3180 margin-left: 25px;
3172 font-weight: bold;
3181 font-weight: bold;
3173 }
3182 }
3174
3183
3175 div.browserblock .browser-body {
3184 div.browserblock .browser-body {
3176 background: #EEEEEE;
3185 background: #EEEEEE;
3177 }
3186 }
3178
3187
3179 table.code-browser {
3188 table.code-browser {
3180 border-collapse: collapse;
3189 border-collapse: collapse;
3181 width: 100%;
3190 width: 100%;
3182 }
3191 }
3183
3192
3184 table.code-browser tr {
3193 table.code-browser tr {
3185 margin: 3px;
3194 margin: 3px;
3186 }
3195 }
3187
3196
3188 table.code-browser thead th {
3197 table.code-browser thead th {
3189 background-color: #EEEEEE;
3198 background-color: #EEEEEE;
3190 height: 20px;
3199 height: 20px;
3191 font-size: 1.1em;
3200 font-size: 1.1em;
3192 font-weight: bold;
3201 font-weight: bold;
3193 text-align: center;
3202 text-align: center;
3194 text-align: left;
3203 text-align: left;
3195 padding-left: 10px;
3204 padding-left: 10px;
3196 }
3205 }
3197
3206
3198 table.code-browser tbody tr {
3207 table.code-browser tbody tr {
3199
3208
3200 }
3209 }
3201
3210
3202 table.code-browser tbody td {
3211 table.code-browser tbody td {
3203 padding-left: 10px;
3212 padding-left: 10px;
3204 height: 20px;
3213 height: 20px;
3205 }
3214 }
3206 table.code-browser .browser-file {
3215 table.code-browser .browser-file {
3207 background: url("/images/icons/document_16.png") no-repeat scroll 3px;
3216 background: url("/images/icons/document_16.png") no-repeat scroll 3px;
3208 height: 16px;
3217 height: 16px;
3209 padding-left: 20px;
3218 padding-left: 20px;
3210 text-align: left;
3219 text-align: left;
3211 }
3220 }
3212
3221
3213 table.code-browser .browser-dir {
3222 table.code-browser .browser-dir {
3214 background: url("/images/icons/folder_16.png") no-repeat scroll 3px;
3223 background: url("/images/icons/folder_16.png") no-repeat scroll 3px;
3215 height: 16px;
3224 height: 16px;
3216 padding-left: 20px;
3225 padding-left: 20px;
3217 text-align: left;
3226 text-align: left;
3218 }
3227 }
3219
3228
3220 /* -----------------------------------------------------------
3229 /* -----------------------------------------------------------
3221 ADMIN - SETTINGS
3230 ADMIN - SETTINGS
3222 ----------------------------------------------------------- */
3231 ----------------------------------------------------------- */
3223 #path_unlock{
3232 #path_unlock{
3224 color: red;
3233 color: red;
3225 font-size: 1.2em;
3234 font-size: 1.2em;
3226 padding-left: 4px;
3235 padding-left: 4px;
3227 }
3236 }
3228
3237
3229 /* -----------------------------------------------------------
3238 /* -----------------------------------------------------------
3230 INFOBOX
3239 INFOBOX
3231 ----------------------------------------------------------- */
3240 ----------------------------------------------------------- */
3232 .info_box *{
3241 .info_box *{
3233 background:url("../../images/pager.png") repeat-x scroll 0 0 #EBEBEB;
3242 background:url("../../images/pager.png") repeat-x scroll 0 0 #EBEBEB;
3234 border-color:#DEDEDE #C4C4C4 #C4C4C4 #CFCFCF;
3243 border-color:#DEDEDE #C4C4C4 #C4C4C4 #CFCFCF;
3235 border-style:solid;
3244 border-style:solid;
3236 border-width:1px;
3245 border-width:1px;
3237 color:#4A4A4A;
3246 color:#4A4A4A;
3238 display:block;
3247 display:block;
3239 font-weight:bold;
3248 font-weight:bold;
3240 height:1%;
3249 height:1%;
3241 padding:4px 6px;
3250 padding:4px 6px;
3242 display: inline;
3251 display: inline;
3243 }
3252 }
3244 .info_box span{
3253 .info_box span{
3245 margin-left:3px;
3254 margin-left:3px;
3246 margin-right:3px;
3255 margin-right:3px;
3247 }
3256 }
3248 .info_box input#at_rev {
3257 .info_box input#at_rev {
3249 padding:1px 3px 3px 2px;
3258 padding:1px 3px 3px 2px;
3250 text-align:center;
3259 text-align:center;
3251 }
3260 }
3252 .info_box input#view {
3261 .info_box input#view {
3253 padding:0px 3px 2px 2px;
3262 padding:0px 3px 2px 2px;
3254 text-align:center;
3263 text-align:center;
3255 }
3264 }
3256 /* -----------------------------------------------------------
3265 /* -----------------------------------------------------------
3257 YUI TOOLTIP
3266 YUI TOOLTIP
3258 ----------------------------------------------------------- */
3267 ----------------------------------------------------------- */
3259 .yui-overlay,.yui-panel-container {
3268 .yui-overlay,.yui-panel-container {
3260 visibility: hidden;
3269 visibility: hidden;
3261 position: absolute;
3270 position: absolute;
3262 z-index: 2;
3271 z-index: 2;
3263 }
3272 }
3264
3273
3265 .yui-tt {
3274 .yui-tt {
3266 visibility: hidden;
3275 visibility: hidden;
3267 position: absolute;
3276 position: absolute;
3268 color: #666666;
3277 color: #666666;
3269 background-color: #FFFFFF;
3278 background-color: #FFFFFF;
3270 font-family: arial, helvetica, verdana, sans-serif;
3279 font-family: arial, helvetica, verdana, sans-serif;
3271 padding: 8px;
3280 padding: 8px;
3272 border: 2px solid #556CB5;
3281 border: 2px solid #556CB5;
3273 font: 100% sans-serif;
3282 font: 100% sans-serif;
3274 width: auto;
3283 width: auto;
3275 opacity: 1.0;
3284 opacity: 1.0;
3276 }
3285 }
3277
3286
3278 .yui-tt-shadow {
3287 .yui-tt-shadow {
3279 display: none;
3288 display: none;
3280 }
3289 }
3281
3290
3282 /* -----------------------------------------------------------
3291 /* -----------------------------------------------------------
3283 YUI AUTOCOMPLETE
3292 YUI AUTOCOMPLETE
3284 ----------------------------------------------------------- */
3293 ----------------------------------------------------------- */
3285
3294
3286 .ac{
3295 .ac{
3287 vertical-align: top;
3296 vertical-align: top;
3288
3297
3289 }
3298 }
3290 .ac .match {
3299 .ac .match {
3291 font-weight:bold;
3300 font-weight:bold;
3292 }
3301 }
3293
3302
3294 .ac .yui-ac {
3303 .ac .yui-ac {
3295 position: relative;
3304 position: relative;
3296 font-family: arial;
3305 font-family: arial;
3297 font-size: 100%;
3306 font-size: 100%;
3298 }
3307 }
3299
3308
3300 .ac .perm_ac{
3309 .ac .perm_ac{
3301 width:15em;
3310 width:15em;
3302 }
3311 }
3303 /* styles for input field */
3312 /* styles for input field */
3304 .ac .yui-ac-input {
3313 .ac .yui-ac-input {
3305 width: 100%;
3314 width: 100%;
3306 }
3315 }
3307
3316
3308 /* styles for results container */
3317 /* styles for results container */
3309 .ac .yui-ac-container {
3318 .ac .yui-ac-container {
3310 position: absolute;
3319 position: absolute;
3311 top: 1.6em;
3320 top: 1.6em;
3312 width: 100%;
3321 width: 100%;
3313 }
3322 }
3314
3323
3315 /* styles for header/body/footer wrapper within container */
3324 /* styles for header/body/footer wrapper within container */
3316 .ac .yui-ac-content {
3325 .ac .yui-ac-content {
3317 position: absolute;
3326 position: absolute;
3318 width: 100%;
3327 width: 100%;
3319 border: 1px solid #808080;
3328 border: 1px solid #808080;
3320 background: #fff;
3329 background: #fff;
3321 overflow: hidden;
3330 overflow: hidden;
3322 z-index: 9050;
3331 z-index: 9050;
3323 }
3332 }
3324
3333
3325 /* styles for container shadow */
3334 /* styles for container shadow */
3326 .ac .yui-ac-shadow {
3335 .ac .yui-ac-shadow {
3327 position: absolute;
3336 position: absolute;
3328 margin: .3em;
3337 margin: .3em;
3329 width: 100%;
3338 width: 100%;
3330 background: #000;
3339 background: #000;
3331 -moz-opacity: 0.10;
3340 -moz-opacity: 0.10;
3332 opacity: .10;
3341 opacity: .10;
3333 filter: alpha(opacity = 10);
3342 filter: alpha(opacity = 10);
3334 z-index: 9049;
3343 z-index: 9049;
3335 }
3344 }
3336
3345
3337 /* styles for results list */
3346 /* styles for results list */
3338 .ac .yui-ac-content ul {
3347 .ac .yui-ac-content ul {
3339 margin: 0;
3348 margin: 0;
3340 padding: 0;
3349 padding: 0;
3341 width: 100%;
3350 width: 100%;
3342 }
3351 }
3343
3352
3344 /* styles for result item */
3353 /* styles for result item */
3345 .ac .yui-ac-content li {
3354 .ac .yui-ac-content li {
3346 margin: 0;
3355 margin: 0;
3347 padding: 2px 5px;
3356 padding: 2px 5px;
3348 cursor: default;
3357 cursor: default;
3349 white-space: nowrap;
3358 white-space: nowrap;
3350 }
3359 }
3351
3360
3352 /* styles for prehighlighted result item */
3361 /* styles for prehighlighted result item */
3353 .ac .yui-ac-content li.yui-ac-prehighlight {
3362 .ac .yui-ac-content li.yui-ac-prehighlight {
3354 background: #B3D4FF;
3363 background: #B3D4FF;
3355 }
3364 }
3356
3365
3357 /* styles for highlighted result item */
3366 /* styles for highlighted result item */
3358 .ac .yui-ac-content li.yui-ac-highlight {
3367 .ac .yui-ac-content li.yui-ac-highlight {
3359 background: #556CB5;
3368 background: #556CB5;
3360 color: #FFF;
3369 color: #FFF;
3361 }
3370 }
3362
3371
3363
3372
3364 /* -----------------------------------------------------------
3373 /* -----------------------------------------------------------
3365 ACTION ICONS
3374 ACTION ICONS
3366 ----------------------------------------------------------- */
3375 ----------------------------------------------------------- */
3367 .add_icon {
3376 .add_icon {
3368 background: url("/images/icons/add.png") no-repeat scroll 3px ;
3377 background: url("/images/icons/add.png") no-repeat scroll 3px ;
3369 height: 16px;
3378 height: 16px;
3370 padding-left: 20px;
3379 padding-left: 20px;
3371 padding-top: 1px;
3380 padding-top: 1px;
3372 text-align: left;
3381 text-align: left;
3373 }
3382 }
3374
3383
3375 .edit_icon {
3384 .edit_icon {
3376 background: url("/images/icons/folder_edit.png") no-repeat scroll 3px;
3385 background: url("/images/icons/folder_edit.png") no-repeat scroll 3px;
3377 height: 16px;
3386 height: 16px;
3378 padding-left: 20px;
3387 padding-left: 20px;
3379 padding-top: 1px;
3388 padding-top: 1px;
3380 text-align: left;
3389 text-align: left;
3381 }
3390 }
3382
3391
3383 .delete_icon {
3392 .delete_icon {
3384 background: url("/images/icons/delete.png") no-repeat scroll 3px;
3393 background: url("/images/icons/delete.png") no-repeat scroll 3px;
3385 height: 16px;
3394 height: 16px;
3386 padding-left: 20px;
3395 padding-left: 20px;
3387 padding-top: 1px;
3396 padding-top: 1px;
3388 text-align: left;
3397 text-align: left;
3389 }
3398 }
3390
3399
3391 .rss_icon {
3400 .rss_icon {
3392 background: url("/images/icons/rss_16.png") no-repeat scroll 3px;
3401 background: url("/images/icons/rss_16.png") no-repeat scroll 3px;
3393 height: 16px;
3402 height: 16px;
3394 padding-left: 20px;
3403 padding-left: 20px;
3395 padding-top: 1px;
3404 padding-top: 1px;
3396 text-align: left;
3405 text-align: left;
3397 }
3406 }
3398
3407
3399 .atom_icon {
3408 .atom_icon {
3400 background: url("/images/icons/atom.png") no-repeat scroll 3px;
3409 background: url("/images/icons/atom.png") no-repeat scroll 3px;
3401 height: 16px;
3410 height: 16px;
3402 padding-left: 20px;
3411 padding-left: 20px;
3403 padding-top: 1px;
3412 padding-top: 1px;
3404 text-align: left;
3413 text-align: left;
3405 }
3414 }
3406
3415
3407 .archive_icon {
3416 .archive_icon {
3408 background: url("/images/icons/compress.png") no-repeat scroll 3px;
3417 background: url("/images/icons/compress.png") no-repeat scroll 3px;
3409 height: 16px;
3418 height: 16px;
3410 padding-left: 20px;
3419 padding-left: 20px;
3411 text-align: left;
3420 text-align: left;
3412 padding-top: 1px;
3421 padding-top: 1px;
3413 }
3422 }
3414
3423
3415 .action_button {
3424 .action_button {
3416 border: 0px;
3425 border: 0px;
3417 display: block;
3426 display: block;
3418 }
3427 }
3419
3428
3420 .action_button:hover {
3429 .action_button:hover {
3421 border: 0px;
3430 border: 0px;
3422 font-style: italic;
3431 font-style: italic;
3423 cursor: pointer;
3432 cursor: pointer;
3424 }
3433 }
3425
3434
3426 /* -----------------------------------------------------------
3435 /* -----------------------------------------------------------
3427 REPO SWITCHER
3436 REPO SWITCHER
3428 ----------------------------------------------------------- */
3437 ----------------------------------------------------------- */
3429
3438
3430 #switch_repos{
3439 #switch_repos{
3431 position: absolute;
3440 position: absolute;
3432 height: 25px;
3441 height: 25px;
3433 z-index: 1;
3442 z-index: 1;
3434 }
3443 }
3435 #switch_repos select{
3444 #switch_repos select{
3436 min-width:150px;
3445 min-width:150px;
3437 max-height: 250px;
3446 max-height: 250px;
3438 z-index: 1;
3447 z-index: 1;
3439 }
3448 }
3440 /* -----------------------------------------------------------
3449 /* -----------------------------------------------------------
3441 BREADCRUMBS
3450 BREADCRUMBS
3442 ----------------------------------------------------------- */
3451 ----------------------------------------------------------- */
3443
3452
3444 .breadcrumbs{
3453 .breadcrumbs{
3445 border:medium none;
3454 border:medium none;
3446 color:#FFFFFF;
3455 color:#FFFFFF;
3447 float:left;
3456 float:left;
3448 margin:0;
3457 margin:0;
3449 padding:11px 0 11px 10px;
3458 padding:11px 0 11px 10px;
3450 text-transform:uppercase;
3459 text-transform:uppercase;
3451 font-weight: bold;
3460 font-weight: bold;
3452 font-size: 14px;
3461 font-size: 14px;
3453 }
3462 }
3454 .breadcrumbs a{
3463 .breadcrumbs a{
3455 color: #FFFFFF;
3464 color: #FFFFFF;
3456 }
3465 }
3457
3466
3458
3467
3459 /* -----------------------------------------------------------
3468 /* -----------------------------------------------------------
3460 FLASH MSG
3469 FLASH MSG
3461 ----------------------------------------------------------- */
3470 ----------------------------------------------------------- */
3462 .flash_msg ul {
3471 .flash_msg ul {
3463 margin: 0;
3472 margin: 0;
3464 padding: 0px 0px 10px 0px;
3473 padding: 0px 0px 10px 0px;
3465 }
3474 }
3466
3475
3467 .error_msg {
3476 .error_msg {
3468 background-color: #FFCFCF;
3477 background-color: #FFCFCF;
3469 background-image: url("/images/icons/error_msg.png");
3478 background-image: url("/images/icons/error_msg.png");
3470 border: 1px solid #FF9595;
3479 border: 1px solid #FF9595;
3471 color: #CC3300;
3480 color: #CC3300;
3472 }
3481 }
3473
3482
3474 .warning_msg {
3483 .warning_msg {
3475 background-color: #FFFBCC;
3484 background-color: #FFFBCC;
3476 background-image: url("/images/icons/warning_msg.png");
3485 background-image: url("/images/icons/warning_msg.png");
3477 border: 1px solid #FFF35E;
3486 border: 1px solid #FFF35E;
3478 color: #C69E00;
3487 color: #C69E00;
3479 }
3488 }
3480
3489
3481 .success_msg {
3490 .success_msg {
3482 background-color: #D5FFCF;
3491 background-color: #D5FFCF;
3483 background-image: url("/images/icons/success_msg.png");
3492 background-image: url("/images/icons/success_msg.png");
3484 border: 1px solid #97FF88;
3493 border: 1px solid #97FF88;
3485 color: #009900;
3494 color: #009900;
3486 }
3495 }
3487
3496
3488 .notice_msg {
3497 .notice_msg {
3489 background-color: #DCE3FF;
3498 background-color: #DCE3FF;
3490 background-image: url("/images/icons/notice_msg.png");
3499 background-image: url("/images/icons/notice_msg.png");
3491 border: 1px solid #93A8FF;
3500 border: 1px solid #93A8FF;
3492 color: #556CB5;
3501 color: #556CB5;
3493 }
3502 }
3494
3503
3495 .success_msg,.error_msg,.notice_msg,.warning_msg {
3504 .success_msg,.error_msg,.notice_msg,.warning_msg {
3496 background-position: 10px center;
3505 background-position: 10px center;
3497 background-repeat: no-repeat;
3506 background-repeat: no-repeat;
3498 font-size: 12px;
3507 font-size: 12px;
3499 font-weight: bold;
3508 font-weight: bold;
3500 min-height: 14px;
3509 min-height: 14px;
3501 line-height: 14px;
3510 line-height: 14px;
3502 margin-bottom: 0px;
3511 margin-bottom: 0px;
3503 margin-top: 0px;
3512 margin-top: 0px;
3504 padding: 6px 10px 6px 40px;
3513 padding: 6px 10px 6px 40px;
3505 display: block;
3514 display: block;
3506 overflow: auto;
3515 overflow: auto;
3507 }
3516 }
3508
3517
3509 #msg_close {
3518 #msg_close {
3510 background: transparent url("icons/cross_grey_small.png") no-repeat
3519 background: transparent url("icons/cross_grey_small.png") no-repeat
3511 scroll 0 0;
3520 scroll 0 0;
3512 cursor: pointer;
3521 cursor: pointer;
3513 height: 16px;
3522 height: 16px;
3514 position: absolute;
3523 position: absolute;
3515 right: 5px;
3524 right: 5px;
3516 top: 5px;
3525 top: 5px;
3517 width: 16px;
3526 width: 16px;
3518 }
3527 }
3519 /* -----------------------------------------------------------
3528 /* -----------------------------------------------------------
3520 YUI FLOT
3529 YUI FLOT
3521 ----------------------------------------------------------- */
3530 ----------------------------------------------------------- */
3522
3531
3523 div#commit_history{
3532 div#commit_history{
3524 float: left;
3533 float: left;
3525 }
3534 }
3526 div#legend_data{
3535 div#legend_data{
3527 float:left;
3536 float:left;
3528
3537
3529 }
3538 }
3530 div#legend_container {
3539 div#legend_container {
3531 float: left;
3540 float: left;
3532 }
3541 }
3533
3542
3534 div#legend_container table,div#legend_choices table{
3543 div#legend_container table,div#legend_choices table{
3535 width:auto !important;
3544 width:auto !important;
3536 }
3545 }
3537
3546
3538 div#legend_container table td{
3547 div#legend_container table td{
3539 border: none !important;
3548 border: none !important;
3540 padding: 0px !important;
3549 padding: 0px !important;
3541 height: 20px !important;
3550 height: 20px !important;
3542 }
3551 }
3543
3552
3544 div#legend_choices table td{
3553 div#legend_choices table td{
3545 border: none !important;
3554 border: none !important;
3546 padding: 0px !important;
3555 padding: 0px !important;
3547 height: 20px !important;
3556 height: 20px !important;
3548 }
3557 }
3549
3558
3550 div#legend_choices{
3559 div#legend_choices{
3551 float:left;
3560 float:left;
3552 }
3561 }
3553
3562
3554 /* -----------------------------------------------------------
3563 /* -----------------------------------------------------------
3555 PERMISSIONS TABLE
3564 PERMISSIONS TABLE
3556 ----------------------------------------------------------- */
3565 ----------------------------------------------------------- */
3557 table#permissions_manage{
3566 table#permissions_manage{
3558 width: 0 !important;
3567 width: 0 !important;
3559
3568
3560 }
3569 }
3561 table#permissions_manage span.private_repo_msg{
3570 table#permissions_manage span.private_repo_msg{
3562 font-size: 0.8em;
3571 font-size: 0.8em;
3563 opacity:0.6;
3572 opacity:0.6;
3564
3573
3565 }
3574 }
3566 table#permissions_manage td.private_repo_msg{
3575 table#permissions_manage td.private_repo_msg{
3567 font-size: 0.8em;
3576 font-size: 0.8em;
3568
3577
3569 }
3578 }
3570 table#permissions_manage tr#add_perm_input td{
3579 table#permissions_manage tr#add_perm_input td{
3571 vertical-align:middle;
3580 vertical-align:middle;
3572
3581
3573 }
3582 }
3574
3583
3575 /* -----------------------------------------------------------
3584 /* -----------------------------------------------------------
3576 GRAVATARS
3585 GRAVATARS
3577 ----------------------------------------------------------- */
3586 ----------------------------------------------------------- */
3578 div.gravatar{
3587 div.gravatar{
3579 background-color:white;
3588 background-color:white;
3580 border:1px solid #D0D0D0;
3589 border:1px solid #D0D0D0;
3581 float:left;
3590 float:left;
3582 margin-right:0.7em;
3591 margin-right:0.7em;
3583 padding: 2px 2px 0px;
3592 padding: 2px 2px 0px;
3584 }
3593 }
3585
3594
3586 /* -----------------------------------------------------------
3595 /* -----------------------------------------------------------
3587 STYLING OF LAYOUT
3596 STYLING OF LAYOUT
3588 ----------------------------------------------------------- */
3597 ----------------------------------------------------------- */
3589
3598
3590
3599
3591 /* -----------------------------------------------------------
3600 /* -----------------------------------------------------------
3592 GLOBAL WIDTH
3601 GLOBAL WIDTH
3593 ----------------------------------------------------------- */
3602 ----------------------------------------------------------- */
3594 #header,#content,#footer{
3603 #header,#content,#footer{
3595 min-width: 1224px;
3604 min-width: 1224px;
3596 }
3605 }
3597
3606
3598 /* -----------------------------------------------------------
3607 /* -----------------------------------------------------------
3599 content
3608 content
3600 ----------------------------------------------------------- */
3609 ----------------------------------------------------------- */
3601
3610
3602 #content
3611 #content
3603 {
3612 {
3604 margin: 10px 30px 0 30px;
3613 margin: 10px 30px 0 30px;
3605 padding: 0;
3614 padding: 0;
3606 min-height: 100%;
3615 min-height: 100%;
3607 clear: both;
3616 clear: both;
3608 overflow: hidden;
3617 overflow: hidden;
3609 background: transparent;
3618 background: transparent;
3610 }
3619 }
3611
3620
3612 /* -----------------------------------------------------------
3621 /* -----------------------------------------------------------
3613 content -> right -> forms -> labels
3622 content -> right -> forms -> labels
3614 ----------------------------------------------------------- */
3623 ----------------------------------------------------------- */
3615
3624
3616 #content div.box div.form div.fields div.field div.label
3625 #content div.box div.form div.fields div.field div.label
3617 {
3626 {
3618 left: 80px;
3627 left: 80px;
3619 margin: 0;
3628 margin: 0;
3620 padding: 8px 0 0 5px;
3629 padding: 8px 0 0 5px;
3621 width: auto;
3630 width: auto;
3622 position: absolute;
3631 position: absolute;
3623 }
3632 }
3624
3633
3625 #content div.box-left div.form div.fields div.field div.label,
3634 #content div.box-left div.form div.fields div.field div.label,
3626 #content div.box-right div.form div.fields div.field div.label
3635 #content div.box-right div.form div.fields div.field div.label
3627 {
3636 {
3628 left: 0;
3637 left: 0;
3629 margin: 0;
3638 margin: 0;
3630 padding: 0 0 8px 0;
3639 padding: 0 0 8px 0;
3631 width: auto;
3640 width: auto;
3632 position: relative;
3641 position: relative;
3633 } No newline at end of file
3642 }
@@ -1,41 +1,41 b''
1 ## -*- coding: utf-8 -*-
1 ## -*- coding: utf-8 -*-
2 %if c.users_log:
2 %if c.users_log:
3 <table>
3 <table>
4 <tr>
4 <tr>
5 <th class="left">${_('Username')}</th>
5 <th class="left">${_('Username')}</th>
6 <th class="left">${_('Repository')}</th>
6 <th class="left">${_('Repository')}</th>
7 <th class="left">${_('Action')}</th>
7 <th class="left">${_('Action')}</th>
8 <th class="left">${_('Date')}</th>
8 <th class="left">${_('Date')}</th>
9 <th class="left">${_('From IP')}</th>
9 <th class="left">${_('From IP')}</th>
10 </tr>
10 </tr>
11
11
12 %for cnt,l in enumerate(c.users_log):
12 %for cnt,l in enumerate(c.users_log):
13 <tr class="parity${cnt%2}">
13 <tr class="parity${cnt%2}">
14 <td>${l.user.username}</td>
14 <td>${h.link_to(l.user.username,h.url('edit_user', id=l.user.user_id))}</td>
15 <td>${l.repository}</td>
15 <td>${h.link_to(l.repository,h.url('summary_home',repo_name=l.repository))}</td>
16 <td>${l.action}</td>
16 <td>${l.action}</td>
17 <td>${l.action_date}</td>
17 <td>${l.action_date}</td>
18 <td>${l.user_ip}</td>
18 <td>${l.user_ip}</td>
19 </tr>
19 </tr>
20 %endfor
20 %endfor
21 </table>
21 </table>
22
22
23 <script type="text/javascript">
23 <script type="text/javascript">
24 var data_div = 'user_log';
24 var data_div = 'user_log';
25 YAHOO.util.Event.onDOMReady(function(){
25 YAHOO.util.Event.onDOMReady(function(){
26 YAHOO.util.Event.addListener(YAHOO.util.Dom.getElementsByClassName('pager_link'),"click",function(){
26 YAHOO.util.Event.addListener(YAHOO.util.Dom.getElementsByClassName('pager_link'),"click",function(){
27 YAHOO.util.Dom.setStyle('shortlog_data','opacity','0.3');});});
27 YAHOO.util.Dom.setStyle('shortlog_data','opacity','0.3');});});
28 </script>
28 </script>
29
29
30
30
31 <div class="pagination-wh pagination-left">
31 <div class="pagination-wh pagination-left">
32 ${c.users_log.pager('$link_previous ~2~ $link_next',
32 ${c.users_log.pager('$link_previous ~2~ $link_next',
33 onclick="""YAHOO.util.Connect.asyncRequest('GET','$partial_url',{
33 onclick="""YAHOO.util.Connect.asyncRequest('GET','$partial_url',{
34 success:function(o){YAHOO.util.Dom.get(data_div).innerHTML=o.responseText;
34 success:function(o){YAHOO.util.Dom.get(data_div).innerHTML=o.responseText;
35 YAHOO.util.Event.addListener(YAHOO.util.Dom.getElementsByClassName('pager_link'),"click",function(){
35 YAHOO.util.Event.addListener(YAHOO.util.Dom.getElementsByClassName('pager_link'),"click",function(){
36 YAHOO.util.Dom.setStyle(data_div,'opacity','0.3');});
36 YAHOO.util.Dom.setStyle(data_div,'opacity','0.3');});
37 YAHOO.util.Dom.setStyle(data_div,'opacity','1');}},null); return false;""")}
37 YAHOO.util.Dom.setStyle(data_div,'opacity','1');}},null); return false;""")}
38 </div>
38 </div>
39 %else:
39 %else:
40 ${_('No actions yet')}
40 ${_('No actions yet')}
41 %endif
41 %endif
@@ -1,242 +1,243 b''
1 ## -*- coding: utf-8 -*-
1 ## -*- coding: utf-8 -*-
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" id="mainhtml">
3 <html xmlns="http://www.w3.org/1999/xhtml" id="mainhtml">
4 <head>
4 <head>
5 <title>${next.title()}</title>
5 <title>${next.title()}</title>
6 <link rel="icon" href="/images/hgicon.png" type="image/png" />
6 <link rel="icon" href="/images/hgicon.png" type="image/png" />
7 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8 <meta name="robots" content="index, nofollow"/>
8 <meta name="robots" content="index, nofollow"/>
9 <!-- stylesheets -->
9 <!-- stylesheets -->
10 ${self.css()}
10 ${self.css()}
11 <!-- scripts -->
11 <!-- scripts -->
12 ${self.js()}
12 ${self.js()}
13 </head>
13 </head>
14 <body>
14 <body>
15 <!-- header -->
15 <!-- header -->
16 <div id="header">
16 <div id="header">
17 <!-- user -->
17 <!-- user -->
18 <ul id="logged-user">
18 <ul id="logged-user">
19 <li class="first">
19 <li class="first">
20 <div class="gravatar">
20 <div class="gravatar">
21 <img alt="gravatar" src="${h.gravatar_url(c.hg_app_user.email,24)}" />
21 <img alt="gravatar" src="${h.gravatar_url(c.hg_app_user.email,24)}" />
22 </div>
22 </div>
23 <div class="account">
23 <div class="account">
24 ${h.link_to('%s %s'%(c.hg_app_user.name,c.hg_app_user.lastname),h.url('admin_settings_my_account'))}<br/>
24 ${h.link_to('%s %s'%(c.hg_app_user.name,c.hg_app_user.lastname),h.url('admin_settings_my_account'))}<br/>
25 ${h.link_to(c.hg_app_user.username,h.url('admin_settings_my_account'))}
25 ${h.link_to(c.hg_app_user.username,h.url('admin_settings_my_account'))}
26 </div>
26 </div>
27 </li>
27 </li>
28 <li class="last highlight">${h.link_to(u'Logout',h.url('logout_home'))}</li>
28 <li class="last highlight">${h.link_to(u'Logout',h.url('logout_home'))}</li>
29 </ul>
29 </ul>
30 <!-- end user -->
30 <!-- end user -->
31 <div id="header-inner">
31 <div id="header-inner">
32 <div id="home">
32 <div id="home">
33 <a href="${h.url('hg_home')}"></a>
33 <a href="${h.url('hg_home')}"></a>
34 </div>
34 </div>
35 <!-- logo -->
35 <!-- logo -->
36 <div id="logo">
36 <div id="logo">
37 <h1><a href="${h.url('hg_home')}">${c.hg_app_name}</a></h1>
37 <h1><a href="${h.url('hg_home')}">${c.hg_app_name}</a></h1>
38 </div>
38 </div>
39 <!-- end logo -->
39 <!-- end logo -->
40 <!-- quick menu -->
40 <!-- quick menu -->
41 ${self.page_nav()}
41 ${self.page_nav()}
42 <!-- end quick -->
42 <!-- end quick -->
43 <div class="corner tl"></div>
43 <div class="corner tl"></div>
44 <div class="corner tr"></div>
44 <div class="corner tr"></div>
45 </div>
45 </div>
46 </div>
46 </div>
47 <!-- end header -->
47 <!-- end header -->
48
48
49 <!-- CONTENT -->
49 <!-- CONTENT -->
50 <div id="content">
50 <div id="content">
51 <div class="flash_msg">
51 <div class="flash_msg">
52 <% messages = h.flash.pop_messages() %>
52 <% messages = h.flash.pop_messages() %>
53 % if messages:
53 % if messages:
54 <ul id="flash-messages">
54 <ul id="flash-messages">
55 % for message in messages:
55 % for message in messages:
56 <li class="${message.category}_msg">${message}</li>
56 <li class="${message.category}_msg">${message}</li>
57 % endfor
57 % endfor
58 </ul>
58 </ul>
59 % endif
59 % endif
60 </div>
60 </div>
61 <div id="main">
61 <div id="main">
62 ${next.main()}
62 ${next.main()}
63 </div>
63 </div>
64 </div>
64 </div>
65 <!-- END CONTENT -->
65 <!-- END CONTENT -->
66
66
67 <!-- footer -->
67 <!-- footer -->
68 <div id="footer">
68 <div id="footer">
69 <p>Hg App ${c.hg_app_version} &copy; 2010 by Marcin Kuzminski</p>
69 <p>Hg App ${c.hg_app_version} &copy; 2010 by Marcin Kuzminski</p>
70 <script type="text/javascript">${h.tooltip.activate()}</script>
70 <script type="text/javascript">${h.tooltip.activate()}</script>
71 </div>
71 </div>
72 <!-- end footer -->
72 <!-- end footer -->
73 </body>
73 </body>
74
74
75 </html>
75 </html>
76
76
77 ### MAKO DEFS ###
77 ### MAKO DEFS ###
78 <%def name="page_nav()">
78 <%def name="page_nav()">
79 ${self.menu()}
79 ${self.menu()}
80 </%def>
80 </%def>
81
81
82 <%def name="menu(current=None)">
82 <%def name="menu(current=None)">
83 <%
83 <%
84 def is_current(selected):
84 def is_current(selected):
85 if selected == current:
85 if selected == current:
86 return h.literal('class="current"')
86 return h.literal('class="current"')
87 %>
87 %>
88 %if current not in ['home','admin']:
88 %if current not in ['home','admin']:
89 ##REGULAR MENU
89 ##REGULAR MENU
90 <ul id="quick">
90 <ul id="quick">
91 <!-- repo switcher -->
91 <!-- repo switcher -->
92 <li>
92 <li>
93 <a id="repo_switcher" title="${_('Switch repository')}" href="#">
93 <a id="repo_switcher" title="${_('Switch repository')}" href="#">
94 <span class="icon">
94 <span class="icon">
95 <img src="/images/icons/database.png" alt="${_('Products')}" />
95 <img src="/images/icons/database.png" alt="${_('Products')}" />
96 </span>
96 </span>
97 <span>&darr;</span>
97 <span>&darr;</span>
98 </a>
98 </a>
99 <ul class="repo_switcher">
99 <ul class="repo_switcher">
100 %for repo in c.repo_switcher_list:
100 %for repo in c.repo_switcher_list:
101 <li>${h.link_to(repo,h.url('summary_home',repo_name=repo))}</li>
101 <li>${h.link_to(repo,h.url('summary_home',repo_name=repo))}</li>
102 %endfor
102 %endfor
103 </ul>
103 </ul>
104 </li>
104 </li>
105
105
106 <li ${is_current('summary')}>
106 <li ${is_current('summary')}>
107 <a title="${_('Summary')}" href="${h.url('summary_home',repo_name=c.repo_name)}">
107 <a title="${_('Summary')}" href="${h.url('summary_home',repo_name=c.repo_name)}">
108 <span class="icon">
108 <span class="icon">
109 <img src="/images/icons/clipboard_16.png" alt="${_('Summary')}" />
109 <img src="/images/icons/clipboard_16.png" alt="${_('Summary')}" />
110 </span>
110 </span>
111 <span>${_('Summary')}</span>
111 <span>${_('Summary')}</span>
112 </a>
112 </a>
113 </li>
113 </li>
114 <li ${is_current('shortlog')}>
114 <li ${is_current('shortlog')}>
115 <a title="${_('Shortlog')}" href="${h.url('shortlog_home',repo_name=c.repo_name)}">
115 <a title="${_('Shortlog')}" href="${h.url('shortlog_home',repo_name=c.repo_name)}">
116 <span class="icon">
116 <span class="icon">
117 <img src="/images/icons/application_double.png" alt="${_('Shortlog')}" />
117 <img src="/images/icons/application_double.png" alt="${_('Shortlog')}" />
118 </span>
118 </span>
119 <span>${_('Shortlog')}</span>
119 <span>${_('Shortlog')}</span>
120 </a>
120 </a>
121 </li>
121 </li>
122 <li ${is_current('changelog')}>
122 <li ${is_current('changelog')}>
123 <a title="${_('Changelog')}" href="${h.url('changelog_home',repo_name=c.repo_name)}">
123 <a title="${_('Changelog')}" href="${h.url('changelog_home',repo_name=c.repo_name)}">
124 <span class="icon">
124 <span class="icon">
125 <img src="/images/icons/time.png" alt="${_('Changelog')}" />
125 <img src="/images/icons/time.png" alt="${_('Changelog')}" />
126 </span>
126 </span>
127 <span>${_('Changelog')}</span>
127 <span>${_('Changelog')}</span>
128 </a>
128 </a>
129 </li>
129 </li>
130
130
131 <li ${is_current('switch_to')}>
131 <li ${is_current('switch_to')}>
132 <a title="${_('Switch to')}" href="#">
132 <a title="${_('Switch to')}" href="#">
133 <span class="icon">
133 <span class="icon">
134 <img src="/images/icons/arrow_switch.png" alt="${_('Switch to')}" />
134 <img src="/images/icons/arrow_switch.png" alt="${_('Switch to')}" />
135 </span>
135 </span>
136 <span>${_('Switch to')}</span>
136 <span>${_('Switch to')}</span>
137 </a>
137 </a>
138 <ul>
138 <ul>
139 <li>
139 <li>
140 ${h.link_to(_('branches'),h.url('branches_home',repo_name=c.repo_name),class_='branches childs')}
140 ${h.link_to(_('branches'),h.url('branches_home',repo_name=c.repo_name),class_='branches childs')}
141 <ul>
141 <ul>
142 %for cnt,branch in enumerate(c.repository_branches.items()):
142 %for cnt,branch in enumerate(c.repository_branches.items()):
143 <li>${h.link_to('%s - %s' % (branch[0],branch[1]),h.url('files_home',repo_name=c.repo_name,revision=branch[1]))}</li>
143 <li>${h.link_to('%s - %s' % (branch[0],branch[1]),h.url('files_home',repo_name=c.repo_name,revision=branch[1]))}</li>
144 %endfor
144 %endfor
145 </ul>
145 </ul>
146 </li>
146 </li>
147 <li>
147 <li>
148 ${h.link_to(_('tags'),h.url('tags_home',repo_name=c.repo_name),class_='tags childs')}
148 ${h.link_to(_('tags'),h.url('tags_home',repo_name=c.repo_name),class_='tags childs')}
149 <ul>
149 <ul>
150 %for cnt,tag in enumerate(c.repository_tags.items()):
150 %for cnt,tag in enumerate(c.repository_tags.items()):
151 <li>${h.link_to('%s - %s' % (tag[0],tag[1]),h.url('files_home',repo_name=c.repo_name,revision=tag[1]))}</li>
151 <li>${h.link_to('%s - %s' % (tag[0],tag[1]),h.url('files_home',repo_name=c.repo_name,revision=tag[1]))}</li>
152 %endfor
152 %endfor
153 </ul>
153 </ul>
154 </li>
154 </li>
155 </ul>
155 </ul>
156 </li>
156 </li>
157 <li ${is_current('files')}>
157 <li ${is_current('files')}>
158 <a title="${_('Files')}" href="${h.url('files_home',repo_name=c.repo_name)}">
158 <a title="${_('Files')}" href="${h.url('files_home',repo_name=c.repo_name)}">
159 <span class="icon">
159 <span class="icon">
160 <img src="/images/icons/file.png" alt="${_('Files')}" />
160 <img src="/images/icons/file.png" alt="${_('Files')}" />
161 </span>
161 </span>
162 <span>${_('Files')}</span>
162 <span>${_('Files')}</span>
163 </a>
163 </a>
164 </li>
164 </li>
165 %if h.HasRepoPermissionAll('repository.admin')(c.repo_name):
165 %if h.HasRepoPermissionAll('repository.admin')(c.repo_name):
166 <li ${is_current('settings')}>
166 <li ${is_current('settings')}>
167 <a title="${_('Settings')}" href="${h.url('repo_settings_home',repo_name=c.repo_name)}">
167 <a title="${_('Settings')}" href="${h.url('repo_settings_home',repo_name=c.repo_name)}">
168 <span class="icon">
168 <span class="icon">
169 <img src="/images/icons/cog_edit.png" alt="${_('Settings')}" />
169 <img src="/images/icons/cog_edit.png" alt="${_('Settings')}" />
170 </span>
170 </span>
171 <span>${_('Settings')}</span>
171 <span>${_('Settings')}</span>
172 </a>
172 </a>
173 </li>
173 </li>
174 %endif
174 %endif
175 </ul>
175 </ul>
176 %else:
176 %else:
177 ##ROOT MENU
177 ##ROOT MENU
178 <ul id="quick">
178 <ul id="quick">
179 <li>
179 <li>
180 <a title="${_('Home')}" href="${h.url('hg_home')}">
180 <a title="${_('Home')}" href="${h.url('hg_home')}">
181 <span class="icon">
181 <span class="icon">
182 <img src="/images/icons/home_16.png" alt="${_('Home')}" />
182 <img src="/images/icons/home_16.png" alt="${_('Home')}" />
183 </span>
183 </span>
184 <span>${_('Home')}</span>
184 <span>${_('Home')}</span>
185 </a>
185 </a>
186 </li>
186 </li>
187
187
188 <li>
188 <li>
189 <a title="${_('Search')}" href="${h.url('search')}">
189 <a title="${_('Search')}" href="${h.url('search')}">
190 <span class="icon">
190 <span class="icon">
191 <img src="/images/icons/search_16.png" alt="${_('Search')}" />
191 <img src="/images/icons/search_16.png" alt="${_('Search')}" />
192 </span>
192 </span>
193 <span>${_('Search')}</span>
193 <span>${_('Search')}</span>
194 </a>
194 </a>
195 </li>
195 </li>
196
196
197 %if h.HasPermissionAll('hg.admin')('access admin main page'):
197 %if h.HasPermissionAll('hg.admin')('access admin main page'):
198 <li ${is_current('admin')}>
198 <li ${is_current('admin')}>
199 <a title="${_('Admin')}" href="${h.url('admin_home')}">
199 <a title="${_('Admin')}" href="${h.url('admin_home')}">
200 <span class="icon">
200 <span class="icon">
201 <img src="/images/icons/cog_edit.png" alt="${_('Admin')}" />
201 <img src="/images/icons/cog_edit.png" alt="${_('Admin')}" />
202 </span>
202 </span>
203 <span>${_('Admin')}</span>
203 <span>${_('Admin')}</span>
204 </a>
204 </a>
205 <ul>
205 <ul>
206 <li>${h.link_to(_('journal'),h.url('admin_home'),class_='journal')}</li>
206 <li>${h.link_to(_('repositories'),h.url('repos'),class_='repos')}</li>
207 <li>${h.link_to(_('repositories'),h.url('repos'),class_='repos')}</li>
207 <li>${h.link_to(_('users'),h.url('users'),class_='users')}</li>
208 <li>${h.link_to(_('users'),h.url('users'),class_='users')}</li>
208 <li>${h.link_to(_('permissions'),h.url('edit_permission',id='default'),class_='permissions')}</li>
209 <li>${h.link_to(_('permissions'),h.url('edit_permission',id='default'),class_='permissions')}</li>
209 <li class="last">${h.link_to(_('settings'),h.url('admin_settings'),class_='settings')}</li>
210 <li class="last">${h.link_to(_('settings'),h.url('admin_settings'),class_='settings')}</li>
210 </ul>
211 </ul>
211 </li>
212 </li>
212 %endif
213 %endif
213
214
214 </ul>
215 </ul>
215 %endif
216 %endif
216 </%def>
217 </%def>
217
218
218
219
219 <%def name="css()">
220 <%def name="css()">
220 <link rel="stylesheet" type="text/css" href="/css/reset.css" />
221 <link rel="stylesheet" type="text/css" href="/css/reset.css" />
221 <link rel="stylesheet" type="text/css" href="/css/style.css" media="screen" />
222 <link rel="stylesheet" type="text/css" href="/css/style.css" media="screen" />
222 <link id="color" rel="stylesheet" type="text/css" href="/css/colors/blue.css" />
223 <link id="color" rel="stylesheet" type="text/css" href="/css/colors/blue.css" />
223 <link rel="stylesheet" type="text/css" href="/css/pygments.css" />
224 <link rel="stylesheet" type="text/css" href="/css/pygments.css" />
224 <link rel="stylesheet" type="text/css" href="/css/diff.css" />
225 <link rel="stylesheet" type="text/css" href="/css/diff.css" />
225 </%def>
226 </%def>
226
227
227 <%def name="js()">
228 <%def name="js()">
228 ##<script type="text/javascript" src="/js/yui/utilities/utilities.js"></script>
229 ##<script type="text/javascript" src="/js/yui/utilities/utilities.js"></script>
229 ##<script type="text/javascript" src="/js/yui/container/container.js"></script>
230 ##<script type="text/javascript" src="/js/yui/container/container.js"></script>
230 ##<script type="text/javascript" src="/js/yui/datasource/datasource.js"></script>
231 ##<script type="text/javascript" src="/js/yui/datasource/datasource.js"></script>
231 ##<script type="text/javascript" src="/js/yui/autocomplete/autocomplete.js"></script>
232 ##<script type="text/javascript" src="/js/yui/autocomplete/autocomplete.js"></script>
232
233
233 <script type="text/javascript" src="/js/yui2.js"></script>
234 <script type="text/javascript" src="/js/yui2.js"></script>
234 <!--[if IE]><script language="javascript" type="text/javascript" src="/js/excanvas.min.js"></script><![endif]-->
235 <!--[if IE]><script language="javascript" type="text/javascript" src="/js/excanvas.min.js"></script><![endif]-->
235 <script type="text/javascript" src="/js/yui.flot.js"></script>
236 <script type="text/javascript" src="/js/yui.flot.js"></script>
236 </%def>
237 </%def>
237
238
238 <%def name="breadcrumbs()">
239 <%def name="breadcrumbs()">
239 <div class="breadcrumbs">
240 <div class="breadcrumbs">
240 ${self.breadcrumbs_links()}
241 ${self.breadcrumbs_links()}
241 </div>
242 </div>
242 </%def> No newline at end of file
243 </%def>
General Comments 0
You need to be logged in to leave comments. Login now