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