Show More
@@ -1,447 +1,447 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | """ |
|
3 | 3 | rhodecode.lib.diffs |
|
4 | 4 | ~~~~~~~~~~~~~~~~~~~ |
|
5 | 5 | |
|
6 | 6 | Set of diffing helpers, previously part of vcs |
|
7 | 7 | |
|
8 | 8 | |
|
9 | 9 | :created_on: Dec 4, 2011 |
|
10 | 10 | :author: marcink |
|
11 | 11 | :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com> |
|
12 | 12 | :original copyright: 2007-2008 by Armin Ronacher |
|
13 | 13 | :license: GPLv3, see COPYING for more details. |
|
14 | 14 | """ |
|
15 | 15 | # This program is free software: you can redistribute it and/or modify |
|
16 | 16 | # it under the terms of the GNU General Public License as published by |
|
17 | 17 | # the Free Software Foundation, either version 3 of the License, or |
|
18 | 18 | # (at your option) any later version. |
|
19 | 19 | # |
|
20 | 20 | # This program is distributed in the hope that it will be useful, |
|
21 | 21 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
22 | 22 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
23 | 23 | # GNU General Public License for more details. |
|
24 | 24 | # |
|
25 | 25 | # You should have received a copy of the GNU General Public License |
|
26 | 26 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
27 | 27 | |
|
28 | 28 | import re |
|
29 | 29 | import difflib |
|
30 | 30 | |
|
31 | 31 | from itertools import tee, imap |
|
32 | 32 | |
|
33 | 33 | from mercurial.match import match |
|
34 | 34 | |
|
35 | 35 | from vcs.exceptions import VCSError |
|
36 | 36 | from vcs.nodes import FileNode |
|
37 | 37 | |
|
38 | 38 | def get_gitdiff(filenode_old, filenode_new, ignore_whitespace=True, context=3): |
|
39 | 39 | """ |
|
40 | 40 | Returns git style diff between given ``filenode_old`` and ``filenode_new``. |
|
41 | 41 | |
|
42 | 42 | :param ignore_whitespace: ignore whitespaces in diff |
|
43 | 43 | """ |
|
44 | 44 | |
|
45 | 45 | for filenode in (filenode_old, filenode_new): |
|
46 | 46 | if not isinstance(filenode, FileNode): |
|
47 | 47 | raise VCSError("Given object should be FileNode object, not %s" |
|
48 | 48 | % filenode.__class__) |
|
49 | 49 | |
|
50 | 50 | old_raw_id = getattr(filenode_old.changeset, 'raw_id', '0' * 40) |
|
51 | 51 | new_raw_id = getattr(filenode_new.changeset, 'raw_id', '0' * 40) |
|
52 | 52 | |
|
53 | 53 | repo = filenode_new.changeset.repository |
|
54 | 54 | vcs_gitdiff = repo._get_diff(old_raw_id, new_raw_id, filenode_new.path, |
|
55 | 55 | ignore_whitespace, context) |
|
56 | 56 | |
|
57 | 57 | return vcs_gitdiff |
|
58 | 58 | |
|
59 | 59 | |
|
60 | 60 | class DiffProcessor(object): |
|
61 | 61 | """ |
|
62 | 62 | Give it a unified diff and it returns a list of the files that were |
|
63 | 63 | mentioned in the diff together with a dict of meta information that |
|
64 | 64 | can be used to render it in a HTML template. |
|
65 | 65 | """ |
|
66 | 66 | _chunk_re = re.compile(r'@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))? @@(.*)') |
|
67 | 67 | |
|
68 | 68 | def __init__(self, diff, differ='diff', format='udiff'): |
|
69 | 69 | """ |
|
70 | 70 | :param diff: a text in diff format or generator |
|
71 | 71 | :param format: format of diff passed, `udiff` or `gitdiff` |
|
72 | 72 | """ |
|
73 | 73 | if isinstance(diff, basestring): |
|
74 | 74 | diff = [diff] |
|
75 | 75 | |
|
76 | 76 | self.__udiff = diff |
|
77 | 77 | self.__format = format |
|
78 | 78 | self.adds = 0 |
|
79 | 79 | self.removes = 0 |
|
80 | 80 | |
|
81 | 81 | if isinstance(self.__udiff, basestring): |
|
82 | 82 | self.lines = iter(self.__udiff.splitlines(1)) |
|
83 | 83 | |
|
84 | 84 | elif self.__format == 'gitdiff': |
|
85 | 85 | udiff_copy = self.copy_iterator() |
|
86 | 86 | self.lines = imap(self.escaper, self._parse_gitdiff(udiff_copy)) |
|
87 | 87 | else: |
|
88 | 88 | udiff_copy = self.copy_iterator() |
|
89 | 89 | self.lines = imap(self.escaper, udiff_copy) |
|
90 | 90 | |
|
91 | 91 | # Select a differ. |
|
92 | 92 | if differ == 'difflib': |
|
93 | 93 | self.differ = self._highlight_line_difflib |
|
94 | 94 | else: |
|
95 | 95 | self.differ = self._highlight_line_udiff |
|
96 | 96 | |
|
97 | 97 | def escaper(self, string): |
|
98 | 98 | return string.replace('<', '<').replace('>', '>') |
|
99 | 99 | |
|
100 | 100 | def copy_iterator(self): |
|
101 | 101 | """ |
|
102 | 102 | make a fresh copy of generator, we should not iterate thru |
|
103 | 103 | an original as it's needed for repeating operations on |
|
104 | 104 | this instance of DiffProcessor |
|
105 | 105 | """ |
|
106 | 106 | self.__udiff, iterator_copy = tee(self.__udiff) |
|
107 | 107 | return iterator_copy |
|
108 | 108 | |
|
109 | 109 | def _extract_rev(self, line1, line2): |
|
110 | 110 | """ |
|
111 | 111 | Extract the filename and revision hint from a line. |
|
112 | 112 | """ |
|
113 | 113 | |
|
114 | 114 | try: |
|
115 | 115 | if line1.startswith('--- ') and line2.startswith('+++ '): |
|
116 | 116 | l1 = line1[4:].split(None, 1) |
|
117 | 117 | old_filename = l1[0].lstrip('a/') if len(l1) >= 1 else None |
|
118 | 118 | old_rev = l1[1] if len(l1) == 2 else 'old' |
|
119 | 119 | |
|
120 | 120 | l2 = line2[4:].split(None, 1) |
|
121 | 121 | new_filename = l2[0].lstrip('b/') if len(l1) >= 1 else None |
|
122 | 122 | new_rev = l2[1] if len(l2) == 2 else 'new' |
|
123 | 123 | |
|
124 | 124 | filename = old_filename if (old_filename != |
|
125 | 125 | 'dev/null') else new_filename |
|
126 | 126 | |
|
127 | 127 | return filename, new_rev, old_rev |
|
128 | 128 | except (ValueError, IndexError): |
|
129 | 129 | pass |
|
130 | 130 | |
|
131 | 131 | return None, None, None |
|
132 | 132 | |
|
133 | 133 | def _parse_gitdiff(self, diffiterator): |
|
134 | 134 | def line_decoder(l): |
|
135 | 135 | if l.startswith('+') and not l.startswith('+++'): |
|
136 | 136 | self.adds += 1 |
|
137 | 137 | elif l.startswith('-') and not l.startswith('---'): |
|
138 | 138 | self.removes += 1 |
|
139 | 139 | return l.decode('utf8', 'replace') |
|
140 | 140 | |
|
141 | 141 | output = list(diffiterator) |
|
142 | 142 | size = len(output) |
|
143 | 143 | |
|
144 | 144 | if size == 2: |
|
145 | 145 | l = [] |
|
146 | 146 | l.extend([output[0]]) |
|
147 | 147 | l.extend(output[1].splitlines(1)) |
|
148 | 148 | return map(line_decoder, l) |
|
149 | 149 | elif size == 1: |
|
150 | 150 | return map(line_decoder, output[0].splitlines(1)) |
|
151 | 151 | elif size == 0: |
|
152 | 152 | return [] |
|
153 | 153 | |
|
154 | 154 | raise Exception('wrong size of diff %s' % size) |
|
155 | 155 | |
|
156 | 156 | def _highlight_line_difflib(self, line, next): |
|
157 | 157 | """ |
|
158 | 158 | Highlight inline changes in both lines. |
|
159 | 159 | """ |
|
160 | 160 | |
|
161 | 161 | if line['action'] == 'del': |
|
162 | 162 | old, new = line, next |
|
163 | 163 | else: |
|
164 | 164 | old, new = next, line |
|
165 | 165 | |
|
166 | 166 | oldwords = re.split(r'(\W)', old['line']) |
|
167 | 167 | newwords = re.split(r'(\W)', new['line']) |
|
168 | 168 | |
|
169 | 169 | sequence = difflib.SequenceMatcher(None, oldwords, newwords) |
|
170 | 170 | |
|
171 | 171 | oldfragments, newfragments = [], [] |
|
172 | 172 | for tag, i1, i2, j1, j2 in sequence.get_opcodes(): |
|
173 | 173 | oldfrag = ''.join(oldwords[i1:i2]) |
|
174 | 174 | newfrag = ''.join(newwords[j1:j2]) |
|
175 | 175 | if tag != 'equal': |
|
176 | 176 | if oldfrag: |
|
177 | 177 | oldfrag = '<del>%s</del>' % oldfrag |
|
178 | 178 | if newfrag: |
|
179 | 179 | newfrag = '<ins>%s</ins>' % newfrag |
|
180 | 180 | oldfragments.append(oldfrag) |
|
181 | 181 | newfragments.append(newfrag) |
|
182 | 182 | |
|
183 | 183 | old['line'] = "".join(oldfragments) |
|
184 | 184 | new['line'] = "".join(newfragments) |
|
185 | 185 | |
|
186 | 186 | def _highlight_line_udiff(self, line, next): |
|
187 | 187 | """ |
|
188 | 188 | Highlight inline changes in both lines. |
|
189 | 189 | """ |
|
190 | 190 | start = 0 |
|
191 | 191 | limit = min(len(line['line']), len(next['line'])) |
|
192 | 192 | while start < limit and line['line'][start] == next['line'][start]: |
|
193 | 193 | start += 1 |
|
194 | 194 | end = -1 |
|
195 | 195 | limit -= start |
|
196 | 196 | while -end <= limit and line['line'][end] == next['line'][end]: |
|
197 | 197 | end -= 1 |
|
198 | 198 | end += 1 |
|
199 | 199 | if start or end: |
|
200 | 200 | def do(l): |
|
201 | 201 | last = end + len(l['line']) |
|
202 | 202 | if l['action'] == 'add': |
|
203 | 203 | tag = 'ins' |
|
204 | 204 | else: |
|
205 | 205 | tag = 'del' |
|
206 | 206 | l['line'] = '%s<%s>%s</%s>%s' % ( |
|
207 | 207 | l['line'][:start], |
|
208 | 208 | tag, |
|
209 | 209 | l['line'][start:last], |
|
210 | 210 | tag, |
|
211 | 211 | l['line'][last:] |
|
212 | 212 | ) |
|
213 | 213 | do(line) |
|
214 | 214 | do(next) |
|
215 | 215 | |
|
216 | 216 | def _parse_udiff(self): |
|
217 | 217 | """ |
|
218 | 218 | Parse the diff an return data for the template. |
|
219 | 219 | """ |
|
220 | 220 | lineiter = self.lines |
|
221 | 221 | files = [] |
|
222 | 222 | try: |
|
223 | 223 | line = lineiter.next() |
|
224 | 224 | # skip first context |
|
225 | 225 | skipfirst = True |
|
226 | 226 | while 1: |
|
227 | 227 | # continue until we found the old file |
|
228 | 228 | if not line.startswith('--- '): |
|
229 | 229 | line = lineiter.next() |
|
230 | 230 | continue |
|
231 | 231 | |
|
232 | 232 | chunks = [] |
|
233 | 233 | filename, old_rev, new_rev = \ |
|
234 | 234 | self._extract_rev(line, lineiter.next()) |
|
235 | 235 | files.append({ |
|
236 | 236 | 'filename': filename, |
|
237 | 237 | 'old_revision': old_rev, |
|
238 | 238 | 'new_revision': new_rev, |
|
239 | 239 | 'chunks': chunks |
|
240 | 240 | }) |
|
241 | 241 | |
|
242 | 242 | line = lineiter.next() |
|
243 | 243 | while line: |
|
244 | 244 | match = self._chunk_re.match(line) |
|
245 | 245 | if not match: |
|
246 | 246 | break |
|
247 | 247 | |
|
248 | 248 | lines = [] |
|
249 | 249 | chunks.append(lines) |
|
250 | 250 | |
|
251 | 251 | old_line, old_end, new_line, new_end = \ |
|
252 | 252 | [int(x or 1) for x in match.groups()[:-1]] |
|
253 | 253 | old_line -= 1 |
|
254 | 254 | new_line -= 1 |
|
255 | 255 | context = len(match.groups()) == 5 |
|
256 | 256 | old_end += old_line |
|
257 | 257 | new_end += new_line |
|
258 | 258 | |
|
259 | 259 | if context: |
|
260 | 260 | if not skipfirst: |
|
261 | 261 | lines.append({ |
|
262 | 262 | 'old_lineno': '...', |
|
263 | 263 | 'new_lineno': '...', |
|
264 | 264 | 'action': 'context', |
|
265 | 265 | 'line': line, |
|
266 | 266 | }) |
|
267 | 267 | else: |
|
268 | 268 | skipfirst = False |
|
269 | 269 | |
|
270 | 270 | line = lineiter.next() |
|
271 | 271 | while old_line < old_end or new_line < new_end: |
|
272 | 272 | if line: |
|
273 | 273 | command, line = line[0], line[1:] |
|
274 | 274 | else: |
|
275 | 275 | command = ' ' |
|
276 | 276 | affects_old = affects_new = False |
|
277 | 277 | |
|
278 | 278 | # ignore those if we don't expect them |
|
279 | 279 | if command in '#@': |
|
280 | 280 | continue |
|
281 | 281 | elif command == '+': |
|
282 | 282 | affects_new = True |
|
283 | 283 | action = 'add' |
|
284 | 284 | elif command == '-': |
|
285 | 285 | affects_old = True |
|
286 | 286 | action = 'del' |
|
287 | 287 | else: |
|
288 | 288 | affects_old = affects_new = True |
|
289 | 289 | action = 'unmod' |
|
290 | 290 | |
|
291 | 291 | old_line += affects_old |
|
292 | 292 | new_line += affects_new |
|
293 | 293 | lines.append({ |
|
294 | 294 | 'old_lineno': affects_old and old_line or '', |
|
295 | 295 | 'new_lineno': affects_new and new_line or '', |
|
296 | 296 | 'action': action, |
|
297 | 297 | 'line': line |
|
298 | 298 | }) |
|
299 | 299 | line = lineiter.next() |
|
300 | 300 | |
|
301 | 301 | except StopIteration: |
|
302 | 302 | pass |
|
303 | 303 | |
|
304 | 304 | # highlight inline changes |
|
305 | 305 | for file in files: |
|
306 | 306 | for chunk in chunks: |
|
307 | 307 | lineiter = iter(chunk) |
|
308 | 308 | #first = True |
|
309 | 309 | try: |
|
310 | 310 | while 1: |
|
311 | 311 | line = lineiter.next() |
|
312 | 312 | if line['action'] != 'unmod': |
|
313 | 313 | nextline = lineiter.next() |
|
314 | 314 | if nextline['action'] == 'unmod' or \ |
|
315 | 315 | nextline['action'] == line['action']: |
|
316 | 316 | continue |
|
317 | 317 | self.differ(line, nextline) |
|
318 | 318 | except StopIteration: |
|
319 | 319 | pass |
|
320 | 320 | |
|
321 | 321 | return files |
|
322 | 322 | |
|
323 | 323 | def prepare(self): |
|
324 | 324 | """ |
|
325 | 325 | Prepare the passed udiff for HTML rendering. It'l return a list |
|
326 | 326 | of dicts |
|
327 | 327 | """ |
|
328 | 328 | return self._parse_udiff() |
|
329 | 329 | |
|
330 | 330 | def _safe_id(self, idstring): |
|
331 | 331 | """Make a string safe for including in an id attribute. |
|
332 | 332 | |
|
333 | 333 | The HTML spec says that id attributes 'must begin with |
|
334 | 334 | a letter ([A-Za-z]) and may be followed by any number |
|
335 | 335 | of letters, digits ([0-9]), hyphens ("-"), underscores |
|
336 | 336 | ("_"), colons (":"), and periods (".")'. These regexps |
|
337 | 337 | are slightly over-zealous, in that they remove colons |
|
338 | 338 | and periods unnecessarily. |
|
339 | 339 | |
|
340 | 340 | Whitespace is transformed into underscores, and then |
|
341 | 341 | anything which is not a hyphen or a character that |
|
342 | 342 | matches \w (alphanumerics and underscore) is removed. |
|
343 | 343 | |
|
344 | 344 | """ |
|
345 | 345 | # Transform all whitespace to underscore |
|
346 | 346 | idstring = re.sub(r'\s', "_", '%s' % idstring) |
|
347 | 347 | # Remove everything that is not a hyphen or a member of \w |
|
348 | 348 | idstring = re.sub(r'(?!-)\W', "", idstring).lower() |
|
349 | 349 | return idstring |
|
350 | 350 | |
|
351 | 351 | def raw_diff(self): |
|
352 | 352 | """ |
|
353 | 353 | Returns raw string as udiff |
|
354 | 354 | """ |
|
355 | 355 | udiff_copy = self.copy_iterator() |
|
356 | 356 | if self.__format == 'gitdiff': |
|
357 | 357 | udiff_copy = self._parse_gitdiff(udiff_copy) |
|
358 | 358 | return u''.join(udiff_copy) |
|
359 | 359 | |
|
360 | 360 | def as_html(self, table_class='code-difftable', line_class='line', |
|
361 | 361 | new_lineno_class='lineno old', old_lineno_class='lineno new', |
|
362 | 362 | code_class='code'): |
|
363 | 363 | """ |
|
364 | 364 | Return udiff as html table with customized css classes |
|
365 | 365 | """ |
|
366 | 366 | def _link_to_if(condition, label, url): |
|
367 | 367 | """ |
|
368 | 368 | Generates a link if condition is meet or just the label if not. |
|
369 | 369 | """ |
|
370 | 370 | |
|
371 | 371 | if condition: |
|
372 | 372 | return '''<a href="%(url)s">%(label)s</a>''' % {'url': url, |
|
373 | 373 | 'label': label} |
|
374 | 374 | else: |
|
375 | 375 | return label |
|
376 | 376 | diff_lines = self.prepare() |
|
377 | 377 | _html_empty = True |
|
378 | 378 | _html = [] |
|
379 | 379 | _html.append('''<table class="%(table_class)s">\n''' \ |
|
380 | 380 | % {'table_class': table_class}) |
|
381 | 381 | for diff in diff_lines: |
|
382 | 382 | for line in diff['chunks']: |
|
383 | 383 | _html_empty = False |
|
384 | 384 | for change in line: |
|
385 | 385 | _html.append('''<tr class="%(line_class)s %(action)s">\n''' \ |
|
386 | 386 | % {'line_class': line_class, |
|
387 | 387 | 'action': change['action']}) |
|
388 | 388 | anchor_old_id = '' |
|
389 | 389 | anchor_new_id = '' |
|
390 | 390 | anchor_old = "%(filename)s_o%(oldline_no)s" % \ |
|
391 | 391 | {'filename': self._safe_id(diff['filename']), |
|
392 | 392 | 'oldline_no': change['old_lineno']} |
|
393 | 393 | anchor_new = "%(filename)s_n%(oldline_no)s" % \ |
|
394 | 394 | {'filename': self._safe_id(diff['filename']), |
|
395 | 395 | 'oldline_no': change['new_lineno']} |
|
396 | 396 | cond_old = change['old_lineno'] != '...' and \ |
|
397 | 397 | change['old_lineno'] |
|
398 | 398 | cond_new = change['new_lineno'] != '...' and \ |
|
399 | 399 | change['new_lineno'] |
|
400 | 400 | if cond_old: |
|
401 | 401 | anchor_old_id = 'id="%s"' % anchor_old |
|
402 | 402 | if cond_new: |
|
403 | 403 | anchor_new_id = 'id="%s"' % anchor_new |
|
404 | 404 | ########################################################### |
|
405 | 405 | # OLD LINE NUMBER |
|
406 | 406 | ########################################################### |
|
407 | 407 | _html.append('''\t<td %(a_id)s class="%(old_lineno_cls)s">''' \ |
|
408 | 408 | % {'a_id': anchor_old_id, |
|
409 | 409 | 'old_lineno_cls': old_lineno_class}) |
|
410 | 410 | |
|
411 |
_html.append(''' |
|
|
411 | _html.append('''%(link)s''' \ | |
|
412 | 412 | % {'link': |
|
413 | 413 | _link_to_if(cond_old, change['old_lineno'], '#%s' \ |
|
414 | 414 | % anchor_old)}) |
|
415 | 415 | _html.append('''</td>\n''') |
|
416 | 416 | ########################################################### |
|
417 | 417 | # NEW LINE NUMBER |
|
418 | 418 | ########################################################### |
|
419 | 419 | |
|
420 | 420 | _html.append('''\t<td %(a_id)s class="%(new_lineno_cls)s">''' \ |
|
421 | 421 | % {'a_id': anchor_new_id, |
|
422 | 422 | 'new_lineno_cls': new_lineno_class}) |
|
423 | 423 | |
|
424 |
_html.append(''' |
|
|
424 | _html.append('''%(link)s''' \ | |
|
425 | 425 | % {'link': |
|
426 | 426 | _link_to_if(cond_new, change['new_lineno'], '#%s' \ |
|
427 | 427 | % anchor_new)}) |
|
428 | 428 | _html.append('''</td>\n''') |
|
429 | 429 | ########################################################### |
|
430 | 430 | # CODE |
|
431 | 431 | ########################################################### |
|
432 | 432 | _html.append('''\t<td class="%(code_class)s">''' \ |
|
433 | 433 | % {'code_class': code_class}) |
|
434 | 434 | _html.append('''\n\t\t<pre>%(code)s</pre>\n''' \ |
|
435 | 435 | % {'code': change['line']}) |
|
436 | 436 | _html.append('''\t</td>''') |
|
437 | 437 | _html.append('''\n</tr>\n''') |
|
438 | 438 | _html.append('''</table>''') |
|
439 | 439 | if _html_empty: |
|
440 | 440 | return None |
|
441 | 441 | return ''.join(_html) |
|
442 | 442 | |
|
443 | 443 | def stat(self): |
|
444 | 444 | """ |
|
445 | 445 | Returns tuple of added, and removed lines for this instance |
|
446 | 446 | """ |
|
447 | 447 | return self.adds, self.removes |
@@ -1,3639 +1,3774 b'' | |||
|
1 | 1 | html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td |
|
2 | 2 | { |
|
3 | 3 | border: 0; |
|
4 | 4 | outline: 0; |
|
5 | 5 | font-size: 100%; |
|
6 | 6 | vertical-align: baseline; |
|
7 | 7 | background: transparent; |
|
8 | 8 | margin: 0; |
|
9 | 9 | padding: 0; |
|
10 | 10 | } |
|
11 | 11 | |
|
12 | 12 | body { |
|
13 | 13 | line-height: 1; |
|
14 | 14 | height: 100%; |
|
15 | 15 | background: url("../images/background.png") repeat scroll 0 0 #B0B0B0; |
|
16 | 16 | font-family: Lucida Grande, Verdana, Lucida Sans Regular, |
|
17 | 17 | Lucida Sans Unicode, Arial, sans-serif; font-size : 12px; |
|
18 | 18 | color: #000; |
|
19 | 19 | margin: 0; |
|
20 | 20 | padding: 0; |
|
21 | 21 | font-size: 12px; |
|
22 | 22 | } |
|
23 | 23 | |
|
24 | 24 | ol,ul { |
|
25 | 25 | list-style: none; |
|
26 | 26 | } |
|
27 | 27 | |
|
28 | 28 | blockquote,q { |
|
29 | 29 | quotes: none; |
|
30 | 30 | } |
|
31 | 31 | |
|
32 | 32 | blockquote:before,blockquote:after,q:before,q:after { |
|
33 | 33 | content: none; |
|
34 | 34 | } |
|
35 | 35 | |
|
36 | 36 | :focus { |
|
37 | 37 | outline: 0; |
|
38 | 38 | } |
|
39 | 39 | |
|
40 | 40 | del { |
|
41 | 41 | text-decoration: line-through; |
|
42 | 42 | } |
|
43 | 43 | |
|
44 | 44 | table { |
|
45 | 45 | border-collapse: collapse; |
|
46 | 46 | border-spacing: 0; |
|
47 | 47 | } |
|
48 | 48 | |
|
49 | 49 | html { |
|
50 | 50 | height: 100%; |
|
51 | 51 | } |
|
52 | 52 | |
|
53 | 53 | a { |
|
54 | 54 | color: #003367; |
|
55 | 55 | text-decoration: none; |
|
56 | 56 | cursor: pointer; |
|
57 | 57 | } |
|
58 | 58 | |
|
59 | 59 | a:hover { |
|
60 | 60 | color: #316293; |
|
61 | 61 | text-decoration: underline; |
|
62 | 62 | } |
|
63 | 63 | |
|
64 | 64 | h1,h2,h3,h4,h5,h6 { |
|
65 | 65 | color: #292929; |
|
66 | 66 | font-weight: 700; |
|
67 | 67 | } |
|
68 | 68 | |
|
69 | 69 | h1 { |
|
70 | 70 | font-size: 22px; |
|
71 | 71 | } |
|
72 | 72 | |
|
73 | 73 | h2 { |
|
74 | 74 | font-size: 20px; |
|
75 | 75 | } |
|
76 | 76 | |
|
77 | 77 | h3 { |
|
78 | 78 | font-size: 18px; |
|
79 | 79 | } |
|
80 | 80 | |
|
81 | 81 | h4 { |
|
82 | 82 | font-size: 16px; |
|
83 | 83 | } |
|
84 | 84 | |
|
85 | 85 | h5 { |
|
86 | 86 | font-size: 14px; |
|
87 | 87 | } |
|
88 | 88 | |
|
89 | 89 | h6 { |
|
90 | 90 | font-size: 11px; |
|
91 | 91 | } |
|
92 | 92 | |
|
93 | 93 | ul.circle { |
|
94 | 94 | list-style-type: circle; |
|
95 | 95 | } |
|
96 | 96 | |
|
97 | 97 | ul.disc { |
|
98 | 98 | list-style-type: disc; |
|
99 | 99 | } |
|
100 | 100 | |
|
101 | 101 | ul.square { |
|
102 | 102 | list-style-type: square; |
|
103 | 103 | } |
|
104 | 104 | |
|
105 | 105 | ol.lower-roman { |
|
106 | 106 | list-style-type: lower-roman; |
|
107 | 107 | } |
|
108 | 108 | |
|
109 | 109 | ol.upper-roman { |
|
110 | 110 | list-style-type: upper-roman; |
|
111 | 111 | } |
|
112 | 112 | |
|
113 | 113 | ol.lower-alpha { |
|
114 | 114 | list-style-type: lower-alpha; |
|
115 | 115 | } |
|
116 | 116 | |
|
117 | 117 | ol.upper-alpha { |
|
118 | 118 | list-style-type: upper-alpha; |
|
119 | 119 | } |
|
120 | 120 | |
|
121 | 121 | ol.decimal { |
|
122 | 122 | list-style-type: decimal; |
|
123 | 123 | } |
|
124 | 124 | |
|
125 | 125 | div.color { |
|
126 | 126 | clear: both; |
|
127 | 127 | overflow: hidden; |
|
128 | 128 | position: absolute; |
|
129 | 129 | background: #FFF; |
|
130 | 130 | margin: 7px 0 0 60px; |
|
131 | 131 | padding: 1px 1px 1px 0; |
|
132 | 132 | } |
|
133 | 133 | |
|
134 | 134 | div.color a { |
|
135 | 135 | width: 15px; |
|
136 | 136 | height: 15px; |
|
137 | 137 | display: block; |
|
138 | 138 | float: left; |
|
139 | 139 | margin: 0 0 0 1px; |
|
140 | 140 | padding: 0; |
|
141 | 141 | } |
|
142 | 142 | |
|
143 | 143 | div.options { |
|
144 | 144 | clear: both; |
|
145 | 145 | overflow: hidden; |
|
146 | 146 | position: absolute; |
|
147 | 147 | background: #FFF; |
|
148 | 148 | margin: 7px 0 0 162px; |
|
149 | 149 | padding: 0; |
|
150 | 150 | } |
|
151 | 151 | |
|
152 | 152 | div.options a { |
|
153 | 153 | height: 1%; |
|
154 | 154 | display: block; |
|
155 | 155 | text-decoration: none; |
|
156 | 156 | margin: 0; |
|
157 | 157 | padding: 3px 8px; |
|
158 | 158 | } |
|
159 | 159 | |
|
160 | 160 | .top-left-rounded-corner { |
|
161 | 161 | -webkit-border-top-left-radius: 8px; |
|
162 | 162 | -khtml-border-radius-topleft: 8px; |
|
163 | 163 | -moz-border-radius-topleft: 8px; |
|
164 | 164 | border-top-left-radius: 8px; |
|
165 | 165 | } |
|
166 | 166 | |
|
167 | 167 | .top-right-rounded-corner { |
|
168 | 168 | -webkit-border-top-right-radius: 8px; |
|
169 | 169 | -khtml-border-radius-topright: 8px; |
|
170 | 170 | -moz-border-radius-topright: 8px; |
|
171 | 171 | border-top-right-radius: 8px; |
|
172 | 172 | } |
|
173 | 173 | |
|
174 | 174 | .bottom-left-rounded-corner { |
|
175 | 175 | -webkit-border-bottom-left-radius: 8px; |
|
176 | 176 | -khtml-border-radius-bottomleft: 8px; |
|
177 | 177 | -moz-border-radius-bottomleft: 8px; |
|
178 | 178 | border-bottom-left-radius: 8px; |
|
179 | 179 | } |
|
180 | 180 | |
|
181 | 181 | .bottom-right-rounded-corner { |
|
182 | 182 | -webkit-border-bottom-right-radius: 8px; |
|
183 | 183 | -khtml-border-radius-bottomright: 8px; |
|
184 | 184 | -moz-border-radius-bottomright: 8px; |
|
185 | 185 | border-bottom-right-radius: 8px; |
|
186 | 186 | } |
|
187 | 187 | |
|
188 | 188 | #header { |
|
189 | 189 | margin: 0; |
|
190 | 190 | padding: 0 10px; |
|
191 | 191 | } |
|
192 | 192 | |
|
193 | 193 | #header ul#logged-user { |
|
194 | 194 | margin-bottom: 5px !important; |
|
195 | 195 | -webkit-border-radius: 0px 0px 8px 8px; |
|
196 | 196 | -khtml-border-radius: 0px 0px 8px 8px; |
|
197 | 197 | -moz-border-radius: 0px 0px 8px 8px; |
|
198 | 198 | border-radius: 0px 0px 8px 8px; |
|
199 | 199 | height: 37px; |
|
200 | 200 | background-color: #eedc94; |
|
201 | 201 | background-repeat: repeat-x; |
|
202 | 202 | background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), |
|
203 | 203 | to(#eedc94) ); |
|
204 | 204 | background-image: -moz-linear-gradient(top, #003b76, #00376e); |
|
205 | 205 | background-image: -ms-linear-gradient(top, #003b76, #00376e); |
|
206 | 206 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76), |
|
207 | 207 | color-stop(100%, #00376e) ); |
|
208 | 208 | background-image: -webkit-linear-gradient(top, #003b76, #00376e) ); |
|
209 | 209 | background-image: -o-linear-gradient(top, #003b76, #00376e) ); |
|
210 | 210 | background-image: linear-gradient(top, #003b76, #00376e); |
|
211 | 211 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76', |
|
212 | 212 | endColorstr='#00376e', GradientType=0 ); |
|
213 | 213 | box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6); |
|
214 | 214 | } |
|
215 | 215 | |
|
216 | 216 | #header ul#logged-user li { |
|
217 | 217 | list-style: none; |
|
218 | 218 | float: left; |
|
219 | 219 | margin: 8px 0 0; |
|
220 | 220 | padding: 4px 12px; |
|
221 | 221 | border-left: 1px solid #316293; |
|
222 | 222 | } |
|
223 | 223 | |
|
224 | 224 | #header ul#logged-user li.first { |
|
225 | 225 | border-left: none; |
|
226 | 226 | margin: 4px; |
|
227 | 227 | } |
|
228 | 228 | |
|
229 | 229 | #header ul#logged-user li.first div.gravatar { |
|
230 | 230 | margin-top: -2px; |
|
231 | 231 | } |
|
232 | 232 | |
|
233 | 233 | #header ul#logged-user li.first div.account { |
|
234 | 234 | padding-top: 4px; |
|
235 | 235 | float: left; |
|
236 | 236 | } |
|
237 | 237 | |
|
238 | 238 | #header ul#logged-user li.last { |
|
239 | 239 | border-right: none; |
|
240 | 240 | } |
|
241 | 241 | |
|
242 | 242 | #header ul#logged-user li a { |
|
243 | 243 | color: #fff; |
|
244 | 244 | font-weight: 700; |
|
245 | 245 | text-decoration: none; |
|
246 | 246 | } |
|
247 | 247 | |
|
248 | 248 | #header ul#logged-user li a:hover { |
|
249 | 249 | text-decoration: underline; |
|
250 | 250 | } |
|
251 | 251 | |
|
252 | 252 | #header ul#logged-user li.highlight a { |
|
253 | 253 | color: #fff; |
|
254 | 254 | } |
|
255 | 255 | |
|
256 | 256 | #header ul#logged-user li.highlight a:hover { |
|
257 | 257 | color: #FFF; |
|
258 | 258 | } |
|
259 | 259 | |
|
260 | 260 | #header #header-inner { |
|
261 | 261 | min-height: 40px; |
|
262 | 262 | clear: both; |
|
263 | 263 | position: relative; |
|
264 | 264 | background-color: #eedc94; |
|
265 | 265 | background-repeat: repeat-x; |
|
266 | 266 | background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), |
|
267 | 267 | to(#eedc94) ); |
|
268 | 268 | background-image: -moz-linear-gradient(top, #003b76, #00376e); |
|
269 | 269 | background-image: -ms-linear-gradient(top, #003b76, #00376e); |
|
270 | 270 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76), |
|
271 | 271 | color-stop(100%, #00376e) ); |
|
272 | 272 | background-image: -webkit-linear-gradient(top, #003b76, #00376e) ); |
|
273 | 273 | background-image: -o-linear-gradient(top, #003b76, #00376e) ); |
|
274 | 274 | background-image: linear-gradient(top, #003b76, #00376e); |
|
275 | 275 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76', |
|
276 | 276 | endColorstr='#00376e', GradientType=0 ); |
|
277 | 277 | margin: 0; |
|
278 | 278 | padding: 0; |
|
279 | 279 | display: block; |
|
280 | 280 | box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6); |
|
281 | 281 | -webkit-border-radius: 4px 4px 4px 4px; |
|
282 | 282 | -khtml-border-radius: 4px 4px 4px 4px; |
|
283 | 283 | -moz-border-radius: 4px 4px 4px 4px; |
|
284 | 284 | border-radius: 4px 4px 4px 4px; |
|
285 | 285 | } |
|
286 | 286 | #header #header-inner.hover{ |
|
287 | 287 | position: fixed !important; |
|
288 | 288 | width: 100% !important; |
|
289 | 289 | margin-left: -10px !important; |
|
290 | 290 | z-index: 10000; |
|
291 | 291 | border-radius: 0px 0px 4px 4px; |
|
292 | 292 | } |
|
293 | 293 | #header #header-inner #home a { |
|
294 | 294 | height: 40px; |
|
295 | 295 | width: 46px; |
|
296 | 296 | display: block; |
|
297 | 297 | background: url("../images/button_home.png"); |
|
298 | 298 | background-position: 0 0; |
|
299 | 299 | margin: 0; |
|
300 | 300 | padding: 0; |
|
301 | 301 | } |
|
302 | 302 | |
|
303 | 303 | #header #header-inner #home a:hover { |
|
304 | 304 | background-position: 0 -40px; |
|
305 | 305 | } |
|
306 | 306 | |
|
307 | 307 | #header #header-inner #logo { |
|
308 | 308 | float: left; |
|
309 | 309 | position: absolute; |
|
310 | 310 | } |
|
311 | 311 | |
|
312 | 312 | #header #header-inner #logo h1 { |
|
313 | 313 | color: #FFF; |
|
314 | 314 | font-size: 18px; |
|
315 | 315 | margin: 10px 0 0 13px; |
|
316 | 316 | padding: 0; |
|
317 | 317 | } |
|
318 | 318 | |
|
319 | 319 | #header #header-inner #logo a { |
|
320 | 320 | color: #fff; |
|
321 | 321 | text-decoration: none; |
|
322 | 322 | } |
|
323 | 323 | |
|
324 | 324 | #header #header-inner #logo a:hover { |
|
325 | 325 | color: #bfe3ff; |
|
326 | 326 | } |
|
327 | 327 | |
|
328 | 328 | #header #header-inner #quick,#header #header-inner #quick ul { |
|
329 | 329 | position: relative; |
|
330 | 330 | float: right; |
|
331 | 331 | list-style-type: none; |
|
332 | 332 | list-style-position: outside; |
|
333 | 333 | margin: 6px 5px 0 0; |
|
334 | 334 | padding: 0; |
|
335 | 335 | } |
|
336 | 336 | |
|
337 | 337 | #header #header-inner #quick li { |
|
338 | 338 | position: relative; |
|
339 | 339 | float: left; |
|
340 | 340 | margin: 0 5px 0 0; |
|
341 | 341 | padding: 0; |
|
342 | 342 | } |
|
343 | 343 | |
|
344 | 344 | #header #header-inner #quick li a { |
|
345 | 345 | top: 0; |
|
346 | 346 | left: 0; |
|
347 | 347 | height: 1%; |
|
348 | 348 | display: block; |
|
349 | 349 | clear: both; |
|
350 | 350 | overflow: hidden; |
|
351 | 351 | color: #FFF; |
|
352 | 352 | font-weight: 700; |
|
353 | 353 | text-decoration: none; |
|
354 | 354 | background: #369; |
|
355 | 355 | padding: 0; |
|
356 | 356 | -webkit-border-radius: 4px 4px 4px 4px; |
|
357 | 357 | -khtml-border-radius: 4px 4px 4px 4px; |
|
358 | 358 | -moz-border-radius: 4px 4px 4px 4px; |
|
359 | 359 | border-radius: 4px 4px 4px 4px; |
|
360 | 360 | } |
|
361 | 361 | |
|
362 | 362 | #header #header-inner #quick li span.short { |
|
363 | 363 | padding: 9px 6px 8px 6px; |
|
364 | 364 | } |
|
365 | 365 | |
|
366 | 366 | #header #header-inner #quick li span { |
|
367 | 367 | top: 0; |
|
368 | 368 | right: 0; |
|
369 | 369 | height: 1%; |
|
370 | 370 | display: block; |
|
371 | 371 | float: left; |
|
372 | 372 | border-left: 1px solid #3f6f9f; |
|
373 | 373 | margin: 0; |
|
374 | 374 | padding: 10px 12px 8px 10px; |
|
375 | 375 | } |
|
376 | 376 | |
|
377 | 377 | #header #header-inner #quick li span.normal { |
|
378 | 378 | border: none; |
|
379 | 379 | padding: 10px 12px 8px; |
|
380 | 380 | } |
|
381 | 381 | |
|
382 | 382 | #header #header-inner #quick li span.icon { |
|
383 | 383 | top: 0; |
|
384 | 384 | left: 0; |
|
385 | 385 | border-left: none; |
|
386 | 386 | border-right: 1px solid #2e5c89; |
|
387 | 387 | padding: 8px 6px 4px; |
|
388 | 388 | } |
|
389 | 389 | |
|
390 | 390 | #header #header-inner #quick li span.icon_short { |
|
391 | 391 | top: 0; |
|
392 | 392 | left: 0; |
|
393 | 393 | border-left: none; |
|
394 | 394 | border-right: 1px solid #2e5c89; |
|
395 | 395 | padding: 8px 6px 4px; |
|
396 | 396 | } |
|
397 | 397 | |
|
398 | 398 | #header #header-inner #quick li span.icon img,#header #header-inner #quick li span.icon_short img |
|
399 | 399 | { |
|
400 | 400 | margin: 0px -2px 0px 0px; |
|
401 | 401 | } |
|
402 | 402 | |
|
403 | 403 | #header #header-inner #quick li a:hover { |
|
404 | 404 | background: #4e4e4e no-repeat top left; |
|
405 | 405 | } |
|
406 | 406 | |
|
407 | 407 | #header #header-inner #quick li a:hover span { |
|
408 | 408 | border-left: 1px solid #545454; |
|
409 | 409 | } |
|
410 | 410 | |
|
411 | 411 | #header #header-inner #quick li a:hover span.icon,#header #header-inner #quick li a:hover span.icon_short |
|
412 | 412 | { |
|
413 | 413 | border-left: none; |
|
414 | 414 | border-right: 1px solid #464646; |
|
415 | 415 | } |
|
416 | 416 | |
|
417 | 417 | #header #header-inner #quick ul { |
|
418 | 418 | top: 29px; |
|
419 | 419 | right: 0; |
|
420 | 420 | min-width: 200px; |
|
421 | 421 | display: none; |
|
422 | 422 | position: absolute; |
|
423 | 423 | background: #FFF; |
|
424 | 424 | border: 1px solid #666; |
|
425 | 425 | border-top: 1px solid #003367; |
|
426 | 426 | z-index: 100; |
|
427 | 427 | margin: 0; |
|
428 | 428 | padding: 0; |
|
429 | 429 | } |
|
430 | 430 | |
|
431 | 431 | #header #header-inner #quick ul.repo_switcher { |
|
432 | 432 | max-height: 275px; |
|
433 | 433 | overflow-x: hidden; |
|
434 | 434 | overflow-y: auto; |
|
435 | 435 | } |
|
436 | 436 | |
|
437 | 437 | #header #header-inner #quick ul.repo_switcher li.qfilter_rs { |
|
438 | 438 | float: none; |
|
439 | 439 | margin: 0; |
|
440 | 440 | border-bottom: 2px solid #003367; |
|
441 | 441 | } |
|
442 | 442 | |
|
443 | 443 | #header #header-inner #quick .repo_switcher_type { |
|
444 | 444 | position: absolute; |
|
445 | 445 | left: 0; |
|
446 | 446 | top: 9px; |
|
447 | 447 | } |
|
448 | 448 | |
|
449 | 449 | #header #header-inner #quick li ul li { |
|
450 | 450 | border-bottom: 1px solid #ddd; |
|
451 | 451 | } |
|
452 | 452 | |
|
453 | 453 | #header #header-inner #quick li ul li a { |
|
454 | 454 | width: 182px; |
|
455 | 455 | height: auto; |
|
456 | 456 | display: block; |
|
457 | 457 | float: left; |
|
458 | 458 | background: #FFF; |
|
459 | 459 | color: #003367; |
|
460 | 460 | font-weight: 400; |
|
461 | 461 | margin: 0; |
|
462 | 462 | padding: 7px 9px; |
|
463 | 463 | } |
|
464 | 464 | |
|
465 | 465 | #header #header-inner #quick li ul li a:hover { |
|
466 | 466 | color: #000; |
|
467 | 467 | background: #FFF; |
|
468 | 468 | } |
|
469 | 469 | |
|
470 | 470 | #header #header-inner #quick ul ul { |
|
471 | 471 | top: auto; |
|
472 | 472 | } |
|
473 | 473 | |
|
474 | 474 | #header #header-inner #quick li ul ul { |
|
475 | 475 | right: 200px; |
|
476 | 476 | max-height: 275px; |
|
477 | 477 | overflow: auto; |
|
478 | 478 | overflow-x: hidden; |
|
479 | 479 | white-space: normal; |
|
480 | 480 | } |
|
481 | 481 | |
|
482 | 482 | #header #header-inner #quick li ul li a.journal,#header #header-inner #quick li ul li a.journal:hover |
|
483 | 483 | { |
|
484 | 484 | background: url("../images/icons/book.png") no-repeat scroll 4px 9px |
|
485 | 485 | #FFF; |
|
486 | 486 | width: 167px; |
|
487 | 487 | margin: 0; |
|
488 | 488 | padding: 12px 9px 7px 24px; |
|
489 | 489 | } |
|
490 | 490 | |
|
491 | 491 | #header #header-inner #quick li ul li a.private_repo,#header #header-inner #quick li ul li a.private_repo:hover |
|
492 | 492 | { |
|
493 | 493 | background: url("../images/icons/lock.png") no-repeat scroll 4px 9px |
|
494 | 494 | #FFF; |
|
495 | 495 | min-width: 167px; |
|
496 | 496 | margin: 0; |
|
497 | 497 | padding: 12px 9px 7px 24px; |
|
498 | 498 | } |
|
499 | 499 | |
|
500 | 500 | #header #header-inner #quick li ul li a.public_repo,#header #header-inner #quick li ul li a.public_repo:hover |
|
501 | 501 | { |
|
502 | 502 | background: url("../images/icons/lock_open.png") no-repeat scroll 4px |
|
503 | 503 | 9px #FFF; |
|
504 | 504 | min-width: 167px; |
|
505 | 505 | margin: 0; |
|
506 | 506 | padding: 12px 9px 7px 24px; |
|
507 | 507 | } |
|
508 | 508 | |
|
509 | 509 | #header #header-inner #quick li ul li a.hg,#header #header-inner #quick li ul li a.hg:hover |
|
510 | 510 | { |
|
511 | 511 | background: url("../images/icons/hgicon.png") no-repeat scroll 4px 9px |
|
512 | 512 | #FFF; |
|
513 | 513 | min-width: 167px; |
|
514 | 514 | margin: 0 0 0 14px; |
|
515 | 515 | padding: 12px 9px 7px 24px; |
|
516 | 516 | } |
|
517 | 517 | |
|
518 | 518 | #header #header-inner #quick li ul li a.git,#header #header-inner #quick li ul li a.git:hover |
|
519 | 519 | { |
|
520 | 520 | background: url("../images/icons/giticon.png") no-repeat scroll 4px 9px |
|
521 | 521 | #FFF; |
|
522 | 522 | min-width: 167px; |
|
523 | 523 | margin: 0 0 0 14px; |
|
524 | 524 | padding: 12px 9px 7px 24px; |
|
525 | 525 | } |
|
526 | 526 | |
|
527 | 527 | #header #header-inner #quick li ul li a.repos,#header #header-inner #quick li ul li a.repos:hover |
|
528 | 528 | { |
|
529 | 529 | background: url("../images/icons/database_edit.png") no-repeat scroll |
|
530 | 530 | 4px 9px #FFF; |
|
531 | 531 | width: 167px; |
|
532 | 532 | margin: 0; |
|
533 | 533 | padding: 12px 9px 7px 24px; |
|
534 | 534 | } |
|
535 | 535 | |
|
536 | 536 | #header #header-inner #quick li ul li a.repos_groups,#header #header-inner #quick li ul li a.repos_groups:hover |
|
537 | 537 | { |
|
538 | 538 | background: url("../images/icons/database_link.png") no-repeat scroll |
|
539 | 539 | 4px 9px #FFF; |
|
540 | 540 | width: 167px; |
|
541 | 541 | margin: 0; |
|
542 | 542 | padding: 12px 9px 7px 24px; |
|
543 | 543 | } |
|
544 | 544 | |
|
545 | 545 | #header #header-inner #quick li ul li a.users,#header #header-inner #quick li ul li a.users:hover |
|
546 | 546 | { |
|
547 | 547 | background: #FFF url("../images/icons/user_edit.png") no-repeat 4px 9px; |
|
548 | 548 | width: 167px; |
|
549 | 549 | margin: 0; |
|
550 | 550 | padding: 12px 9px 7px 24px; |
|
551 | 551 | } |
|
552 | 552 | |
|
553 | 553 | #header #header-inner #quick li ul li a.groups,#header #header-inner #quick li ul li a.groups:hover |
|
554 | 554 | { |
|
555 | 555 | background: #FFF url("../images/icons/group_edit.png") no-repeat 4px 9px; |
|
556 | 556 | width: 167px; |
|
557 | 557 | margin: 0; |
|
558 | 558 | padding: 12px 9px 7px 24px; |
|
559 | 559 | } |
|
560 | 560 | |
|
561 | 561 | #header #header-inner #quick li ul li a.settings,#header #header-inner #quick li ul li a.settings:hover |
|
562 | 562 | { |
|
563 | 563 | background: #FFF url("../images/icons/cog.png") no-repeat 4px 9px; |
|
564 | 564 | width: 167px; |
|
565 | 565 | margin: 0; |
|
566 | 566 | padding: 12px 9px 7px 24px; |
|
567 | 567 | } |
|
568 | 568 | |
|
569 | 569 | #header #header-inner #quick li ul li a.permissions,#header #header-inner #quick li ul li a.permissions:hover |
|
570 | 570 | { |
|
571 | 571 | background: #FFF url("../images/icons/key.png") no-repeat 4px 9px; |
|
572 | 572 | width: 167px; |
|
573 | 573 | margin: 0; |
|
574 | 574 | padding: 12px 9px 7px 24px; |
|
575 | 575 | } |
|
576 | 576 | |
|
577 | 577 | #header #header-inner #quick li ul li a.ldap,#header #header-inner #quick li ul li a.ldap:hover |
|
578 | 578 | { |
|
579 | 579 | background: #FFF url("../images/icons/server_key.png") no-repeat 4px 9px; |
|
580 | 580 | width: 167px; |
|
581 | 581 | margin: 0; |
|
582 | 582 | padding: 12px 9px 7px 24px; |
|
583 | 583 | } |
|
584 | 584 | |
|
585 | 585 | #header #header-inner #quick li ul li a.fork,#header #header-inner #quick li ul li a.fork:hover |
|
586 | 586 | { |
|
587 | 587 | background: #FFF url("../images/icons/arrow_divide.png") no-repeat 4px |
|
588 | 588 | 9px; |
|
589 | 589 | width: 167px; |
|
590 | 590 | margin: 0; |
|
591 | 591 | padding: 12px 9px 7px 24px; |
|
592 | 592 | } |
|
593 | 593 | |
|
594 | 594 | #header #header-inner #quick li ul li a.search,#header #header-inner #quick li ul li a.search:hover |
|
595 | 595 | { |
|
596 | 596 | background: #FFF url("../images/icons/search_16.png") no-repeat 4px 9px; |
|
597 | 597 | width: 167px; |
|
598 | 598 | margin: 0; |
|
599 | 599 | padding: 12px 9px 7px 24px; |
|
600 | 600 | } |
|
601 | 601 | |
|
602 | 602 | #header #header-inner #quick li ul li a.delete,#header #header-inner #quick li ul li a.delete:hover |
|
603 | 603 | { |
|
604 | 604 | background: #FFF url("../images/icons/delete.png") no-repeat 4px 9px; |
|
605 | 605 | width: 167px; |
|
606 | 606 | margin: 0; |
|
607 | 607 | padding: 12px 9px 7px 24px; |
|
608 | 608 | } |
|
609 | 609 | |
|
610 | 610 | #header #header-inner #quick li ul li a.branches,#header #header-inner #quick li ul li a.branches:hover |
|
611 | 611 | { |
|
612 | 612 | background: #FFF url("../images/icons/arrow_branch.png") no-repeat 4px |
|
613 | 613 | 9px; |
|
614 | 614 | width: 167px; |
|
615 | 615 | margin: 0; |
|
616 | 616 | padding: 12px 9px 7px 24px; |
|
617 | 617 | } |
|
618 | 618 | |
|
619 | 619 | #header #header-inner #quick li ul li a.tags, |
|
620 | 620 | #header #header-inner #quick li ul li a.tags:hover{ |
|
621 | 621 | background: #FFF url("../images/icons/tag_blue.png") no-repeat 4px 9px; |
|
622 | 622 | width: 167px; |
|
623 | 623 | margin: 0; |
|
624 | 624 | padding: 12px 9px 7px 24px; |
|
625 | 625 | } |
|
626 | 626 | |
|
627 | 627 | #header #header-inner #quick li ul li a.bookmarks, |
|
628 | 628 | #header #header-inner #quick li ul li a.bookmarks:hover{ |
|
629 | 629 | background: #FFF url("../images/icons/tag_green.png") no-repeat 4px 9px; |
|
630 | 630 | width: 167px; |
|
631 | 631 | margin: 0; |
|
632 | 632 | padding: 12px 9px 7px 24px; |
|
633 | 633 | } |
|
634 | 634 | |
|
635 | 635 | #header #header-inner #quick li ul li a.admin, |
|
636 | 636 | #header #header-inner #quick li ul li a.admin:hover{ |
|
637 | 637 | background: #FFF url("../images/icons/cog_edit.png") no-repeat 4px 9px; |
|
638 | 638 | width: 167px; |
|
639 | 639 | margin: 0; |
|
640 | 640 | padding: 12px 9px 7px 24px; |
|
641 | 641 | } |
|
642 | 642 | |
|
643 | 643 | .groups_breadcrumbs a { |
|
644 | 644 | color: #fff; |
|
645 | 645 | } |
|
646 | 646 | |
|
647 | 647 | .groups_breadcrumbs a:hover { |
|
648 | 648 | color: #bfe3ff; |
|
649 | 649 | text-decoration: none; |
|
650 | 650 | } |
|
651 | 651 | |
|
652 | 652 | .quick_repo_menu { |
|
653 | 653 | background: #FFF url("../images/vertical-indicator.png") 8px 50% no-repeat !important; |
|
654 | 654 | cursor: pointer; |
|
655 | 655 | width: 8px; |
|
656 | 656 | border: 1px solid transparent; |
|
657 | 657 | } |
|
658 | 658 | |
|
659 | 659 | .quick_repo_menu.active { |
|
660 | 660 | background: url("../images/horizontal-indicator.png") no-repeat scroll 5px 50% #FFFFFF !important; |
|
661 | 661 | border: 1px solid #003367; |
|
662 | 662 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); |
|
663 | 663 | cursor: pointer; |
|
664 | 664 | } |
|
665 | 665 | |
|
666 | 666 | .quick_repo_menu .menu_items { |
|
667 | 667 | margin-top: 10px; |
|
668 | 668 | margin-left:-6px; |
|
669 | 669 | width: 150px; |
|
670 | 670 | position: absolute; |
|
671 | 671 | background-color: #FFF; |
|
672 | 672 | background: none repeat scroll 0 0 #FFFFFF; |
|
673 | 673 | border-color: #003367 #666666 #666666; |
|
674 | 674 | border-right: 1px solid #666666; |
|
675 | 675 | border-style: solid; |
|
676 | 676 | border-width: 1px; |
|
677 | 677 | box-shadow: 2px 8px 4px rgba(0, 0, 0, 0.2); |
|
678 | 678 | border-top-style: none; |
|
679 | 679 | } |
|
680 | 680 | |
|
681 | 681 | .quick_repo_menu .menu_items li { |
|
682 | 682 | padding: 0 !important; |
|
683 | 683 | } |
|
684 | 684 | |
|
685 | 685 | .quick_repo_menu .menu_items a { |
|
686 | 686 | display: block; |
|
687 | 687 | padding: 4px 12px 4px 8px; |
|
688 | 688 | } |
|
689 | 689 | |
|
690 | 690 | .quick_repo_menu .menu_items a:hover { |
|
691 | 691 | background-color: #EEE; |
|
692 | 692 | text-decoration: none; |
|
693 | 693 | } |
|
694 | 694 | |
|
695 | 695 | .quick_repo_menu .menu_items .icon img { |
|
696 | 696 | margin-bottom: -2px; |
|
697 | 697 | } |
|
698 | 698 | |
|
699 | 699 | .quick_repo_menu .menu_items.hidden { |
|
700 | 700 | display: none; |
|
701 | 701 | } |
|
702 | 702 | |
|
703 | 703 | #content #left { |
|
704 | 704 | left: 0; |
|
705 | 705 | width: 280px; |
|
706 | 706 | position: absolute; |
|
707 | 707 | } |
|
708 | 708 | |
|
709 | 709 | #content #right { |
|
710 | 710 | margin: 0 60px 10px 290px; |
|
711 | 711 | } |
|
712 | 712 | |
|
713 | 713 | #content div.box { |
|
714 | 714 | clear: both; |
|
715 | 715 | overflow: hidden; |
|
716 | 716 | background: #fff; |
|
717 | 717 | margin: 0 0 10px; |
|
718 | 718 | padding: 0 0 10px; |
|
719 | 719 | -webkit-border-radius: 4px 4px 4px 4px; |
|
720 | 720 | -khtml-border-radius: 4px 4px 4px 4px; |
|
721 | 721 | -moz-border-radius: 4px 4px 4px 4px; |
|
722 | 722 | border-radius: 4px 4px 4px 4px; |
|
723 | 723 | box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6); |
|
724 | 724 | } |
|
725 | 725 | |
|
726 | 726 | #content div.box-left { |
|
727 | 727 | width: 49%; |
|
728 | 728 | clear: none; |
|
729 | 729 | float: left; |
|
730 | 730 | margin: 0 0 10px; |
|
731 | 731 | } |
|
732 | 732 | |
|
733 | 733 | #content div.box-right { |
|
734 | 734 | width: 49%; |
|
735 | 735 | clear: none; |
|
736 | 736 | float: right; |
|
737 | 737 | margin: 0 0 10px; |
|
738 | 738 | } |
|
739 | 739 | |
|
740 | 740 | #content div.box div.title { |
|
741 | 741 | clear: both; |
|
742 | 742 | overflow: hidden; |
|
743 | 743 | background-color: #eedc94; |
|
744 | 744 | background-repeat: repeat-x; |
|
745 | 745 | background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), |
|
746 | 746 | to(#eedc94) ); |
|
747 | 747 | background-image: -moz-linear-gradient(top, #003b76, #00376e); |
|
748 | 748 | background-image: -ms-linear-gradient(top, #003b76, #00376e); |
|
749 | 749 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76), |
|
750 | 750 | color-stop(100%, #00376e) ); |
|
751 | 751 | background-image: -webkit-linear-gradient(top, #003b76, #00376e) ); |
|
752 | 752 | background-image: -o-linear-gradient(top, #003b76, #00376e) ); |
|
753 | 753 | background-image: linear-gradient(top, #003b76, #00376e); |
|
754 | 754 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76', |
|
755 | 755 | endColorstr='#00376e', GradientType=0 ); |
|
756 | 756 | margin: 0 0 20px; |
|
757 | 757 | padding: 0; |
|
758 | 758 | } |
|
759 | 759 | |
|
760 | 760 | #content div.box div.title h5 { |
|
761 | 761 | float: left; |
|
762 | 762 | border: none; |
|
763 | 763 | color: #fff; |
|
764 | 764 | text-transform: uppercase; |
|
765 | 765 | margin: 0; |
|
766 | 766 | padding: 11px 0 11px 10px; |
|
767 | 767 | } |
|
768 | 768 | |
|
769 | 769 | #content div.box div.title .link-white{ |
|
770 | 770 | color: #FFFFFF; |
|
771 | 771 | } |
|
772 | 772 | |
|
773 | 773 | #content div.box div.title ul.links li { |
|
774 | 774 | list-style: none; |
|
775 | 775 | float: left; |
|
776 | 776 | margin: 0; |
|
777 | 777 | padding: 0; |
|
778 | 778 | } |
|
779 | 779 | |
|
780 | 780 | #content div.box div.title ul.links li a { |
|
781 | 781 | border-left: 1px solid #316293; |
|
782 | 782 | color: #FFFFFF; |
|
783 | 783 | display: block; |
|
784 | 784 | float: left; |
|
785 | 785 | font-size: 13px; |
|
786 | 786 | font-weight: 700; |
|
787 | 787 | height: 1%; |
|
788 | 788 | margin: 0; |
|
789 | 789 | padding: 11px 22px 12px; |
|
790 | 790 | text-decoration: none; |
|
791 | 791 | } |
|
792 | 792 | |
|
793 | 793 | #content div.box h1,#content div.box h2,#content div.box h3,#content div.box h4,#content div.box h5,#content div.box h6 |
|
794 | 794 | { |
|
795 | 795 | clear: both; |
|
796 | 796 | overflow: hidden; |
|
797 | 797 | border-bottom: 1px solid #DDD; |
|
798 | 798 | margin: 10px 20px; |
|
799 | 799 | padding: 0 0 15px; |
|
800 | 800 | } |
|
801 | 801 | |
|
802 | 802 | #content div.box p { |
|
803 | 803 | color: #5f5f5f; |
|
804 | 804 | font-size: 12px; |
|
805 | 805 | line-height: 150%; |
|
806 | 806 | margin: 0 24px 10px; |
|
807 | 807 | padding: 0; |
|
808 | 808 | } |
|
809 | 809 | |
|
810 | 810 | #content div.box blockquote { |
|
811 | 811 | border-left: 4px solid #DDD; |
|
812 | 812 | color: #5f5f5f; |
|
813 | 813 | font-size: 11px; |
|
814 | 814 | line-height: 150%; |
|
815 | 815 | margin: 0 34px; |
|
816 | 816 | padding: 0 0 0 14px; |
|
817 | 817 | } |
|
818 | 818 | |
|
819 | 819 | #content div.box blockquote p { |
|
820 | 820 | margin: 10px 0; |
|
821 | 821 | padding: 0; |
|
822 | 822 | } |
|
823 | 823 | |
|
824 | 824 | #content div.box dl { |
|
825 | 825 | margin: 10px 0px; |
|
826 | 826 | } |
|
827 | 827 | |
|
828 | 828 | #content div.box dt { |
|
829 | 829 | font-size: 12px; |
|
830 | 830 | margin: 0; |
|
831 | 831 | } |
|
832 | 832 | |
|
833 | 833 | #content div.box dd { |
|
834 | 834 | font-size: 12px; |
|
835 | 835 | margin: 0; |
|
836 | 836 | padding: 8px 0 8px 15px; |
|
837 | 837 | } |
|
838 | 838 | |
|
839 | 839 | #content div.box li { |
|
840 | 840 | font-size: 12px; |
|
841 | 841 | padding: 4px 0; |
|
842 | 842 | } |
|
843 | 843 | |
|
844 | 844 | #content div.box ul.disc,#content div.box ul.circle { |
|
845 | 845 | margin: 10px 24px 10px 38px; |
|
846 | 846 | } |
|
847 | 847 | |
|
848 | 848 | #content div.box ul.square { |
|
849 | 849 | margin: 10px 24px 10px 40px; |
|
850 | 850 | } |
|
851 | 851 | |
|
852 | 852 | #content div.box img.left { |
|
853 | 853 | border: none; |
|
854 | 854 | float: left; |
|
855 | 855 | margin: 10px 10px 10px 0; |
|
856 | 856 | } |
|
857 | 857 | |
|
858 | 858 | #content div.box img.right { |
|
859 | 859 | border: none; |
|
860 | 860 | float: right; |
|
861 | 861 | margin: 10px 0 10px 10px; |
|
862 | 862 | } |
|
863 | 863 | |
|
864 | 864 | #content div.box div.messages { |
|
865 | 865 | clear: both; |
|
866 | 866 | overflow: hidden; |
|
867 | 867 | margin: 0 20px; |
|
868 | 868 | padding: 0; |
|
869 | 869 | } |
|
870 | 870 | |
|
871 | 871 | #content div.box div.message { |
|
872 | 872 | clear: both; |
|
873 | 873 | overflow: hidden; |
|
874 | 874 | margin: 0; |
|
875 | 875 | padding: 10px 0; |
|
876 | 876 | } |
|
877 | 877 | |
|
878 | 878 | #content div.box div.message a { |
|
879 | 879 | font-weight: 400 !important; |
|
880 | 880 | } |
|
881 | 881 | |
|
882 | 882 | #content div.box div.message div.image { |
|
883 | 883 | float: left; |
|
884 | 884 | margin: 9px 0 0 5px; |
|
885 | 885 | padding: 6px; |
|
886 | 886 | } |
|
887 | 887 | |
|
888 | 888 | #content div.box div.message div.image img { |
|
889 | 889 | vertical-align: middle; |
|
890 | 890 | margin: 0; |
|
891 | 891 | } |
|
892 | 892 | |
|
893 | 893 | #content div.box div.message div.text { |
|
894 | 894 | float: left; |
|
895 | 895 | margin: 0; |
|
896 | 896 | padding: 9px 6px; |
|
897 | 897 | } |
|
898 | 898 | |
|
899 | 899 | #content div.box div.message div.dismiss a { |
|
900 | 900 | height: 16px; |
|
901 | 901 | width: 16px; |
|
902 | 902 | display: block; |
|
903 | 903 | background: url("../images/icons/cross.png") no-repeat; |
|
904 | 904 | margin: 15px 14px 0 0; |
|
905 | 905 | padding: 0; |
|
906 | 906 | } |
|
907 | 907 | |
|
908 | 908 | #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 |
|
909 | 909 | { |
|
910 | 910 | border: none; |
|
911 | 911 | margin: 0; |
|
912 | 912 | padding: 0; |
|
913 | 913 | } |
|
914 | 914 | |
|
915 | 915 | #content div.box div.message div.text span { |
|
916 | 916 | height: 1%; |
|
917 | 917 | display: block; |
|
918 | 918 | margin: 0; |
|
919 | 919 | padding: 5px 0 0; |
|
920 | 920 | } |
|
921 | 921 | |
|
922 | 922 | #content div.box div.message-error { |
|
923 | 923 | height: 1%; |
|
924 | 924 | clear: both; |
|
925 | 925 | overflow: hidden; |
|
926 | 926 | background: #FBE3E4; |
|
927 | 927 | border: 1px solid #FBC2C4; |
|
928 | 928 | color: #860006; |
|
929 | 929 | } |
|
930 | 930 | |
|
931 | 931 | #content div.box div.message-error h6 { |
|
932 | 932 | color: #860006; |
|
933 | 933 | } |
|
934 | 934 | |
|
935 | 935 | #content div.box div.message-warning { |
|
936 | 936 | height: 1%; |
|
937 | 937 | clear: both; |
|
938 | 938 | overflow: hidden; |
|
939 | 939 | background: #FFF6BF; |
|
940 | 940 | border: 1px solid #FFD324; |
|
941 | 941 | color: #5f5200; |
|
942 | 942 | } |
|
943 | 943 | |
|
944 | 944 | #content div.box div.message-warning h6 { |
|
945 | 945 | color: #5f5200; |
|
946 | 946 | } |
|
947 | 947 | |
|
948 | 948 | #content div.box div.message-notice { |
|
949 | 949 | height: 1%; |
|
950 | 950 | clear: both; |
|
951 | 951 | overflow: hidden; |
|
952 | 952 | background: #8FBDE0; |
|
953 | 953 | border: 1px solid #6BACDE; |
|
954 | 954 | color: #003863; |
|
955 | 955 | } |
|
956 | 956 | |
|
957 | 957 | #content div.box div.message-notice h6 { |
|
958 | 958 | color: #003863; |
|
959 | 959 | } |
|
960 | 960 | |
|
961 | 961 | #content div.box div.message-success { |
|
962 | 962 | height: 1%; |
|
963 | 963 | clear: both; |
|
964 | 964 | overflow: hidden; |
|
965 | 965 | background: #E6EFC2; |
|
966 | 966 | border: 1px solid #C6D880; |
|
967 | 967 | color: #4e6100; |
|
968 | 968 | } |
|
969 | 969 | |
|
970 | 970 | #content div.box div.message-success h6 { |
|
971 | 971 | color: #4e6100; |
|
972 | 972 | } |
|
973 | 973 | |
|
974 | 974 | #content div.box div.form div.fields div.field { |
|
975 | 975 | height: 1%; |
|
976 | 976 | border-bottom: 1px solid #DDD; |
|
977 | 977 | clear: both; |
|
978 | 978 | margin: 0; |
|
979 | 979 | padding: 10px 0; |
|
980 | 980 | } |
|
981 | 981 | |
|
982 | 982 | #content div.box div.form div.fields div.field-first { |
|
983 | 983 | padding: 0 0 10px; |
|
984 | 984 | } |
|
985 | 985 | |
|
986 | 986 | #content div.box div.form div.fields div.field-noborder { |
|
987 | 987 | border-bottom: 0 !important; |
|
988 | 988 | } |
|
989 | 989 | |
|
990 | 990 | #content div.box div.form div.fields div.field span.error-message { |
|
991 | 991 | height: 1%; |
|
992 | 992 | display: inline-block; |
|
993 | 993 | color: red; |
|
994 | 994 | margin: 8px 0 0 4px; |
|
995 | 995 | padding: 0; |
|
996 | 996 | } |
|
997 | 997 | |
|
998 | 998 | #content div.box div.form div.fields div.field span.success { |
|
999 | 999 | height: 1%; |
|
1000 | 1000 | display: block; |
|
1001 | 1001 | color: #316309; |
|
1002 | 1002 | margin: 8px 0 0; |
|
1003 | 1003 | padding: 0; |
|
1004 | 1004 | } |
|
1005 | 1005 | |
|
1006 | 1006 | #content div.box div.form div.fields div.field div.label { |
|
1007 | 1007 | left: 70px; |
|
1008 | 1008 | width: 155px; |
|
1009 | 1009 | position: absolute; |
|
1010 | 1010 | margin: 0; |
|
1011 | 1011 | padding: 5px 0 0 0px; |
|
1012 | 1012 | } |
|
1013 | 1013 | |
|
1014 | 1014 | #content div.box div.form div.fields div.field div.label-summary { |
|
1015 | 1015 | left: 30px; |
|
1016 | 1016 | width: 155px; |
|
1017 | 1017 | position: absolute; |
|
1018 | 1018 | margin: 0; |
|
1019 | 1019 | padding: 0px 0 0 0px; |
|
1020 | 1020 | } |
|
1021 | 1021 | |
|
1022 | 1022 | #content div.box-left div.form div.fields div.field div.label, |
|
1023 | 1023 | #content div.box-right div.form div.fields div.field div.label, |
|
1024 | 1024 | #content div.box-left div.form div.fields div.field div.label, |
|
1025 | 1025 | #content div.box-left div.form div.fields div.field div.label-summary, |
|
1026 | 1026 | #content div.box-right div.form div.fields div.field div.label-summary, |
|
1027 | 1027 | #content div.box-left div.form div.fields div.field div.label-summary |
|
1028 | 1028 | { |
|
1029 | 1029 | clear: both; |
|
1030 | 1030 | overflow: hidden; |
|
1031 | 1031 | left: 0; |
|
1032 | 1032 | width: auto; |
|
1033 | 1033 | position: relative; |
|
1034 | 1034 | margin: 0; |
|
1035 | 1035 | padding: 0 0 8px; |
|
1036 | 1036 | } |
|
1037 | 1037 | |
|
1038 | 1038 | #content div.box div.form div.fields div.field div.label-select { |
|
1039 | 1039 | padding: 5px 0 0 5px; |
|
1040 | 1040 | } |
|
1041 | 1041 | |
|
1042 | 1042 | #content div.box-left div.form div.fields div.field div.label-select, |
|
1043 | 1043 | #content div.box-right div.form div.fields div.field div.label-select |
|
1044 | 1044 | { |
|
1045 | 1045 | padding: 0 0 8px; |
|
1046 | 1046 | } |
|
1047 | 1047 | |
|
1048 | 1048 | #content div.box-left div.form div.fields div.field div.label-textarea, |
|
1049 | 1049 | #content div.box-right div.form div.fields div.field div.label-textarea |
|
1050 | 1050 | { |
|
1051 | 1051 | padding: 0 0 8px !important; |
|
1052 | 1052 | } |
|
1053 | 1053 | |
|
1054 | 1054 | #content div.box div.form div.fields div.field div.label label,div.label label |
|
1055 | 1055 | { |
|
1056 | 1056 | color: #393939; |
|
1057 | 1057 | font-weight: 700; |
|
1058 | 1058 | } |
|
1059 | 1059 | #content div.box div.form div.fields div.field div.label label,div.label-summary label |
|
1060 | 1060 | { |
|
1061 | 1061 | color: #393939; |
|
1062 | 1062 | font-weight: 700; |
|
1063 | 1063 | } |
|
1064 | 1064 | #content div.box div.form div.fields div.field div.input { |
|
1065 | 1065 | margin: 0 0 0 200px; |
|
1066 | 1066 | } |
|
1067 | 1067 | |
|
1068 | 1068 | #content div.box div.form div.fields div.field div.input.summary { |
|
1069 | 1069 | margin: 0 0 0 110px; |
|
1070 | 1070 | } |
|
1071 | 1071 | #content div.box div.form div.fields div.field div.input.summary-short { |
|
1072 | 1072 | margin: 0 0 0 110px; |
|
1073 | 1073 | } |
|
1074 | 1074 | #content div.box div.form div.fields div.field div.file { |
|
1075 | 1075 | margin: 0 0 0 200px; |
|
1076 | 1076 | } |
|
1077 | 1077 | |
|
1078 | 1078 | #content div.box-left div.form div.fields div.field div.input,#content div.box-right div.form div.fields div.field div.input |
|
1079 | 1079 | { |
|
1080 | 1080 | margin: 0 0 0 0px; |
|
1081 | 1081 | } |
|
1082 | 1082 | |
|
1083 | 1083 | #content div.box div.form div.fields div.field div.input input { |
|
1084 | 1084 | background: #FFF; |
|
1085 | 1085 | border-top: 1px solid #b3b3b3; |
|
1086 | 1086 | border-left: 1px solid #b3b3b3; |
|
1087 | 1087 | border-right: 1px solid #eaeaea; |
|
1088 | 1088 | border-bottom: 1px solid #eaeaea; |
|
1089 | 1089 | color: #000; |
|
1090 | 1090 | font-size: 11px; |
|
1091 | 1091 | margin: 0; |
|
1092 | 1092 | padding: 7px 7px 6px; |
|
1093 | 1093 | } |
|
1094 | 1094 | |
|
1095 | 1095 | #content div.box div.form div.fields div.field div.input input#clone_url{ |
|
1096 | 1096 | font-size: 16px; |
|
1097 | 1097 | padding: 2px 7px 2px; |
|
1098 | 1098 | } |
|
1099 | 1099 | |
|
1100 | 1100 | #content div.box div.form div.fields div.field div.file input { |
|
1101 | 1101 | background: none repeat scroll 0 0 #FFFFFF; |
|
1102 | 1102 | border-color: #B3B3B3 #EAEAEA #EAEAEA #B3B3B3; |
|
1103 | 1103 | border-style: solid; |
|
1104 | 1104 | border-width: 1px; |
|
1105 | 1105 | color: #000000; |
|
1106 | 1106 | font-size: 11px; |
|
1107 | 1107 | margin: 0; |
|
1108 | 1108 | padding: 7px 7px 6px; |
|
1109 | 1109 | } |
|
1110 | 1110 | |
|
1111 | 1111 | #content div.box div.form div.fields div.field div.input input.small { |
|
1112 | 1112 | width: 30%; |
|
1113 | 1113 | } |
|
1114 | 1114 | |
|
1115 | 1115 | #content div.box div.form div.fields div.field div.input input.medium { |
|
1116 | 1116 | width: 55%; |
|
1117 | 1117 | } |
|
1118 | 1118 | |
|
1119 | 1119 | #content div.box div.form div.fields div.field div.input input.large { |
|
1120 | 1120 | width: 85%; |
|
1121 | 1121 | } |
|
1122 | 1122 | |
|
1123 | 1123 | #content div.box div.form div.fields div.field div.input input.date { |
|
1124 | 1124 | width: 177px; |
|
1125 | 1125 | } |
|
1126 | 1126 | |
|
1127 | 1127 | #content div.box div.form div.fields div.field div.input input.button { |
|
1128 | 1128 | background: #D4D0C8; |
|
1129 | 1129 | border-top: 1px solid #FFF; |
|
1130 | 1130 | border-left: 1px solid #FFF; |
|
1131 | 1131 | border-right: 1px solid #404040; |
|
1132 | 1132 | border-bottom: 1px solid #404040; |
|
1133 | 1133 | color: #000; |
|
1134 | 1134 | margin: 0; |
|
1135 | 1135 | padding: 4px 8px; |
|
1136 | 1136 | } |
|
1137 | 1137 | |
|
1138 | 1138 | #content div.box div.form div.fields div.field div.textarea { |
|
1139 | 1139 | border-top: 1px solid #b3b3b3; |
|
1140 | 1140 | border-left: 1px solid #b3b3b3; |
|
1141 | 1141 | border-right: 1px solid #eaeaea; |
|
1142 | 1142 | border-bottom: 1px solid #eaeaea; |
|
1143 | 1143 | margin: 0 0 0 200px; |
|
1144 | 1144 | padding: 10px; |
|
1145 | 1145 | } |
|
1146 | 1146 | |
|
1147 | 1147 | #content div.box div.form div.fields div.field div.textarea-editor { |
|
1148 | 1148 | border: 1px solid #ddd; |
|
1149 | 1149 | padding: 0; |
|
1150 | 1150 | } |
|
1151 | 1151 | |
|
1152 | 1152 | #content div.box div.form div.fields div.field div.textarea textarea { |
|
1153 | 1153 | width: 100%; |
|
1154 | 1154 | height: 220px; |
|
1155 | 1155 | overflow: hidden; |
|
1156 | 1156 | background: #FFF; |
|
1157 | 1157 | color: #000; |
|
1158 | 1158 | font-size: 11px; |
|
1159 | 1159 | outline: none; |
|
1160 | 1160 | border-width: 0; |
|
1161 | 1161 | margin: 0; |
|
1162 | 1162 | padding: 0; |
|
1163 | 1163 | } |
|
1164 | 1164 | |
|
1165 | 1165 | #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 |
|
1166 | 1166 | { |
|
1167 | 1167 | width: 100%; |
|
1168 | 1168 | height: 100px; |
|
1169 | 1169 | } |
|
1170 | 1170 | |
|
1171 | 1171 | #content div.box div.form div.fields div.field div.textarea table { |
|
1172 | 1172 | width: 100%; |
|
1173 | 1173 | border: none; |
|
1174 | 1174 | margin: 0; |
|
1175 | 1175 | padding: 0; |
|
1176 | 1176 | } |
|
1177 | 1177 | |
|
1178 | 1178 | #content div.box div.form div.fields div.field div.textarea table td { |
|
1179 | 1179 | background: #DDD; |
|
1180 | 1180 | border: none; |
|
1181 | 1181 | padding: 0; |
|
1182 | 1182 | } |
|
1183 | 1183 | |
|
1184 | 1184 | #content div.box div.form div.fields div.field div.textarea table td table |
|
1185 | 1185 | { |
|
1186 | 1186 | width: auto; |
|
1187 | 1187 | border: none; |
|
1188 | 1188 | margin: 0; |
|
1189 | 1189 | padding: 0; |
|
1190 | 1190 | } |
|
1191 | 1191 | |
|
1192 | 1192 | #content div.box div.form div.fields div.field div.textarea table td table td |
|
1193 | 1193 | { |
|
1194 | 1194 | font-size: 11px; |
|
1195 | 1195 | padding: 5px 5px 5px 0; |
|
1196 | 1196 | } |
|
1197 | 1197 | |
|
1198 | 1198 | #content div.box div.form div.fields div.field input[type=text]:focus,#content div.box div.form div.fields div.field input[type=password]:focus,#content div.box div.form div.fields div.field input[type=file]:focus,#content div.box div.form div.fields div.field textarea:focus,#content div.box div.form div.fields div.field select:focus |
|
1199 | 1199 | { |
|
1200 | 1200 | background: #f6f6f6; |
|
1201 | 1201 | border-color: #666; |
|
1202 | 1202 | } |
|
1203 | 1203 | |
|
1204 | 1204 | div.form div.fields div.field div.button { |
|
1205 | 1205 | margin: 0; |
|
1206 | 1206 | padding: 0 0 0 8px; |
|
1207 | 1207 | } |
|
1208 | 1208 | #content div.box table.noborder { |
|
1209 | 1209 | border: 1px solid transparent; |
|
1210 | 1210 | } |
|
1211 | 1211 | |
|
1212 | 1212 | #content div.box table { |
|
1213 | 1213 | width: 100%; |
|
1214 | 1214 | border-collapse: separate; |
|
1215 | 1215 | margin: 0; |
|
1216 | 1216 | padding: 0; |
|
1217 | 1217 | border: 1px solid #eee; |
|
1218 | 1218 | -webkit-border-radius: 4px; |
|
1219 | 1219 | -moz-border-radius: 4px; |
|
1220 | 1220 | border-radius: 4px; |
|
1221 | 1221 | } |
|
1222 | 1222 | |
|
1223 | 1223 | #content div.box table th { |
|
1224 | 1224 | background: #eee; |
|
1225 | 1225 | border-bottom: 1px solid #ddd; |
|
1226 | 1226 | padding: 5px 0px 5px 5px; |
|
1227 | 1227 | } |
|
1228 | 1228 | |
|
1229 | 1229 | #content div.box table th.left { |
|
1230 | 1230 | text-align: left; |
|
1231 | 1231 | } |
|
1232 | 1232 | |
|
1233 | 1233 | #content div.box table th.right { |
|
1234 | 1234 | text-align: right; |
|
1235 | 1235 | } |
|
1236 | 1236 | |
|
1237 | 1237 | #content div.box table th.center { |
|
1238 | 1238 | text-align: center; |
|
1239 | 1239 | } |
|
1240 | 1240 | |
|
1241 | 1241 | #content div.box table th.selected { |
|
1242 | 1242 | vertical-align: middle; |
|
1243 | 1243 | padding: 0; |
|
1244 | 1244 | } |
|
1245 | 1245 | |
|
1246 | 1246 | #content div.box table td { |
|
1247 | 1247 | background: #fff; |
|
1248 | 1248 | border-bottom: 1px solid #cdcdcd; |
|
1249 | 1249 | vertical-align: middle; |
|
1250 | 1250 | padding: 5px; |
|
1251 | 1251 | } |
|
1252 | 1252 | |
|
1253 | 1253 | #content div.box table tr.selected td { |
|
1254 | 1254 | background: #FFC; |
|
1255 | 1255 | } |
|
1256 | 1256 | |
|
1257 | 1257 | #content div.box table td.selected { |
|
1258 | 1258 | width: 3%; |
|
1259 | 1259 | text-align: center; |
|
1260 | 1260 | vertical-align: middle; |
|
1261 | 1261 | padding: 0; |
|
1262 | 1262 | } |
|
1263 | 1263 | |
|
1264 | 1264 | #content div.box table td.action { |
|
1265 | 1265 | width: 45%; |
|
1266 | 1266 | text-align: left; |
|
1267 | 1267 | } |
|
1268 | 1268 | |
|
1269 | 1269 | #content div.box table td.date { |
|
1270 | 1270 | width: 33%; |
|
1271 | 1271 | text-align: center; |
|
1272 | 1272 | } |
|
1273 | 1273 | |
|
1274 | 1274 | #content div.box div.action { |
|
1275 | 1275 | float: right; |
|
1276 | 1276 | background: #FFF; |
|
1277 | 1277 | text-align: right; |
|
1278 | 1278 | margin: 10px 0 0; |
|
1279 | 1279 | padding: 0; |
|
1280 | 1280 | } |
|
1281 | 1281 | |
|
1282 | 1282 | #content div.box div.action select { |
|
1283 | 1283 | font-size: 11px; |
|
1284 | 1284 | margin: 0; |
|
1285 | 1285 | } |
|
1286 | 1286 | |
|
1287 | 1287 | #content div.box div.action .ui-selectmenu { |
|
1288 | 1288 | margin: 0; |
|
1289 | 1289 | padding: 0; |
|
1290 | 1290 | } |
|
1291 | 1291 | |
|
1292 | 1292 | #content div.box div.pagination { |
|
1293 | 1293 | height: 1%; |
|
1294 | 1294 | clear: both; |
|
1295 | 1295 | overflow: hidden; |
|
1296 | 1296 | margin: 10px 0 0; |
|
1297 | 1297 | padding: 0; |
|
1298 | 1298 | } |
|
1299 | 1299 | |
|
1300 | 1300 | #content div.box div.pagination ul.pager { |
|
1301 | 1301 | float: right; |
|
1302 | 1302 | text-align: right; |
|
1303 | 1303 | margin: 0; |
|
1304 | 1304 | padding: 0; |
|
1305 | 1305 | } |
|
1306 | 1306 | |
|
1307 | 1307 | #content div.box div.pagination ul.pager li { |
|
1308 | 1308 | height: 1%; |
|
1309 | 1309 | float: left; |
|
1310 | 1310 | list-style: none; |
|
1311 | 1311 | background: #ebebeb url("../images/pager.png") repeat-x; |
|
1312 | 1312 | border-top: 1px solid #dedede; |
|
1313 | 1313 | border-left: 1px solid #cfcfcf; |
|
1314 | 1314 | border-right: 1px solid #c4c4c4; |
|
1315 | 1315 | border-bottom: 1px solid #c4c4c4; |
|
1316 | 1316 | color: #4A4A4A; |
|
1317 | 1317 | font-weight: 700; |
|
1318 | 1318 | margin: 0 0 0 4px; |
|
1319 | 1319 | padding: 0; |
|
1320 | 1320 | } |
|
1321 | 1321 | |
|
1322 | 1322 | #content div.box div.pagination ul.pager li.separator { |
|
1323 | 1323 | padding: 6px; |
|
1324 | 1324 | } |
|
1325 | 1325 | |
|
1326 | 1326 | #content div.box div.pagination ul.pager li.current { |
|
1327 | 1327 | background: #b4b4b4 url("../images/pager_selected.png") repeat-x; |
|
1328 | 1328 | border-top: 1px solid #ccc; |
|
1329 | 1329 | border-left: 1px solid #bebebe; |
|
1330 | 1330 | border-right: 1px solid #b1b1b1; |
|
1331 | 1331 | border-bottom: 1px solid #afafaf; |
|
1332 | 1332 | color: #515151; |
|
1333 | 1333 | padding: 6px; |
|
1334 | 1334 | } |
|
1335 | 1335 | |
|
1336 | 1336 | #content div.box div.pagination ul.pager li a { |
|
1337 | 1337 | height: 1%; |
|
1338 | 1338 | display: block; |
|
1339 | 1339 | float: left; |
|
1340 | 1340 | color: #515151; |
|
1341 | 1341 | text-decoration: none; |
|
1342 | 1342 | margin: 0; |
|
1343 | 1343 | padding: 6px; |
|
1344 | 1344 | } |
|
1345 | 1345 | |
|
1346 | 1346 | #content div.box div.pagination ul.pager li a:hover,#content div.box div.pagination ul.pager li a:active |
|
1347 | 1347 | { |
|
1348 | 1348 | background: #b4b4b4 url("../images/pager_selected.png") repeat-x; |
|
1349 | 1349 | border-top: 1px solid #ccc; |
|
1350 | 1350 | border-left: 1px solid #bebebe; |
|
1351 | 1351 | border-right: 1px solid #b1b1b1; |
|
1352 | 1352 | border-bottom: 1px solid #afafaf; |
|
1353 | 1353 | margin: -1px; |
|
1354 | 1354 | } |
|
1355 | 1355 | |
|
1356 | 1356 | #content div.box div.pagination-wh { |
|
1357 | 1357 | height: 1%; |
|
1358 | 1358 | clear: both; |
|
1359 | 1359 | overflow: hidden; |
|
1360 | 1360 | text-align: right; |
|
1361 | 1361 | margin: 10px 0 0; |
|
1362 | 1362 | padding: 0; |
|
1363 | 1363 | } |
|
1364 | 1364 | |
|
1365 | 1365 | #content div.box div.pagination-right { |
|
1366 | 1366 | float: right; |
|
1367 | 1367 | } |
|
1368 | 1368 | |
|
1369 | 1369 | #content div.box div.pagination-wh a,#content div.box div.pagination-wh span.pager_dotdot |
|
1370 | 1370 | { |
|
1371 | 1371 | height: 1%; |
|
1372 | 1372 | float: left; |
|
1373 | 1373 | background: #ebebeb url("../images/pager.png") repeat-x; |
|
1374 | 1374 | border-top: 1px solid #dedede; |
|
1375 | 1375 | border-left: 1px solid #cfcfcf; |
|
1376 | 1376 | border-right: 1px solid #c4c4c4; |
|
1377 | 1377 | border-bottom: 1px solid #c4c4c4; |
|
1378 | 1378 | color: #4A4A4A; |
|
1379 | 1379 | font-weight: 700; |
|
1380 | 1380 | margin: 0 0 0 4px; |
|
1381 | 1381 | padding: 6px; |
|
1382 | 1382 | } |
|
1383 | 1383 | |
|
1384 | 1384 | #content div.box div.pagination-wh span.pager_curpage { |
|
1385 | 1385 | height: 1%; |
|
1386 | 1386 | float: left; |
|
1387 | 1387 | background: #b4b4b4 url("../images/pager_selected.png") repeat-x; |
|
1388 | 1388 | border-top: 1px solid #ccc; |
|
1389 | 1389 | border-left: 1px solid #bebebe; |
|
1390 | 1390 | border-right: 1px solid #b1b1b1; |
|
1391 | 1391 | border-bottom: 1px solid #afafaf; |
|
1392 | 1392 | color: #515151; |
|
1393 | 1393 | font-weight: 700; |
|
1394 | 1394 | margin: 0 0 0 4px; |
|
1395 | 1395 | padding: 6px; |
|
1396 | 1396 | } |
|
1397 | 1397 | |
|
1398 | 1398 | #content div.box div.pagination-wh a:hover,#content div.box div.pagination-wh a:active |
|
1399 | 1399 | { |
|
1400 | 1400 | background: #b4b4b4 url("../images/pager_selected.png") repeat-x; |
|
1401 | 1401 | border-top: 1px solid #ccc; |
|
1402 | 1402 | border-left: 1px solid #bebebe; |
|
1403 | 1403 | border-right: 1px solid #b1b1b1; |
|
1404 | 1404 | border-bottom: 1px solid #afafaf; |
|
1405 | 1405 | text-decoration: none; |
|
1406 | 1406 | } |
|
1407 | 1407 | |
|
1408 | 1408 | #content div.box div.traffic div.legend { |
|
1409 | 1409 | clear: both; |
|
1410 | 1410 | overflow: hidden; |
|
1411 | 1411 | border-bottom: 1px solid #ddd; |
|
1412 | 1412 | margin: 0 0 10px; |
|
1413 | 1413 | padding: 0 0 10px; |
|
1414 | 1414 | } |
|
1415 | 1415 | |
|
1416 | 1416 | #content div.box div.traffic div.legend h6 { |
|
1417 | 1417 | float: left; |
|
1418 | 1418 | border: none; |
|
1419 | 1419 | margin: 0; |
|
1420 | 1420 | padding: 0; |
|
1421 | 1421 | } |
|
1422 | 1422 | |
|
1423 | 1423 | #content div.box div.traffic div.legend li { |
|
1424 | 1424 | list-style: none; |
|
1425 | 1425 | float: left; |
|
1426 | 1426 | font-size: 11px; |
|
1427 | 1427 | margin: 0; |
|
1428 | 1428 | padding: 0 8px 0 4px; |
|
1429 | 1429 | } |
|
1430 | 1430 | |
|
1431 | 1431 | #content div.box div.traffic div.legend li.visits { |
|
1432 | 1432 | border-left: 12px solid #edc240; |
|
1433 | 1433 | } |
|
1434 | 1434 | |
|
1435 | 1435 | #content div.box div.traffic div.legend li.pageviews { |
|
1436 | 1436 | border-left: 12px solid #afd8f8; |
|
1437 | 1437 | } |
|
1438 | 1438 | |
|
1439 | 1439 | #content div.box div.traffic table { |
|
1440 | 1440 | width: auto; |
|
1441 | 1441 | } |
|
1442 | 1442 | |
|
1443 | 1443 | #content div.box div.traffic table td { |
|
1444 | 1444 | background: transparent; |
|
1445 | 1445 | border: none; |
|
1446 | 1446 | padding: 2px 3px 3px; |
|
1447 | 1447 | } |
|
1448 | 1448 | |
|
1449 | 1449 | #content div.box div.traffic table td.legendLabel { |
|
1450 | 1450 | padding: 0 3px 2px; |
|
1451 | 1451 | } |
|
1452 | 1452 | |
|
1453 | 1453 | #summary { |
|
1454 | 1454 | |
|
1455 | 1455 | } |
|
1456 | 1456 | |
|
1457 | 1457 | #summary .desc { |
|
1458 | 1458 | white-space: pre; |
|
1459 | 1459 | width: 100%; |
|
1460 | 1460 | } |
|
1461 | 1461 | |
|
1462 | 1462 | #summary .repo_name { |
|
1463 | 1463 | font-size: 1.6em; |
|
1464 | 1464 | font-weight: bold; |
|
1465 | 1465 | vertical-align: baseline; |
|
1466 | 1466 | clear: right |
|
1467 | 1467 | } |
|
1468 | 1468 | |
|
1469 | 1469 | #footer { |
|
1470 | 1470 | clear: both; |
|
1471 | 1471 | overflow: hidden; |
|
1472 | 1472 | text-align: right; |
|
1473 | 1473 | margin: 0; |
|
1474 | 1474 | padding: 0 10px 4px; |
|
1475 | 1475 | margin: -10px 0 0; |
|
1476 | 1476 | } |
|
1477 | 1477 | |
|
1478 | 1478 | #footer div#footer-inner { |
|
1479 | 1479 | background-color: #eedc94; background-repeat : repeat-x; |
|
1480 | 1480 | background-image : -khtml-gradient( linear, left top, left bottom, |
|
1481 | 1481 | from( #fceec1), to( #eedc94)); background-image : -moz-linear-gradient( |
|
1482 | 1482 | top, #003b76, #00376e); background-image : -ms-linear-gradient( top, |
|
1483 | 1483 | #003b76, #00376e); background-image : -webkit-gradient( linear, left |
|
1484 | 1484 | top, left bottom, color-stop( 0%, #003b76), color-stop( 100%, #00376e)); |
|
1485 | 1485 | background-image : -webkit-linear-gradient( top, #003b76, #00376e)); |
|
1486 | 1486 | background-image : -o-linear-gradient( top, #003b76, #00376e)); |
|
1487 | 1487 | background-image : linear-gradient( top, #003b76, #00376e); filter : |
|
1488 | 1488 | progid : DXImageTransform.Microsoft.gradient ( startColorstr = |
|
1489 | 1489 | '#003b76', endColorstr = '#00376e', GradientType = 0); |
|
1490 | 1490 | box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6); |
|
1491 | 1491 | -webkit-border-radius: 4px 4px 4px 4px; |
|
1492 | 1492 | -khtml-border-radius: 4px 4px 4px 4px; |
|
1493 | 1493 | -moz-border-radius: 4px 4px 4px 4px; |
|
1494 | 1494 | border-radius: 4px 4px 4px 4px; |
|
1495 | 1495 | background-repeat: repeat-x; |
|
1496 | 1496 | background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), |
|
1497 | 1497 | to(#eedc94) ); |
|
1498 | 1498 | background-image: -moz-linear-gradient(top, #003b76, #00376e); |
|
1499 | 1499 | background-image: -ms-linear-gradient(top, #003b76, #00376e); |
|
1500 | 1500 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76), |
|
1501 | 1501 | color-stop(100%, #00376e) ); |
|
1502 | 1502 | background-image: -webkit-linear-gradient(top, #003b76, #00376e) ); |
|
1503 | 1503 | background-image: -o-linear-gradient(top, #003b76, #00376e) ); |
|
1504 | 1504 | background-image: linear-gradient(top, #003b76, #00376e); |
|
1505 | 1505 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76', |
|
1506 | 1506 | endColorstr='#00376e', GradientType=0 ); |
|
1507 | 1507 | } |
|
1508 | 1508 | |
|
1509 | 1509 | #footer div#footer-inner p { |
|
1510 | 1510 | padding: 15px 25px 15px 0; |
|
1511 | 1511 | color: #FFF; |
|
1512 | 1512 | font-weight: 700; |
|
1513 | 1513 | } |
|
1514 | 1514 | |
|
1515 | 1515 | #footer div#footer-inner .footer-link { |
|
1516 | 1516 | float: left; |
|
1517 | 1517 | padding-left: 10px; |
|
1518 | 1518 | } |
|
1519 | 1519 | |
|
1520 | 1520 | #footer div#footer-inner .footer-link a,#footer div#footer-inner .footer-link-right a |
|
1521 | 1521 | { |
|
1522 | 1522 | color: #FFF; |
|
1523 | 1523 | } |
|
1524 | 1524 | |
|
1525 | 1525 | #login div.title { |
|
1526 | 1526 | width: 420px; |
|
1527 | 1527 | clear: both; |
|
1528 | 1528 | overflow: hidden; |
|
1529 | 1529 | position: relative; |
|
1530 | 1530 | background-color: #eedc94; background-repeat : repeat-x; |
|
1531 | 1531 | background-image : -khtml-gradient( linear, left top, left bottom, |
|
1532 | 1532 | from( #fceec1), to( #eedc94)); background-image : -moz-linear-gradient( |
|
1533 | 1533 | top, #003b76, #00376e); background-image : -ms-linear-gradient( top, |
|
1534 | 1534 | #003b76, #00376e); background-image : -webkit-gradient( linear, left |
|
1535 | 1535 | top, left bottom, color-stop( 0%, #003b76), color-stop( 100%, #00376e)); |
|
1536 | 1536 | background-image : -webkit-linear-gradient( top, #003b76, #00376e)); |
|
1537 | 1537 | background-image : -o-linear-gradient( top, #003b76, #00376e)); |
|
1538 | 1538 | background-image : linear-gradient( top, #003b76, #00376e); filter : |
|
1539 | 1539 | progid : DXImageTransform.Microsoft.gradient ( startColorstr = |
|
1540 | 1540 | '#003b76', endColorstr = '#00376e', GradientType = 0); |
|
1541 | 1541 | margin: 0 auto; |
|
1542 | 1542 | padding: 0; |
|
1543 | 1543 | background-repeat: repeat-x; |
|
1544 | 1544 | background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), |
|
1545 | 1545 | to(#eedc94) ); |
|
1546 | 1546 | background-image: -moz-linear-gradient(top, #003b76, #00376e); |
|
1547 | 1547 | background-image: -ms-linear-gradient(top, #003b76, #00376e); |
|
1548 | 1548 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76), |
|
1549 | 1549 | color-stop(100%, #00376e) ); |
|
1550 | 1550 | background-image: -webkit-linear-gradient(top, #003b76, #00376e) ); |
|
1551 | 1551 | background-image: -o-linear-gradient(top, #003b76, #00376e) ); |
|
1552 | 1552 | background-image: linear-gradient(top, #003b76, #00376e); |
|
1553 | 1553 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76', |
|
1554 | 1554 | endColorstr='#00376e', GradientType=0 ); |
|
1555 | 1555 | } |
|
1556 | 1556 | |
|
1557 | 1557 | #login div.inner { |
|
1558 | 1558 | width: 380px; |
|
1559 | 1559 | background: #FFF url("../images/login.png") no-repeat top left; |
|
1560 | 1560 | border-top: none; |
|
1561 | 1561 | border-bottom: none; |
|
1562 | 1562 | margin: 0 auto; |
|
1563 | 1563 | padding: 20px; |
|
1564 | 1564 | } |
|
1565 | 1565 | |
|
1566 | 1566 | #login div.form div.fields div.field div.label { |
|
1567 | 1567 | width: 173px; |
|
1568 | 1568 | float: left; |
|
1569 | 1569 | text-align: right; |
|
1570 | 1570 | margin: 2px 10px 0 0; |
|
1571 | 1571 | padding: 5px 0 0 5px; |
|
1572 | 1572 | } |
|
1573 | 1573 | |
|
1574 | 1574 | #login div.form div.fields div.field div.input input { |
|
1575 | 1575 | width: 176px; |
|
1576 | 1576 | background: #FFF; |
|
1577 | 1577 | border-top: 1px solid #b3b3b3; |
|
1578 | 1578 | border-left: 1px solid #b3b3b3; |
|
1579 | 1579 | border-right: 1px solid #eaeaea; |
|
1580 | 1580 | border-bottom: 1px solid #eaeaea; |
|
1581 | 1581 | color: #000; |
|
1582 | 1582 | font-size: 11px; |
|
1583 | 1583 | margin: 0; |
|
1584 | 1584 | padding: 7px 7px 6px; |
|
1585 | 1585 | } |
|
1586 | 1586 | |
|
1587 | 1587 | #login div.form div.fields div.buttons { |
|
1588 | 1588 | clear: both; |
|
1589 | 1589 | overflow: hidden; |
|
1590 | 1590 | border-top: 1px solid #DDD; |
|
1591 | 1591 | text-align: right; |
|
1592 | 1592 | margin: 0; |
|
1593 | 1593 | padding: 10px 0 0; |
|
1594 | 1594 | } |
|
1595 | 1595 | |
|
1596 | 1596 | #login div.form div.links { |
|
1597 | 1597 | clear: both; |
|
1598 | 1598 | overflow: hidden; |
|
1599 | 1599 | margin: 10px 0 0; |
|
1600 | 1600 | padding: 0 0 2px; |
|
1601 | 1601 | } |
|
1602 | 1602 | |
|
1603 | 1603 | #quick_login { |
|
1604 | 1604 | top: 31px; |
|
1605 | 1605 | background-color: rgb(0, 51, 103); |
|
1606 | 1606 | z-index: 999; |
|
1607 | 1607 | height: 150px; |
|
1608 | 1608 | position: absolute; |
|
1609 | 1609 | margin-left: -16px; |
|
1610 | 1610 | width: 281px; |
|
1611 | 1611 | -webkit-border-radius: 0px 0px 4px 4px; |
|
1612 | 1612 | -khtml-border-radius: 0px 0px 4px 4px; |
|
1613 | 1613 | -moz-border-radius: 0px 0px 4px 4px; |
|
1614 | 1614 | border-radius: 0px 0px 4px 4px; |
|
1615 | 1615 | box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6); |
|
1616 | 1616 | } |
|
1617 | 1617 | |
|
1618 | 1618 | #quick_login .password_forgoten { |
|
1619 | 1619 | padding-right: 10px; |
|
1620 | 1620 | padding-top: 0px; |
|
1621 | 1621 | float: left; |
|
1622 | 1622 | } |
|
1623 | 1623 | |
|
1624 | 1624 | #quick_login .password_forgoten a { |
|
1625 | 1625 | font-size: 10px |
|
1626 | 1626 | } |
|
1627 | 1627 | |
|
1628 | 1628 | #quick_login .register { |
|
1629 | 1629 | padding-right: 10px; |
|
1630 | 1630 | padding-top: 5px; |
|
1631 | 1631 | float: left; |
|
1632 | 1632 | } |
|
1633 | 1633 | |
|
1634 | 1634 | #quick_login .register a { |
|
1635 | 1635 | font-size: 10px |
|
1636 | 1636 | } |
|
1637 | 1637 | |
|
1638 | 1638 | #quick_login div.form div.fields { |
|
1639 | 1639 | padding-top: 2px; |
|
1640 | 1640 | padding-left: 10px; |
|
1641 | 1641 | } |
|
1642 | 1642 | |
|
1643 | 1643 | #quick_login div.form div.fields div.field { |
|
1644 | 1644 | padding: 5px; |
|
1645 | 1645 | } |
|
1646 | 1646 | |
|
1647 | 1647 | #quick_login div.form div.fields div.field div.label label { |
|
1648 | 1648 | color: #fff; |
|
1649 | 1649 | padding-bottom: 3px; |
|
1650 | 1650 | } |
|
1651 | 1651 | |
|
1652 | 1652 | #quick_login div.form div.fields div.field div.input input { |
|
1653 | 1653 | width: 236px; |
|
1654 | 1654 | background: #FFF; |
|
1655 | 1655 | border-top: 1px solid #b3b3b3; |
|
1656 | 1656 | border-left: 1px solid #b3b3b3; |
|
1657 | 1657 | border-right: 1px solid #eaeaea; |
|
1658 | 1658 | border-bottom: 1px solid #eaeaea; |
|
1659 | 1659 | color: #000; |
|
1660 | 1660 | font-size: 11px; |
|
1661 | 1661 | margin: 0; |
|
1662 | 1662 | padding: 5px 7px 4px; |
|
1663 | 1663 | } |
|
1664 | 1664 | |
|
1665 | 1665 | #quick_login div.form div.fields div.buttons { |
|
1666 | 1666 | clear: both; |
|
1667 | 1667 | overflow: hidden; |
|
1668 | 1668 | text-align: right; |
|
1669 | 1669 | margin: 0; |
|
1670 | 1670 | padding: 10px 14px 0px 5px; |
|
1671 | 1671 | } |
|
1672 | 1672 | |
|
1673 | 1673 | #quick_login div.form div.links { |
|
1674 | 1674 | clear: both; |
|
1675 | 1675 | overflow: hidden; |
|
1676 | 1676 | margin: 10px 0 0; |
|
1677 | 1677 | padding: 0 0 2px; |
|
1678 | 1678 | } |
|
1679 | 1679 | |
|
1680 | 1680 | #register div.title { |
|
1681 | 1681 | clear: both; |
|
1682 | 1682 | overflow: hidden; |
|
1683 | 1683 | position: relative; |
|
1684 | 1684 | background-color: #eedc94; |
|
1685 | 1685 | background-repeat: repeat-x; |
|
1686 | 1686 | background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), |
|
1687 | 1687 | to(#eedc94) ); |
|
1688 | 1688 | background-image: -moz-linear-gradient(top, #003b76, #00376e); |
|
1689 | 1689 | background-image: -ms-linear-gradient(top, #003b76, #00376e); |
|
1690 | 1690 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003b76), |
|
1691 | 1691 | color-stop(100%, #00376e) ); |
|
1692 | 1692 | background-image: -webkit-linear-gradient(top, #003b76, #00376e) ); |
|
1693 | 1693 | background-image: -o-linear-gradient(top, #003b76, #00376e) ); |
|
1694 | 1694 | background-image: linear-gradient(top, #003b76, #00376e); |
|
1695 | 1695 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b76', |
|
1696 | 1696 | endColorstr='#00376e', GradientType=0 ); |
|
1697 | 1697 | margin: 0 auto; |
|
1698 | 1698 | padding: 0; |
|
1699 | 1699 | } |
|
1700 | 1700 | |
|
1701 | 1701 | #register div.inner { |
|
1702 | 1702 | background: #FFF; |
|
1703 | 1703 | border-top: none; |
|
1704 | 1704 | border-bottom: none; |
|
1705 | 1705 | margin: 0 auto; |
|
1706 | 1706 | padding: 20px; |
|
1707 | 1707 | } |
|
1708 | 1708 | |
|
1709 | 1709 | #register div.form div.fields div.field div.label { |
|
1710 | 1710 | width: 135px; |
|
1711 | 1711 | float: left; |
|
1712 | 1712 | text-align: right; |
|
1713 | 1713 | margin: 2px 10px 0 0; |
|
1714 | 1714 | padding: 5px 0 0 5px; |
|
1715 | 1715 | } |
|
1716 | 1716 | |
|
1717 | 1717 | #register div.form div.fields div.field div.input input { |
|
1718 | 1718 | width: 300px; |
|
1719 | 1719 | background: #FFF; |
|
1720 | 1720 | border-top: 1px solid #b3b3b3; |
|
1721 | 1721 | border-left: 1px solid #b3b3b3; |
|
1722 | 1722 | border-right: 1px solid #eaeaea; |
|
1723 | 1723 | border-bottom: 1px solid #eaeaea; |
|
1724 | 1724 | color: #000; |
|
1725 | 1725 | font-size: 11px; |
|
1726 | 1726 | margin: 0; |
|
1727 | 1727 | padding: 7px 7px 6px; |
|
1728 | 1728 | } |
|
1729 | 1729 | |
|
1730 | 1730 | #register div.form div.fields div.buttons { |
|
1731 | 1731 | clear: both; |
|
1732 | 1732 | overflow: hidden; |
|
1733 | 1733 | border-top: 1px solid #DDD; |
|
1734 | 1734 | text-align: left; |
|
1735 | 1735 | margin: 0; |
|
1736 | 1736 | padding: 10px 0 0 150px; |
|
1737 | 1737 | } |
|
1738 | 1738 | |
|
1739 | 1739 | #register div.form div.activation_msg { |
|
1740 | 1740 | padding-top: 4px; |
|
1741 | 1741 | padding-bottom: 4px; |
|
1742 | 1742 | } |
|
1743 | 1743 | |
|
1744 | 1744 | #journal .journal_day { |
|
1745 | 1745 | font-size: 20px; |
|
1746 | 1746 | padding: 10px 0px; |
|
1747 | 1747 | border-bottom: 2px solid #DDD; |
|
1748 | 1748 | margin-left: 10px; |
|
1749 | 1749 | margin-right: 10px; |
|
1750 | 1750 | } |
|
1751 | 1751 | |
|
1752 | 1752 | #journal .journal_container { |
|
1753 | 1753 | padding: 5px; |
|
1754 | 1754 | clear: both; |
|
1755 | 1755 | margin: 0px 5px 0px 10px; |
|
1756 | 1756 | } |
|
1757 | 1757 | |
|
1758 | 1758 | #journal .journal_action_container { |
|
1759 | 1759 | padding-left: 38px; |
|
1760 | 1760 | } |
|
1761 | 1761 | |
|
1762 | 1762 | #journal .journal_user { |
|
1763 | 1763 | color: #747474; |
|
1764 | 1764 | font-size: 14px; |
|
1765 | 1765 | font-weight: bold; |
|
1766 | 1766 | height: 30px; |
|
1767 | 1767 | } |
|
1768 | 1768 | |
|
1769 | 1769 | #journal .journal_icon { |
|
1770 | 1770 | clear: both; |
|
1771 | 1771 | float: left; |
|
1772 | 1772 | padding-right: 4px; |
|
1773 | 1773 | padding-top: 3px; |
|
1774 | 1774 | } |
|
1775 | 1775 | |
|
1776 | 1776 | #journal .journal_action { |
|
1777 | 1777 | padding-top: 4px; |
|
1778 | 1778 | min-height: 2px; |
|
1779 | 1779 | float: left |
|
1780 | 1780 | } |
|
1781 | 1781 | |
|
1782 | 1782 | #journal .journal_action_params { |
|
1783 | 1783 | clear: left; |
|
1784 | 1784 | padding-left: 22px; |
|
1785 | 1785 | } |
|
1786 | 1786 | |
|
1787 | 1787 | #journal .journal_repo { |
|
1788 | 1788 | float: left; |
|
1789 | 1789 | margin-left: 6px; |
|
1790 | 1790 | padding-top: 3px; |
|
1791 | 1791 | } |
|
1792 | 1792 | |
|
1793 | 1793 | #journal .date { |
|
1794 | 1794 | clear: both; |
|
1795 | 1795 | color: #777777; |
|
1796 | 1796 | font-size: 11px; |
|
1797 | 1797 | padding-left: 22px; |
|
1798 | 1798 | } |
|
1799 | 1799 | |
|
1800 | 1800 | #journal .journal_repo .journal_repo_name { |
|
1801 | 1801 | font-weight: bold; |
|
1802 | 1802 | font-size: 1.1em; |
|
1803 | 1803 | } |
|
1804 | 1804 | |
|
1805 | 1805 | #journal .compare_view { |
|
1806 | 1806 | padding: 5px 0px 5px 0px; |
|
1807 | 1807 | width: 95px; |
|
1808 | 1808 | } |
|
1809 | 1809 | |
|
1810 | 1810 | .journal_highlight { |
|
1811 | 1811 | font-weight: bold; |
|
1812 | 1812 | padding: 0 2px; |
|
1813 | 1813 | vertical-align: bottom; |
|
1814 | 1814 | } |
|
1815 | 1815 | |
|
1816 | 1816 | .trending_language_tbl,.trending_language_tbl td { |
|
1817 | 1817 | border: 0 !important; |
|
1818 | 1818 | margin: 0 !important; |
|
1819 | 1819 | padding: 0 !important; |
|
1820 | 1820 | } |
|
1821 | 1821 | |
|
1822 | 1822 | .trending_language_tbl,.trending_language_tbl tr { |
|
1823 | 1823 | border-spacing: 1px; |
|
1824 | 1824 | } |
|
1825 | 1825 | |
|
1826 | 1826 | .trending_language { |
|
1827 | 1827 | background-color: #003367; |
|
1828 | 1828 | color: #FFF; |
|
1829 | 1829 | display: block; |
|
1830 | 1830 | min-width: 20px; |
|
1831 | 1831 | text-decoration: none; |
|
1832 | 1832 | height: 12px; |
|
1833 | 1833 | margin-bottom: 0px; |
|
1834 | 1834 | margin-left: 5px; |
|
1835 | 1835 | white-space: pre; |
|
1836 | 1836 | padding: 3px; |
|
1837 | 1837 | } |
|
1838 | 1838 | |
|
1839 | 1839 | h3.files_location { |
|
1840 | 1840 | font-size: 1.8em; |
|
1841 | 1841 | font-weight: 700; |
|
1842 | 1842 | border-bottom: none !important; |
|
1843 | 1843 | margin: 10px 0 !important; |
|
1844 | 1844 | } |
|
1845 | 1845 | |
|
1846 | 1846 | #files_data dl dt { |
|
1847 | 1847 | float: left; |
|
1848 | 1848 | width: 60px; |
|
1849 | 1849 | margin: 0 !important; |
|
1850 | 1850 | padding: 5px; |
|
1851 | 1851 | } |
|
1852 | 1852 | |
|
1853 | 1853 | #files_data dl dd { |
|
1854 | 1854 | margin: 0 !important; |
|
1855 | 1855 | padding: 5px !important; |
|
1856 | 1856 | } |
|
1857 | 1857 | |
|
1858 | 1858 | #changeset_content { |
|
1859 | 1859 | border: 1px solid #CCC; |
|
1860 | 1860 | padding: 5px; |
|
1861 | 1861 | } |
|
1862 | 1862 | |
|
1863 | 1863 | #changeset_compare_view_content { |
|
1864 | 1864 | border: 1px solid #CCC; |
|
1865 | 1865 | padding: 5px; |
|
1866 | 1866 | } |
|
1867 | 1867 | |
|
1868 | 1868 | #changeset_content .container { |
|
1869 | 1869 | min-height: 120px; |
|
1870 | 1870 | font-size: 1.2em; |
|
1871 | 1871 | overflow: hidden; |
|
1872 | 1872 | } |
|
1873 | 1873 | |
|
1874 | 1874 | #changeset_compare_view_content .compare_view_commits { |
|
1875 | 1875 | width: auto !important; |
|
1876 | 1876 | } |
|
1877 | 1877 | |
|
1878 | 1878 | #changeset_compare_view_content .compare_view_commits td { |
|
1879 | 1879 | padding: 0px 0px 0px 12px !important; |
|
1880 | 1880 | } |
|
1881 | 1881 | |
|
1882 | 1882 | #changeset_content .container .right { |
|
1883 | 1883 | float: right; |
|
1884 | 1884 | width: 25%; |
|
1885 | 1885 | text-align: right; |
|
1886 | 1886 | } |
|
1887 | 1887 | |
|
1888 | 1888 | #changeset_content .container .left .message { |
|
1889 | 1889 | font-style: italic; |
|
1890 | 1890 | color: #556CB5; |
|
1891 | 1891 | white-space: pre-wrap; |
|
1892 | 1892 | } |
|
1893 | 1893 | |
|
1894 | 1894 | .cs_files .cur_cs { |
|
1895 | 1895 | margin: 10px 2px; |
|
1896 | 1896 | font-weight: bold; |
|
1897 | 1897 | } |
|
1898 | 1898 | |
|
1899 | 1899 | .cs_files .node { |
|
1900 | 1900 | float: left; |
|
1901 | 1901 | } |
|
1902 | 1902 | |
|
1903 | 1903 | .cs_files .changes { |
|
1904 | 1904 | float: right; |
|
1905 | 1905 | color:#003367; |
|
1906 | 1906 | |
|
1907 | 1907 | } |
|
1908 | 1908 | |
|
1909 | 1909 | .cs_files .changes .added { |
|
1910 | 1910 | background-color: #BBFFBB; |
|
1911 | 1911 | float: left; |
|
1912 | 1912 | text-align: center; |
|
1913 | 1913 | font-size: 9px; |
|
1914 | 1914 | padding: 2px 0px 2px 0px; |
|
1915 | 1915 | } |
|
1916 | 1916 | |
|
1917 | 1917 | .cs_files .changes .deleted { |
|
1918 | 1918 | background-color: #FF8888; |
|
1919 | 1919 | float: left; |
|
1920 | 1920 | text-align: center; |
|
1921 | 1921 | font-size: 9px; |
|
1922 | 1922 | padding: 2px 0px 2px 0px; |
|
1923 | 1923 | } |
|
1924 | 1924 | |
|
1925 | 1925 | .cs_files .cs_added { |
|
1926 | 1926 | background: url("../images/icons/page_white_add.png") no-repeat scroll |
|
1927 | 1927 | 3px; |
|
1928 | 1928 | height: 16px; |
|
1929 | 1929 | padding-left: 20px; |
|
1930 | 1930 | margin-top: 7px; |
|
1931 | 1931 | text-align: left; |
|
1932 | 1932 | } |
|
1933 | 1933 | |
|
1934 | 1934 | .cs_files .cs_changed { |
|
1935 | 1935 | background: url("../images/icons/page_white_edit.png") no-repeat scroll |
|
1936 | 1936 | 3px; |
|
1937 | 1937 | height: 16px; |
|
1938 | 1938 | padding-left: 20px; |
|
1939 | 1939 | margin-top: 7px; |
|
1940 | 1940 | text-align: left; |
|
1941 | 1941 | } |
|
1942 | 1942 | |
|
1943 | 1943 | .cs_files .cs_removed { |
|
1944 | 1944 | background: url("../images/icons/page_white_delete.png") no-repeat |
|
1945 | 1945 | scroll 3px; |
|
1946 | 1946 | height: 16px; |
|
1947 | 1947 | padding-left: 20px; |
|
1948 | 1948 | margin-top: 7px; |
|
1949 | 1949 | text-align: left; |
|
1950 | 1950 | } |
|
1951 | 1951 | |
|
1952 | 1952 | #graph { |
|
1953 | 1953 | overflow: hidden; |
|
1954 | 1954 | } |
|
1955 | 1955 | |
|
1956 | 1956 | #graph_nodes { |
|
1957 | 1957 | float: left; |
|
1958 | 1958 | margin-right: -6px; |
|
1959 | 1959 | margin-top: 0px; |
|
1960 | 1960 | } |
|
1961 | 1961 | |
|
1962 | 1962 | #graph_content { |
|
1963 | 1963 | width: 800px; |
|
1964 | 1964 | float: left; |
|
1965 | 1965 | } |
|
1966 | 1966 | |
|
1967 | 1967 | #graph_content .container_header { |
|
1968 | 1968 | border: 1px solid #CCC; |
|
1969 | 1969 | padding: 10px; |
|
1970 | 1970 | height: 45px; |
|
1971 | 1971 | -webkit-border-radius: 6px 6px 0px 0px; |
|
1972 | 1972 | -moz-border-radius: 6px 6px 0px 0px; |
|
1973 | 1973 | border-radius: 6px 6px 0px 0px; |
|
1974 | 1974 | } |
|
1975 | 1975 | |
|
1976 | 1976 | #graph_content #rev_range_container { |
|
1977 | 1977 | padding: 10px 0px; |
|
1978 | 1978 | clear: both; |
|
1979 | 1979 | } |
|
1980 | 1980 | |
|
1981 | 1981 | #graph_content .container { |
|
1982 | 1982 | border-bottom: 1px solid #CCC; |
|
1983 | 1983 | border-left: 1px solid #CCC; |
|
1984 | 1984 | border-right: 1px solid #CCC; |
|
1985 | 1985 | min-height: 70px; |
|
1986 | 1986 | overflow: hidden; |
|
1987 | 1987 | font-size: 1.2em; |
|
1988 | 1988 | } |
|
1989 | 1989 | |
|
1990 | 1990 | #graph_content .container .right { |
|
1991 | 1991 | float: right; |
|
1992 | 1992 | width: 28%; |
|
1993 | 1993 | text-align: right; |
|
1994 | 1994 | padding-bottom: 5px; |
|
1995 | 1995 | } |
|
1996 | 1996 | |
|
1997 | 1997 | #graph_content .container .left .date { |
|
1998 | 1998 | font-weight: 700; |
|
1999 | 1999 | padding-bottom: 5px; |
|
2000 | 2000 | } |
|
2001 | 2001 | |
|
2002 | 2002 | #graph_content .container .left .date span { |
|
2003 | 2003 | vertical-align: text-top; |
|
2004 | 2004 | } |
|
2005 | 2005 | |
|
2006 | 2006 | #graph_content .container .left .author { |
|
2007 | 2007 | height: 22px; |
|
2008 | 2008 | } |
|
2009 | 2009 | |
|
2010 | 2010 | #graph_content .container .left .author .user { |
|
2011 | 2011 | color: #444444; |
|
2012 | 2012 | float: left; |
|
2013 | 2013 | font-size: 12px; |
|
2014 | 2014 | margin-left: -4px; |
|
2015 | 2015 | margin-top: 4px; |
|
2016 | 2016 | } |
|
2017 | 2017 | |
|
2018 | 2018 | #graph_content .container .left .message { |
|
2019 | 2019 | font-size: 100%; |
|
2020 | 2020 | padding-top: 3px; |
|
2021 | 2021 | white-space: pre-wrap; |
|
2022 | 2022 | } |
|
2023 | 2023 | |
|
2024 | 2024 | #graph_content .container .left .message a:hover{ |
|
2025 | 2025 | text-decoration: none; |
|
2026 | 2026 | } |
|
2027 | 2027 | |
|
2028 | 2028 | .right div { |
|
2029 | 2029 | clear: both; |
|
2030 | 2030 | } |
|
2031 | 2031 | |
|
2032 | 2032 | .right .changes .changed_total { |
|
2033 | 2033 | border: 0px solid #DDD; |
|
2034 | 2034 | display: block; |
|
2035 | 2035 | float: right; |
|
2036 | 2036 | text-align: center; |
|
2037 | 2037 | min-width: 45px; |
|
2038 | 2038 | cursor: pointer; |
|
2039 | 2039 | background: #FD8; |
|
2040 | 2040 | font-weight: bold; |
|
2041 | 2041 | -webkit-border-radius: 0px 0px 0px 6px; |
|
2042 | 2042 | -moz-border-radius: 0px 0px 0px 6px; |
|
2043 | 2043 | border-radius: 0px 0px 0px 6px; |
|
2044 | 2044 | padding: 2px; |
|
2045 | 2045 | } |
|
2046 | 2046 | |
|
2047 | 2047 | .right .changes .added,.changed,.removed { |
|
2048 | 2048 | border: 1px solid #DDD; |
|
2049 | 2049 | display: block; |
|
2050 | 2050 | float: right; |
|
2051 | 2051 | text-align: center; |
|
2052 | 2052 | min-width: 15px; |
|
2053 | 2053 | cursor: help; |
|
2054 | 2054 | } |
|
2055 | 2055 | |
|
2056 | 2056 | .right .changes .large { |
|
2057 | 2057 | border: 1px solid #DDD; |
|
2058 | 2058 | display: block; |
|
2059 | 2059 | float: right; |
|
2060 | 2060 | text-align: center; |
|
2061 | 2061 | min-width: 45px; |
|
2062 | 2062 | cursor: help; |
|
2063 | 2063 | background: #54A9F7; |
|
2064 | 2064 | } |
|
2065 | 2065 | |
|
2066 | 2066 | .right .changes .added { |
|
2067 | 2067 | background: #BFB; |
|
2068 | 2068 | } |
|
2069 | 2069 | |
|
2070 | 2070 | .right .changes .changed { |
|
2071 | 2071 | background: #FD8; |
|
2072 | 2072 | } |
|
2073 | 2073 | |
|
2074 | 2074 | .right .changes .removed { |
|
2075 | 2075 | background: #F88; |
|
2076 | 2076 | } |
|
2077 | 2077 | |
|
2078 | 2078 | .right .merge { |
|
2079 | 2079 | vertical-align: top; |
|
2080 | 2080 | font-size: 0.75em; |
|
2081 | 2081 | font-weight: 700; |
|
2082 | 2082 | } |
|
2083 | 2083 | |
|
2084 | 2084 | .right .parent { |
|
2085 | 2085 | font-size: 90%; |
|
2086 | 2086 | font-family: monospace; |
|
2087 | 2087 | padding: 2px 2px 2px 2px; |
|
2088 | 2088 | } |
|
2089 | 2089 | .right .logtags{ |
|
2090 | 2090 | padding: 2px 2px 2px 2px; |
|
2091 | 2091 | } |
|
2092 | 2092 | .right .logtags .branchtag,.logtags .branchtag { |
|
2093 | 2093 | padding: 1px 3px 2px; |
|
2094 | 2094 | background-color: #bfbfbf; |
|
2095 | 2095 | font-size: 9.75px; |
|
2096 | 2096 | font-weight: bold; |
|
2097 | 2097 | color: #ffffff; |
|
2098 | 2098 | text-transform: uppercase; |
|
2099 | 2099 | white-space: nowrap; |
|
2100 | 2100 | -webkit-border-radius: 3px; |
|
2101 | 2101 | -moz-border-radius: 3px; |
|
2102 | 2102 | border-radius: 3px; |
|
2103 | 2103 | padding-left:4px; |
|
2104 | 2104 | } |
|
2105 | 2105 | .right .logtags .branchtag a:hover,.logtags .branchtag a{ |
|
2106 | 2106 | color: #ffffff; |
|
2107 | 2107 | } |
|
2108 | 2108 | .right .logtags .branchtag a:hover,.logtags .branchtag a:hover{ |
|
2109 | 2109 | text-decoration: none; |
|
2110 | 2110 | color: #ffffff; |
|
2111 | 2111 | } |
|
2112 | 2112 | .right .logtags .tagtag,.logtags .tagtag { |
|
2113 | 2113 | padding: 1px 3px 2px; |
|
2114 | 2114 | background-color: #62cffc; |
|
2115 | 2115 | font-size: 9.75px; |
|
2116 | 2116 | font-weight: bold; |
|
2117 | 2117 | color: #ffffff; |
|
2118 | 2118 | text-transform: uppercase; |
|
2119 | 2119 | white-space: nowrap; |
|
2120 | 2120 | -webkit-border-radius: 3px; |
|
2121 | 2121 | -moz-border-radius: 3px; |
|
2122 | 2122 | border-radius: 3px; |
|
2123 | 2123 | } |
|
2124 | 2124 | .right .logtags .tagtag a:hover,.logtags .tagtag a{ |
|
2125 | 2125 | color: #ffffff; |
|
2126 | 2126 | } |
|
2127 | 2127 | .right .logtags .tagtag a:hover,.logtags .tagtag a:hover{ |
|
2128 | 2128 | text-decoration: none; |
|
2129 | 2129 | color: #ffffff; |
|
2130 | 2130 | } |
|
2131 | 2131 | .right .logbooks .bookbook,.logbooks .bookbook { |
|
2132 | 2132 | padding: 1px 3px 2px; |
|
2133 | 2133 | background-color: #46A546; |
|
2134 | 2134 | font-size: 9.75px; |
|
2135 | 2135 | font-weight: bold; |
|
2136 | 2136 | color: #ffffff; |
|
2137 | 2137 | text-transform: uppercase; |
|
2138 | 2138 | white-space: nowrap; |
|
2139 | 2139 | -webkit-border-radius: 3px; |
|
2140 | 2140 | -moz-border-radius: 3px; |
|
2141 | 2141 | border-radius: 3px; |
|
2142 | 2142 | } |
|
2143 | 2143 | .right .logbooks .bookbook,.logbooks .bookbook a{ |
|
2144 | 2144 | color: #ffffff; |
|
2145 | 2145 | } |
|
2146 | 2146 | .right .logbooks .bookbook,.logbooks .bookbook a:hover{ |
|
2147 | 2147 | text-decoration: none; |
|
2148 | 2148 | color: #ffffff; |
|
2149 | 2149 | } |
|
2150 | 2150 | div.browserblock { |
|
2151 | 2151 | overflow: hidden; |
|
2152 | 2152 | border: 1px solid #ccc; |
|
2153 | 2153 | background: #f8f8f8; |
|
2154 | 2154 | font-size: 100%; |
|
2155 | 2155 | line-height: 125%; |
|
2156 | 2156 | padding: 0; |
|
2157 | 2157 | -webkit-border-radius: 6px 6px 0px 0px; |
|
2158 | 2158 | -moz-border-radius: 6px 6px 0px 0px; |
|
2159 | 2159 | border-radius: 6px 6px 0px 0px; |
|
2160 | 2160 | } |
|
2161 | 2161 | |
|
2162 | 2162 | div.browserblock .browser-header { |
|
2163 | 2163 | background: #FFF; |
|
2164 | 2164 | padding: 10px 0px 15px 0px; |
|
2165 | 2165 | width: 100%; |
|
2166 | 2166 | } |
|
2167 | 2167 | |
|
2168 | 2168 | div.browserblock .browser-nav { |
|
2169 | 2169 | float: left |
|
2170 | 2170 | } |
|
2171 | 2171 | |
|
2172 | 2172 | div.browserblock .browser-branch { |
|
2173 | 2173 | float: left; |
|
2174 | 2174 | } |
|
2175 | 2175 | |
|
2176 | 2176 | div.browserblock .browser-branch label { |
|
2177 | 2177 | color: #4A4A4A; |
|
2178 | 2178 | vertical-align: text-top; |
|
2179 | 2179 | } |
|
2180 | 2180 | |
|
2181 | 2181 | div.browserblock .browser-header span { |
|
2182 | 2182 | margin-left: 5px; |
|
2183 | 2183 | font-weight: 700; |
|
2184 | 2184 | } |
|
2185 | 2185 | |
|
2186 | 2186 | div.browserblock .browser-search { |
|
2187 | 2187 | clear: both; |
|
2188 | 2188 | padding: 8px 8px 0px 5px; |
|
2189 | 2189 | height: 20px; |
|
2190 | 2190 | } |
|
2191 | 2191 | |
|
2192 | 2192 | div.browserblock #node_filter_box { |
|
2193 | 2193 | |
|
2194 | 2194 | } |
|
2195 | 2195 | |
|
2196 | 2196 | div.browserblock .search_activate { |
|
2197 | 2197 | float: left |
|
2198 | 2198 | } |
|
2199 | 2199 | |
|
2200 | 2200 | div.browserblock .add_node { |
|
2201 | 2201 | float: left; |
|
2202 | 2202 | padding-left: 5px; |
|
2203 | 2203 | } |
|
2204 | 2204 | |
|
2205 | 2205 | div.browserblock .search_activate a:hover,div.browserblock .add_node a:hover |
|
2206 | 2206 | { |
|
2207 | 2207 | text-decoration: none !important; |
|
2208 | 2208 | } |
|
2209 | 2209 | |
|
2210 | 2210 | div.browserblock .browser-body { |
|
2211 | 2211 | background: #EEE; |
|
2212 | 2212 | border-top: 1px solid #CCC; |
|
2213 | 2213 | } |
|
2214 | 2214 | |
|
2215 | 2215 | table.code-browser { |
|
2216 | 2216 | border-collapse: collapse; |
|
2217 | 2217 | width: 100%; |
|
2218 | 2218 | } |
|
2219 | 2219 | |
|
2220 | 2220 | table.code-browser tr { |
|
2221 | 2221 | margin: 3px; |
|
2222 | 2222 | } |
|
2223 | 2223 | |
|
2224 | 2224 | table.code-browser thead th { |
|
2225 | 2225 | background-color: #EEE; |
|
2226 | 2226 | height: 20px; |
|
2227 | 2227 | font-size: 1.1em; |
|
2228 | 2228 | font-weight: 700; |
|
2229 | 2229 | text-align: left; |
|
2230 | 2230 | padding-left: 10px; |
|
2231 | 2231 | } |
|
2232 | 2232 | |
|
2233 | 2233 | table.code-browser tbody td { |
|
2234 | 2234 | padding-left: 10px; |
|
2235 | 2235 | height: 20px; |
|
2236 | 2236 | } |
|
2237 | 2237 | |
|
2238 | 2238 | table.code-browser .browser-file { |
|
2239 | 2239 | background: url("../images/icons/document_16.png") no-repeat scroll 3px; |
|
2240 | 2240 | height: 16px; |
|
2241 | 2241 | padding-left: 20px; |
|
2242 | 2242 | text-align: left; |
|
2243 | 2243 | } |
|
2244 | 2244 | |
|
2245 | 2245 | .diffblock .changeset_file { |
|
2246 | 2246 | background: url("../images/icons/file.png") no-repeat scroll 3px; |
|
2247 | 2247 | height: 16px; |
|
2248 | 2248 | padding-left: 22px; |
|
2249 | 2249 | text-align: left; |
|
2250 | 2250 | font-size: 14px; |
|
2251 | 2251 | } |
|
2252 | 2252 | |
|
2253 | 2253 | .diffblock .changeset_header { |
|
2254 | 2254 | margin-left: 6px !important; |
|
2255 | 2255 | } |
|
2256 | 2256 | |
|
2257 | 2257 | table.code-browser .browser-dir { |
|
2258 | 2258 | background: url("../images/icons/folder_16.png") no-repeat scroll 3px; |
|
2259 | 2259 | height: 16px; |
|
2260 | 2260 | padding-left: 20px; |
|
2261 | 2261 | text-align: left; |
|
2262 | 2262 | } |
|
2263 | 2263 | |
|
2264 | 2264 | .box .search { |
|
2265 | 2265 | clear: both; |
|
2266 | 2266 | overflow: hidden; |
|
2267 | 2267 | margin: 0; |
|
2268 | 2268 | padding: 0 20px 10px; |
|
2269 | 2269 | } |
|
2270 | 2270 | |
|
2271 | 2271 | .box .search div.search_path { |
|
2272 | 2272 | background: none repeat scroll 0 0 #EEE; |
|
2273 | 2273 | border: 1px solid #CCC; |
|
2274 | 2274 | color: blue; |
|
2275 | 2275 | margin-bottom: 10px; |
|
2276 | 2276 | padding: 10px 0; |
|
2277 | 2277 | } |
|
2278 | 2278 | |
|
2279 | 2279 | .box .search div.search_path div.link { |
|
2280 | 2280 | font-weight: 700; |
|
2281 | 2281 | margin-left: 25px; |
|
2282 | 2282 | } |
|
2283 | 2283 | |
|
2284 | 2284 | .box .search div.search_path div.link a { |
|
2285 | 2285 | color: #003367; |
|
2286 | 2286 | cursor: pointer; |
|
2287 | 2287 | text-decoration: none; |
|
2288 | 2288 | } |
|
2289 | 2289 | |
|
2290 | 2290 | #path_unlock { |
|
2291 | 2291 | color: red; |
|
2292 | 2292 | font-size: 1.2em; |
|
2293 | 2293 | padding-left: 4px; |
|
2294 | 2294 | } |
|
2295 | 2295 | |
|
2296 | 2296 | .info_box span { |
|
2297 | 2297 | margin-left: 3px; |
|
2298 | 2298 | margin-right: 3px; |
|
2299 | 2299 | } |
|
2300 | 2300 | |
|
2301 | 2301 | .info_box .rev { |
|
2302 | 2302 | color: #003367; |
|
2303 | 2303 | font-size: 1.6em; |
|
2304 | 2304 | font-weight: bold; |
|
2305 | 2305 | vertical-align: sub; |
|
2306 | 2306 | } |
|
2307 | 2307 | |
|
2308 | 2308 | .info_box input#at_rev,.info_box input#size { |
|
2309 | 2309 | background: #FFF; |
|
2310 | 2310 | border-top: 1px solid #b3b3b3; |
|
2311 | 2311 | border-left: 1px solid #b3b3b3; |
|
2312 | 2312 | border-right: 1px solid #eaeaea; |
|
2313 | 2313 | border-bottom: 1px solid #eaeaea; |
|
2314 | 2314 | color: #000; |
|
2315 | 2315 | font-size: 12px; |
|
2316 | 2316 | margin: 0; |
|
2317 | 2317 | padding: 1px 5px 1px; |
|
2318 | 2318 | } |
|
2319 | 2319 | |
|
2320 | 2320 | .info_box input#view { |
|
2321 | 2321 | text-align: center; |
|
2322 | 2322 | padding: 4px 3px 2px 2px; |
|
2323 | 2323 | } |
|
2324 | 2324 | |
|
2325 | 2325 | .yui-overlay,.yui-panel-container { |
|
2326 | 2326 | visibility: hidden; |
|
2327 | 2327 | position: absolute; |
|
2328 | 2328 | z-index: 2; |
|
2329 | 2329 | } |
|
2330 | 2330 | |
|
2331 | 2331 | .yui-tt { |
|
2332 | 2332 | visibility: hidden; |
|
2333 | 2333 | position: absolute; |
|
2334 | 2334 | color: #666; |
|
2335 | 2335 | background-color: #FFF; |
|
2336 | 2336 | border: 2px solid #003367; |
|
2337 | 2337 | font: 100% sans-serif; |
|
2338 | 2338 | width: auto; |
|
2339 | 2339 | opacity: 1px; |
|
2340 | 2340 | padding: 8px; |
|
2341 | 2341 | white-space: pre-wrap; |
|
2342 | 2342 | -webkit-border-radius: 8px 8px 8px 8px; |
|
2343 | 2343 | -khtml-border-radius: 8px 8px 8px 8px; |
|
2344 | 2344 | -moz-border-radius: 8px 8px 8px 8px; |
|
2345 | 2345 | border-radius: 8px 8px 8px 8px; |
|
2346 | 2346 | box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6); |
|
2347 | 2347 | } |
|
2348 | 2348 | |
|
2349 | 2349 | .ac { |
|
2350 | 2350 | vertical-align: top; |
|
2351 | 2351 | } |
|
2352 | 2352 | |
|
2353 | 2353 | .ac .yui-ac { |
|
2354 | 2354 | position: relative; |
|
2355 | 2355 | font-size: 100%; |
|
2356 | 2356 | } |
|
2357 | 2357 | |
|
2358 | 2358 | .ac .perm_ac { |
|
2359 | 2359 | width: 15em; |
|
2360 | 2360 | } |
|
2361 | 2361 | |
|
2362 | 2362 | .ac .yui-ac-input { |
|
2363 | 2363 | width: 100%; |
|
2364 | 2364 | } |
|
2365 | 2365 | |
|
2366 | 2366 | .ac .yui-ac-container { |
|
2367 | 2367 | position: absolute; |
|
2368 | 2368 | top: 1.6em; |
|
2369 | 2369 | width: 100%; |
|
2370 | 2370 | } |
|
2371 | 2371 | |
|
2372 | 2372 | .ac .yui-ac-content { |
|
2373 | 2373 | position: absolute; |
|
2374 | 2374 | width: 100%; |
|
2375 | 2375 | border: 1px solid gray; |
|
2376 | 2376 | background: #fff; |
|
2377 | 2377 | overflow: hidden; |
|
2378 | 2378 | z-index: 9050; |
|
2379 | 2379 | } |
|
2380 | 2380 | |
|
2381 | 2381 | .ac .yui-ac-shadow { |
|
2382 | 2382 | position: absolute; |
|
2383 | 2383 | width: 100%; |
|
2384 | 2384 | background: #000; |
|
2385 | 2385 | -moz-opacity: 0.1px; |
|
2386 | 2386 | opacity: .10; |
|
2387 | 2387 | filter: alpha(opacity = 10); |
|
2388 | 2388 | z-index: 9049; |
|
2389 | 2389 | margin: .3em; |
|
2390 | 2390 | } |
|
2391 | 2391 | |
|
2392 | 2392 | .ac .yui-ac-content ul { |
|
2393 | 2393 | width: 100%; |
|
2394 | 2394 | margin: 0; |
|
2395 | 2395 | padding: 0; |
|
2396 | 2396 | } |
|
2397 | 2397 | |
|
2398 | 2398 | .ac .yui-ac-content li { |
|
2399 | 2399 | cursor: default; |
|
2400 | 2400 | white-space: nowrap; |
|
2401 | 2401 | margin: 0; |
|
2402 | 2402 | padding: 2px 5px; |
|
2403 | 2403 | } |
|
2404 | 2404 | |
|
2405 | 2405 | .ac .yui-ac-content li.yui-ac-prehighlight { |
|
2406 | 2406 | background: #B3D4FF; |
|
2407 | 2407 | } |
|
2408 | 2408 | |
|
2409 | 2409 | .ac .yui-ac-content li.yui-ac-highlight { |
|
2410 | 2410 | background: #556CB5; |
|
2411 | 2411 | color: #FFF; |
|
2412 | 2412 | } |
|
2413 | 2413 | |
|
2414 | 2414 | .follow { |
|
2415 | 2415 | background: url("../images/icons/heart_add.png") no-repeat scroll 3px; |
|
2416 | 2416 | height: 16px; |
|
2417 | 2417 | width: 20px; |
|
2418 | 2418 | cursor: pointer; |
|
2419 | 2419 | display: block; |
|
2420 | 2420 | float: right; |
|
2421 | 2421 | margin-top: 2px; |
|
2422 | 2422 | } |
|
2423 | 2423 | |
|
2424 | 2424 | .following { |
|
2425 | 2425 | background: url("../images/icons/heart_delete.png") no-repeat scroll 3px; |
|
2426 | 2426 | height: 16px; |
|
2427 | 2427 | width: 20px; |
|
2428 | 2428 | cursor: pointer; |
|
2429 | 2429 | display: block; |
|
2430 | 2430 | float: right; |
|
2431 | 2431 | margin-top: 2px; |
|
2432 | 2432 | } |
|
2433 | 2433 | |
|
2434 | 2434 | .currently_following { |
|
2435 | 2435 | padding-left: 10px; |
|
2436 | 2436 | padding-bottom: 5px; |
|
2437 | 2437 | } |
|
2438 | 2438 | |
|
2439 | 2439 | .add_icon { |
|
2440 | 2440 | background: url("../images/icons/add.png") no-repeat scroll 3px; |
|
2441 | 2441 | padding-left: 20px; |
|
2442 | 2442 | padding-top: 0px; |
|
2443 | 2443 | text-align: left; |
|
2444 | 2444 | } |
|
2445 | 2445 | |
|
2446 | 2446 | .edit_icon { |
|
2447 | 2447 | background: url("../images/icons/folder_edit.png") no-repeat scroll 3px; |
|
2448 | 2448 | padding-left: 20px; |
|
2449 | 2449 | padding-top: 0px; |
|
2450 | 2450 | text-align: left; |
|
2451 | 2451 | } |
|
2452 | 2452 | |
|
2453 | 2453 | .delete_icon { |
|
2454 | 2454 | background: url("../images/icons/delete.png") no-repeat scroll 3px; |
|
2455 | 2455 | padding-left: 20px; |
|
2456 | 2456 | padding-top: 0px; |
|
2457 | 2457 | text-align: left; |
|
2458 | 2458 | } |
|
2459 | 2459 | |
|
2460 | 2460 | .refresh_icon { |
|
2461 | 2461 | background: url("../images/icons/arrow_refresh.png") no-repeat scroll |
|
2462 | 2462 | 3px; |
|
2463 | 2463 | padding-left: 20px; |
|
2464 | 2464 | padding-top: 0px; |
|
2465 | 2465 | text-align: left; |
|
2466 | 2466 | } |
|
2467 | 2467 | |
|
2468 | 2468 | .pull_icon { |
|
2469 | 2469 | background: url("../images/icons/connect.png") no-repeat scroll 3px; |
|
2470 | 2470 | padding-left: 20px; |
|
2471 | 2471 | padding-top: 0px; |
|
2472 | 2472 | text-align: left; |
|
2473 | 2473 | } |
|
2474 | 2474 | |
|
2475 | 2475 | .rss_icon { |
|
2476 | 2476 | background: url("../images/icons/rss_16.png") no-repeat scroll 3px; |
|
2477 | 2477 | padding-left: 20px; |
|
2478 | 2478 | padding-top: 4px; |
|
2479 | 2479 | text-align: left; |
|
2480 | 2480 | font-size: 8px |
|
2481 | 2481 | } |
|
2482 | 2482 | |
|
2483 | 2483 | .atom_icon { |
|
2484 | 2484 | background: url("../images/icons/atom.png") no-repeat scroll 3px; |
|
2485 | 2485 | padding-left: 20px; |
|
2486 | 2486 | padding-top: 4px; |
|
2487 | 2487 | text-align: left; |
|
2488 | 2488 | font-size: 8px |
|
2489 | 2489 | } |
|
2490 | 2490 | |
|
2491 | 2491 | .archive_icon { |
|
2492 | 2492 | background: url("../images/icons/compress.png") no-repeat scroll 3px; |
|
2493 | 2493 | padding-left: 20px; |
|
2494 | 2494 | text-align: left; |
|
2495 | 2495 | padding-top: 1px; |
|
2496 | 2496 | } |
|
2497 | 2497 | |
|
2498 | 2498 | .start_following_icon { |
|
2499 | 2499 | background: url("../images/icons/heart_add.png") no-repeat scroll 3px; |
|
2500 | 2500 | padding-left: 20px; |
|
2501 | 2501 | text-align: left; |
|
2502 | 2502 | padding-top: 0px; |
|
2503 | 2503 | } |
|
2504 | 2504 | |
|
2505 | 2505 | .stop_following_icon { |
|
2506 | 2506 | background: url("../images/icons/heart_delete.png") no-repeat scroll 3px; |
|
2507 | 2507 | padding-left: 20px; |
|
2508 | 2508 | text-align: left; |
|
2509 | 2509 | padding-top: 0px; |
|
2510 | 2510 | } |
|
2511 | 2511 | |
|
2512 | 2512 | .action_button { |
|
2513 | 2513 | border: 0; |
|
2514 | 2514 | display: inline; |
|
2515 | 2515 | } |
|
2516 | 2516 | |
|
2517 | 2517 | .action_button:hover { |
|
2518 | 2518 | border: 0; |
|
2519 | 2519 | text-decoration: underline; |
|
2520 | 2520 | cursor: pointer; |
|
2521 | 2521 | } |
|
2522 | 2522 | |
|
2523 | 2523 | #switch_repos { |
|
2524 | 2524 | position: absolute; |
|
2525 | 2525 | height: 25px; |
|
2526 | 2526 | z-index: 1; |
|
2527 | 2527 | } |
|
2528 | 2528 | |
|
2529 | 2529 | #switch_repos select { |
|
2530 | 2530 | min-width: 150px; |
|
2531 | 2531 | max-height: 250px; |
|
2532 | 2532 | z-index: 1; |
|
2533 | 2533 | } |
|
2534 | 2534 | |
|
2535 | 2535 | .breadcrumbs { |
|
2536 | 2536 | border: medium none; |
|
2537 | 2537 | color: #FFF; |
|
2538 | 2538 | float: left; |
|
2539 | 2539 | text-transform: uppercase; |
|
2540 | 2540 | font-weight: 700; |
|
2541 | 2541 | font-size: 14px; |
|
2542 | 2542 | margin: 0; |
|
2543 | 2543 | padding: 11px 0 11px 10px; |
|
2544 | 2544 | } |
|
2545 | 2545 | |
|
2546 | 2546 | .breadcrumbs a { |
|
2547 | 2547 | color: #FFF; |
|
2548 | 2548 | } |
|
2549 | 2549 | |
|
2550 | 2550 | .flash_msg { |
|
2551 | 2551 | |
|
2552 | 2552 | } |
|
2553 | 2553 | |
|
2554 | 2554 | .flash_msg ul { |
|
2555 | 2555 | |
|
2556 | 2556 | } |
|
2557 | 2557 | |
|
2558 | 2558 | .error_msg { |
|
2559 | 2559 | background-color: #c43c35; |
|
2560 | 2560 | background-repeat: repeat-x; |
|
2561 | 2561 | background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), |
|
2562 | 2562 | to(#c43c35) ); |
|
2563 | 2563 | background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); |
|
2564 | 2564 | background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35); |
|
2565 | 2565 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), |
|
2566 | 2566 | color-stop(100%, #c43c35) ); |
|
2567 | 2567 | background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); |
|
2568 | 2568 | background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); |
|
2569 | 2569 | background-image: linear-gradient(top, #ee5f5b, #c43c35); |
|
2570 | 2570 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', |
|
2571 | 2571 | endColorstr='#c43c35', GradientType=0 ); |
|
2572 | 2572 | border-color: #c43c35 #c43c35 #882a25; |
|
2573 | 2573 | } |
|
2574 | 2574 | |
|
2575 | 2575 | .warning_msg { |
|
2576 | 2576 | color: #404040 !important; |
|
2577 | 2577 | background-color: #eedc94; |
|
2578 | 2578 | background-repeat: repeat-x; |
|
2579 | 2579 | background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), |
|
2580 | 2580 | to(#eedc94) ); |
|
2581 | 2581 | background-image: -moz-linear-gradient(top, #fceec1, #eedc94); |
|
2582 | 2582 | background-image: -ms-linear-gradient(top, #fceec1, #eedc94); |
|
2583 | 2583 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), |
|
2584 | 2584 | color-stop(100%, #eedc94) ); |
|
2585 | 2585 | background-image: -webkit-linear-gradient(top, #fceec1, #eedc94); |
|
2586 | 2586 | background-image: -o-linear-gradient(top, #fceec1, #eedc94); |
|
2587 | 2587 | background-image: linear-gradient(top, #fceec1, #eedc94); |
|
2588 | 2588 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', |
|
2589 | 2589 | endColorstr='#eedc94', GradientType=0 ); |
|
2590 | 2590 | border-color: #eedc94 #eedc94 #e4c652; |
|
2591 | 2591 | } |
|
2592 | 2592 | |
|
2593 | 2593 | .success_msg { |
|
2594 | 2594 | background-color: #57a957; |
|
2595 | 2595 | background-repeat: repeat-x !important; |
|
2596 | 2596 | background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), |
|
2597 | 2597 | to(#57a957) ); |
|
2598 | 2598 | background-image: -moz-linear-gradient(top, #62c462, #57a957); |
|
2599 | 2599 | background-image: -ms-linear-gradient(top, #62c462, #57a957); |
|
2600 | 2600 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), |
|
2601 | 2601 | color-stop(100%, #57a957) ); |
|
2602 | 2602 | background-image: -webkit-linear-gradient(top, #62c462, #57a957); |
|
2603 | 2603 | background-image: -o-linear-gradient(top, #62c462, #57a957); |
|
2604 | 2604 | background-image: linear-gradient(top, #62c462, #57a957); |
|
2605 | 2605 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', |
|
2606 | 2606 | endColorstr='#57a957', GradientType=0 ); |
|
2607 | 2607 | border-color: #57a957 #57a957 #3d773d; |
|
2608 | 2608 | } |
|
2609 | 2609 | |
|
2610 | 2610 | .notice_msg { |
|
2611 | 2611 | background-color: #339bb9; |
|
2612 | 2612 | background-repeat: repeat-x; |
|
2613 | 2613 | background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), |
|
2614 | 2614 | to(#339bb9) ); |
|
2615 | 2615 | background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); |
|
2616 | 2616 | background-image: -ms-linear-gradient(top, #5bc0de, #339bb9); |
|
2617 | 2617 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), |
|
2618 | 2618 | color-stop(100%, #339bb9) ); |
|
2619 | 2619 | background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); |
|
2620 | 2620 | background-image: -o-linear-gradient(top, #5bc0de, #339bb9); |
|
2621 | 2621 | background-image: linear-gradient(top, #5bc0de, #339bb9); |
|
2622 | 2622 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', |
|
2623 | 2623 | endColorstr='#339bb9', GradientType=0 ); |
|
2624 | 2624 | border-color: #339bb9 #339bb9 #22697d; |
|
2625 | 2625 | } |
|
2626 | 2626 | |
|
2627 | 2627 | .success_msg,.error_msg,.notice_msg,.warning_msg { |
|
2628 | 2628 | font-size: 12px; |
|
2629 | 2629 | font-weight: 700; |
|
2630 | 2630 | min-height: 14px; |
|
2631 | 2631 | line-height: 14px; |
|
2632 | 2632 | margin-bottom: 10px; |
|
2633 | 2633 | margin-top: 0; |
|
2634 | 2634 | display: block; |
|
2635 | 2635 | overflow: auto; |
|
2636 | 2636 | padding: 6px 10px 6px 10px; |
|
2637 | 2637 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
|
2638 | 2638 | position: relative; |
|
2639 | 2639 | color: #FFF; |
|
2640 | 2640 | border-width: 1px; |
|
2641 | 2641 | border-style: solid; |
|
2642 | 2642 | -webkit-border-radius: 4px; |
|
2643 | 2643 | -moz-border-radius: 4px; |
|
2644 | 2644 | border-radius: 4px; |
|
2645 | 2645 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); |
|
2646 | 2646 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); |
|
2647 | 2647 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); |
|
2648 | 2648 | } |
|
2649 | 2649 | |
|
2650 | 2650 | #msg_close { |
|
2651 | 2651 | background: transparent url("../icons/cross_grey_small.png") no-repeat |
|
2652 | 2652 | scroll 0 0; |
|
2653 | 2653 | cursor: pointer; |
|
2654 | 2654 | height: 16px; |
|
2655 | 2655 | position: absolute; |
|
2656 | 2656 | right: 5px; |
|
2657 | 2657 | top: 5px; |
|
2658 | 2658 | width: 16px; |
|
2659 | 2659 | } |
|
2660 | 2660 | |
|
2661 | 2661 | div#legend_container table,div#legend_choices table { |
|
2662 | 2662 | width: auto !important; |
|
2663 | 2663 | } |
|
2664 | 2664 | |
|
2665 | 2665 | table#permissions_manage { |
|
2666 | 2666 | width: 0 !important; |
|
2667 | 2667 | } |
|
2668 | 2668 | |
|
2669 | 2669 | table#permissions_manage span.private_repo_msg { |
|
2670 | 2670 | font-size: 0.8em; |
|
2671 | 2671 | opacity: 0.6px; |
|
2672 | 2672 | } |
|
2673 | 2673 | |
|
2674 | 2674 | table#permissions_manage td.private_repo_msg { |
|
2675 | 2675 | font-size: 0.8em; |
|
2676 | 2676 | } |
|
2677 | 2677 | |
|
2678 | 2678 | table#permissions_manage tr#add_perm_input td { |
|
2679 | 2679 | vertical-align: middle; |
|
2680 | 2680 | } |
|
2681 | 2681 | |
|
2682 | 2682 | div.gravatar { |
|
2683 | 2683 | background-color: #FFF; |
|
2684 | 2684 | border: 0px solid #D0D0D0; |
|
2685 | 2685 | float: left; |
|
2686 | 2686 | margin-right: 0.7em; |
|
2687 | 2687 | padding: 2px 2px 2px 2px; |
|
2688 | 2688 | line-height:0; |
|
2689 | 2689 | -webkit-border-radius: 6px; |
|
2690 | 2690 | -khtml-border-radius: 6px; |
|
2691 | 2691 | -moz-border-radius: 6px; |
|
2692 | 2692 | border-radius: 6px; |
|
2693 | 2693 | } |
|
2694 | 2694 | |
|
2695 | 2695 | div.gravatar img { |
|
2696 | 2696 | -webkit-border-radius: 4px; |
|
2697 | 2697 | -khtml-border-radius: 4px; |
|
2698 | 2698 | -moz-border-radius: 4px; |
|
2699 | 2699 | border-radius: 4px; |
|
2700 | 2700 | } |
|
2701 | 2701 | |
|
2702 | 2702 | #header,#content,#footer { |
|
2703 | 2703 | min-width: 978px; |
|
2704 | 2704 | } |
|
2705 | 2705 | |
|
2706 | 2706 | #content { |
|
2707 | 2707 | clear: both; |
|
2708 | 2708 | overflow: hidden; |
|
2709 | 2709 | padding: 14px 10px; |
|
2710 | 2710 | } |
|
2711 | 2711 | |
|
2712 | 2712 | #content div.box div.title div.search { |
|
2713 | 2713 | |
|
2714 | 2714 | border-left: 1px solid #316293; |
|
2715 | 2715 | } |
|
2716 | 2716 | |
|
2717 | 2717 | #content div.box div.title div.search div.input input { |
|
2718 | 2718 | border: 1px solid #316293; |
|
2719 | 2719 | } |
|
2720 | 2720 | |
|
2721 | 2721 | .ui-btn{ |
|
2722 | 2722 | color: #515151; |
|
2723 | 2723 | background-color: #DADADA; |
|
2724 | 2724 | background-repeat: repeat-x; |
|
2725 | 2725 | background-image: -khtml-gradient(linear, left top, left bottom, from(#F4F4F4),to(#DADADA) ); |
|
2726 | 2726 | background-image: -moz-linear-gradient(top, #F4F4F4, #DADADA); |
|
2727 | 2727 | background-image: -ms-linear-gradient(top, #F4F4F4, #DADADA); |
|
2728 | 2728 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F4F4F4),color-stop(100%, #DADADA) ); |
|
2729 | 2729 | background-image: -webkit-linear-gradient(top, #F4F4F4, #DADADA) ); |
|
2730 | 2730 | background-image: -o-linear-gradient(top, #F4F4F4, #DADADA) ); |
|
2731 | 2731 | background-image: linear-gradient(top, #F4F4F4, #DADADA); |
|
2732 | 2732 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F4F4F4', endColorstr='#DADADA', GradientType=0); |
|
2733 | 2733 | |
|
2734 | 2734 | border-top: 1px solid #DDD; |
|
2735 | 2735 | border-left: 1px solid #c6c6c6; |
|
2736 | 2736 | border-right: 1px solid #DDD; |
|
2737 | 2737 | border-bottom: 1px solid #c6c6c6; |
|
2738 | 2738 | color: #515151; |
|
2739 | 2739 | outline: none; |
|
2740 | 2740 | margin: 0px 3px 3px 0px; |
|
2741 | 2741 | -webkit-border-radius: 4px 4px 4px 4px !important; |
|
2742 | 2742 | -khtml-border-radius: 4px 4px 4px 4px !important; |
|
2743 | 2743 | -moz-border-radius: 4px 4px 4px 4px !important; |
|
2744 | 2744 | border-radius: 4px 4px 4px 4px !important; |
|
2745 | box-shadow: 0 1px 0 #DADADA !important; | |
|
2746 | 2745 | cursor: pointer !important; |
|
2747 | 2746 | padding: 3px 3px 3px 3px; |
|
2748 | 2747 | |
|
2749 | 2748 | } |
|
2750 | 2749 | .ui-btn.xsmall{ |
|
2751 | 2750 | padding: 1px 2px 1px 1px; |
|
2752 | 2751 | } |
|
2753 | 2752 | |
|
2754 | 2753 | .ui-btn:focus { |
|
2755 | 2754 | outline: none; |
|
2756 | 2755 | } |
|
2757 | 2756 | .ui-btn:hover{ |
|
2758 | 2757 | background-position: 0 -15px; |
|
2759 | 2758 | text-decoration: none; |
|
2760 | 2759 | color: #515151; |
|
2761 | 2760 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 0 3px #FFFFFF !important; |
|
2762 | 2761 | } |
|
2763 | 2762 | |
|
2764 | 2763 | .ui-btn.red{ |
|
2765 | 2764 | color:#fff; |
|
2766 | 2765 | background-color: #c43c35; |
|
2767 | 2766 | background-repeat: repeat-x; |
|
2768 | 2767 | background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35)); |
|
2769 | 2768 | background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); |
|
2770 | 2769 | background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35); |
|
2771 | 2770 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35)); |
|
2772 | 2771 | background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); |
|
2773 | 2772 | background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); |
|
2774 | 2773 | background-image: linear-gradient(top, #ee5f5b, #c43c35); |
|
2775 | 2774 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0); |
|
2776 | 2775 | border-color: #c43c35 #c43c35 #882a25; |
|
2777 | 2776 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
|
2778 | 2777 | } |
|
2779 | 2778 | |
|
2780 | 2779 | |
|
2781 | 2780 | .ui-btn.blue{ |
|
2782 | 2781 | background-color: #339bb9; |
|
2783 | 2782 | background-repeat: repeat-x; |
|
2784 | 2783 | background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9)); |
|
2785 | 2784 | background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); |
|
2786 | 2785 | background-image: -ms-linear-gradient(top, #5bc0de, #339bb9); |
|
2787 | 2786 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9)); |
|
2788 | 2787 | background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); |
|
2789 | 2788 | background-image: -o-linear-gradient(top, #5bc0de, #339bb9); |
|
2790 | 2789 | background-image: linear-gradient(top, #5bc0de, #339bb9); |
|
2791 | 2790 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0); |
|
2792 | 2791 | border-color: #339bb9 #339bb9 #22697d; |
|
2793 | 2792 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
|
2794 | 2793 | } |
|
2795 | 2794 | |
|
2796 | 2795 | .ui-btn.green{ |
|
2797 | 2796 | background-color: #57a957; |
|
2798 | 2797 | background-repeat: repeat-x; |
|
2799 | 2798 | background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957)); |
|
2800 | 2799 | background-image: -moz-linear-gradient(top, #62c462, #57a957); |
|
2801 | 2800 | background-image: -ms-linear-gradient(top, #62c462, #57a957); |
|
2802 | 2801 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957)); |
|
2803 | 2802 | background-image: -webkit-linear-gradient(top, #62c462, #57a957); |
|
2804 | 2803 | background-image: -o-linear-gradient(top, #62c462, #57a957); |
|
2805 | 2804 | background-image: linear-gradient(top, #62c462, #57a957); |
|
2806 | 2805 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0); |
|
2807 | 2806 | border-color: #57a957 #57a957 #3d773d; |
|
2808 | 2807 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
|
2809 | 2808 | } |
|
2810 | 2809 | |
|
2811 | 2810 | ins,div.options a:hover { |
|
2812 | 2811 | text-decoration: none; |
|
2813 | 2812 | } |
|
2814 | 2813 | |
|
2815 | 2814 | img, |
|
2816 | 2815 | #header #header-inner #quick li a:hover span.normal, |
|
2817 | 2816 | #header #header-inner #quick li ul li.last, |
|
2818 | 2817 | #content div.box div.form div.fields div.field div.textarea table td table td a, |
|
2819 | 2818 | #clone_url |
|
2820 | 2819 | { |
|
2821 | 2820 | border: none; |
|
2822 | 2821 | } |
|
2823 | 2822 | |
|
2824 | 2823 | img.icon,.right .merge img { |
|
2825 | 2824 | vertical-align: bottom; |
|
2826 | 2825 | } |
|
2827 | 2826 | |
|
2828 | 2827 | #header ul#logged-user,#content div.box div.title ul.links, |
|
2829 | 2828 | #content div.box div.message div.dismiss, |
|
2830 | 2829 | #content div.box div.traffic div.legend ul |
|
2831 | 2830 | { |
|
2832 | 2831 | float: right; |
|
2833 | 2832 | margin: 0; |
|
2834 | 2833 | padding: 0; |
|
2835 | 2834 | } |
|
2836 | 2835 | |
|
2837 | 2836 | #header #header-inner #home,#header #header-inner #logo, |
|
2838 | 2837 | #content div.box ul.left,#content div.box ol.left, |
|
2839 | 2838 | #content div.box div.pagination-left,div#commit_history, |
|
2840 | 2839 | div#legend_data,div#legend_container,div#legend_choices |
|
2841 | 2840 | { |
|
2842 | 2841 | float: left; |
|
2843 | 2842 | } |
|
2844 | 2843 | |
|
2845 | 2844 | #header #header-inner #quick li:hover ul ul, |
|
2846 | 2845 | #header #header-inner #quick li:hover ul ul ul, |
|
2847 | 2846 | #header #header-inner #quick li:hover ul ul ul ul, |
|
2848 | 2847 | #content #left #menu ul.closed,#content #left #menu li ul.collapsed,.yui-tt-shadow |
|
2849 | 2848 | { |
|
2850 | 2849 | display: none; |
|
2851 | 2850 | } |
|
2852 | 2851 | |
|
2853 | 2852 | #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 |
|
2854 | 2853 | { |
|
2855 | 2854 | display: block; |
|
2856 | 2855 | } |
|
2857 | 2856 | |
|
2858 | 2857 | #content div.graph { |
|
2859 | 2858 | padding: 0 10px 10px; |
|
2860 | 2859 | } |
|
2861 | 2860 | |
|
2862 | 2861 | #content div.box div.title ul.links li a:hover,#content div.box div.title ul.links li.ui-tabs-selected a |
|
2863 | 2862 | { |
|
2864 | 2863 | color: #bfe3ff; |
|
2865 | 2864 | } |
|
2866 | 2865 | |
|
2867 | 2866 | #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 |
|
2868 | 2867 | { |
|
2869 | 2868 | margin: 10px 24px 10px 44px; |
|
2870 | 2869 | } |
|
2871 | 2870 | |
|
2872 | 2871 | #content div.box div.form,#content div.box div.table,#content div.box div.traffic |
|
2873 | 2872 | { |
|
2874 | 2873 | clear: both; |
|
2875 | 2874 | overflow: hidden; |
|
2876 | 2875 | margin: 0; |
|
2877 | 2876 | padding: 0 20px 10px; |
|
2878 | 2877 | } |
|
2879 | 2878 | |
|
2880 | 2879 | #content div.box div.form div.fields,#login div.form,#login div.form div.fields,#register div.form,#register div.form div.fields |
|
2881 | 2880 | { |
|
2882 | 2881 | clear: both; |
|
2883 | 2882 | overflow: hidden; |
|
2884 | 2883 | margin: 0; |
|
2885 | 2884 | padding: 0; |
|
2886 | 2885 | } |
|
2887 | 2886 | |
|
2888 | 2887 | #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 |
|
2889 | 2888 | { |
|
2890 | 2889 | height: 1%; |
|
2891 | 2890 | display: block; |
|
2892 | 2891 | color: #363636; |
|
2893 | 2892 | margin: 0; |
|
2894 | 2893 | padding: 2px 0 0; |
|
2895 | 2894 | } |
|
2896 | 2895 | |
|
2897 | 2896 | #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 |
|
2898 | 2897 | { |
|
2899 | 2898 | background: #FBE3E4; |
|
2900 | 2899 | border-top: 1px solid #e1b2b3; |
|
2901 | 2900 | border-left: 1px solid #e1b2b3; |
|
2902 | 2901 | border-right: 1px solid #FBC2C4; |
|
2903 | 2902 | border-bottom: 1px solid #FBC2C4; |
|
2904 | 2903 | } |
|
2905 | 2904 | |
|
2906 | 2905 | #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 |
|
2907 | 2906 | { |
|
2908 | 2907 | background: #E6EFC2; |
|
2909 | 2908 | border-top: 1px solid #cebb98; |
|
2910 | 2909 | border-left: 1px solid #cebb98; |
|
2911 | 2910 | border-right: 1px solid #c6d880; |
|
2912 | 2911 | border-bottom: 1px solid #c6d880; |
|
2913 | 2912 | } |
|
2914 | 2913 | |
|
2915 | 2914 | #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 |
|
2916 | 2915 | { |
|
2917 | 2916 | margin: 0; |
|
2918 | 2917 | } |
|
2919 | 2918 | |
|
2920 | 2919 | #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 |
|
2921 | 2920 | { |
|
2922 | 2921 | margin: 0 0 0 0px !important; |
|
2923 | 2922 | padding: 0; |
|
2924 | 2923 | } |
|
2925 | 2924 | |
|
2926 | 2925 | #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 |
|
2927 | 2926 | { |
|
2928 | 2927 | margin: 0 0 0 200px; |
|
2929 | 2928 | padding: 0; |
|
2930 | 2929 | } |
|
2931 | 2930 | |
|
2932 | 2931 | #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 |
|
2933 | 2932 | { |
|
2934 | 2933 | color: #000; |
|
2935 | 2934 | text-decoration: none; |
|
2936 | 2935 | } |
|
2937 | 2936 | |
|
2938 | 2937 | #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus,#content div.box div.action a.ui-selectmenu-focus |
|
2939 | 2938 | { |
|
2940 | 2939 | border: 1px solid #666; |
|
2941 | 2940 | } |
|
2942 | 2941 | |
|
2943 | 2942 | #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 |
|
2944 | 2943 | { |
|
2945 | 2944 | clear: both; |
|
2946 | 2945 | overflow: hidden; |
|
2947 | 2946 | margin: 0; |
|
2948 | 2947 | padding: 8px 0 2px; |
|
2949 | 2948 | } |
|
2950 | 2949 | |
|
2951 | 2950 | #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 |
|
2952 | 2951 | { |
|
2953 | 2952 | float: left; |
|
2954 | 2953 | margin: 0; |
|
2955 | 2954 | } |
|
2956 | 2955 | |
|
2957 | 2956 | #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 |
|
2958 | 2957 | { |
|
2959 | 2958 | height: 1%; |
|
2960 | 2959 | display: block; |
|
2961 | 2960 | float: left; |
|
2962 | 2961 | margin: 2px 0 0 4px; |
|
2963 | 2962 | } |
|
2964 | 2963 | |
|
2965 | 2964 | div.form div.fields div.field div.button input,#content div.box div.form div.fields div.buttons input,div.form div.fields div.buttons input,#content div.box div.action div.button input |
|
2966 | 2965 | { |
|
2967 | 2966 | color: #000; |
|
2968 | 2967 | font-size: 11px; |
|
2969 | 2968 | font-weight: 700; |
|
2970 | 2969 | margin: 0; |
|
2971 | 2970 | } |
|
2972 | 2971 | |
|
2973 | 2972 | input.ui-button { |
|
2974 | 2973 | background: #e5e3e3 url("../images/button.png") repeat-x; |
|
2975 | 2974 | border-top: 1px solid #DDD; |
|
2976 | 2975 | border-left: 1px solid #c6c6c6; |
|
2977 | 2976 | border-right: 1px solid #DDD; |
|
2978 | 2977 | border-bottom: 1px solid #c6c6c6; |
|
2979 | 2978 | color: #515151 !important; |
|
2980 | 2979 | outline: none; |
|
2981 | 2980 | margin: 0; |
|
2982 | 2981 | padding: 6px 12px; |
|
2983 | 2982 | -webkit-border-radius: 4px 4px 4px 4px; |
|
2984 | 2983 | -khtml-border-radius: 4px 4px 4px 4px; |
|
2985 | 2984 | -moz-border-radius: 4px 4px 4px 4px; |
|
2986 | 2985 | border-radius: 4px 4px 4px 4px; |
|
2987 | 2986 | box-shadow: 0 1px 0 #ececec; |
|
2988 | 2987 | cursor: pointer; |
|
2989 | 2988 | } |
|
2990 | 2989 | |
|
2991 | 2990 | input.ui-button:hover { |
|
2992 | 2991 | background: #b4b4b4 url("../images/button_selected.png") repeat-x; |
|
2993 | 2992 | border-top: 1px solid #ccc; |
|
2994 | 2993 | border-left: 1px solid #bebebe; |
|
2995 | 2994 | border-right: 1px solid #b1b1b1; |
|
2996 | 2995 | border-bottom: 1px solid #afafaf; |
|
2997 | 2996 | } |
|
2998 | 2997 | |
|
2999 | 2998 | div.form div.fields div.field div.highlight,#content div.box div.form div.fields div.buttons div.highlight |
|
3000 | 2999 | { |
|
3001 | 3000 | display: inline; |
|
3002 | 3001 | } |
|
3003 | 3002 | |
|
3004 | 3003 | #content div.box div.form div.fields div.buttons,div.form div.fields div.buttons |
|
3005 | 3004 | { |
|
3006 | 3005 | margin: 10px 0 0 200px; |
|
3007 | 3006 | padding: 0; |
|
3008 | 3007 | } |
|
3009 | 3008 | |
|
3010 | 3009 | #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 |
|
3011 | 3010 | { |
|
3012 | 3011 | margin: 10px 0 0; |
|
3013 | 3012 | } |
|
3014 | 3013 | |
|
3015 | 3014 | #content div.box table td.user,#content div.box table td.address { |
|
3016 | 3015 | width: 10%; |
|
3017 | 3016 | text-align: center; |
|
3018 | 3017 | } |
|
3019 | 3018 | |
|
3020 | 3019 | #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 |
|
3021 | 3020 | { |
|
3022 | 3021 | text-align: right; |
|
3023 | 3022 | margin: 6px 0 0; |
|
3024 | 3023 | padding: 0; |
|
3025 | 3024 | } |
|
3026 | 3025 | |
|
3027 | 3026 | #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 |
|
3028 | 3027 | { |
|
3029 | 3028 | background: #b4b4b4 url("../images/button_selected.png") repeat-x; |
|
3030 | 3029 | border-top: 1px solid #ccc; |
|
3031 | 3030 | border-left: 1px solid #bebebe; |
|
3032 | 3031 | border-right: 1px solid #b1b1b1; |
|
3033 | 3032 | border-bottom: 1px solid #afafaf; |
|
3034 | 3033 | color: #515151; |
|
3035 | 3034 | margin: 0; |
|
3036 | 3035 | padding: 6px 12px; |
|
3037 | 3036 | } |
|
3038 | 3037 | |
|
3039 | 3038 | #content div.box div.pagination div.results,#content div.box div.pagination-wh div.results |
|
3040 | 3039 | { |
|
3041 | 3040 | text-align: left; |
|
3042 | 3041 | float: left; |
|
3043 | 3042 | margin: 0; |
|
3044 | 3043 | padding: 0; |
|
3045 | 3044 | } |
|
3046 | 3045 | |
|
3047 | 3046 | #content div.box div.pagination div.results span,#content div.box div.pagination-wh div.results span |
|
3048 | 3047 | { |
|
3049 | 3048 | height: 1%; |
|
3050 | 3049 | display: block; |
|
3051 | 3050 | float: left; |
|
3052 | 3051 | background: #ebebeb url("../images/pager.png") repeat-x; |
|
3053 | 3052 | border-top: 1px solid #dedede; |
|
3054 | 3053 | border-left: 1px solid #cfcfcf; |
|
3055 | 3054 | border-right: 1px solid #c4c4c4; |
|
3056 | 3055 | border-bottom: 1px solid #c4c4c4; |
|
3057 | 3056 | color: #4A4A4A; |
|
3058 | 3057 | font-weight: 700; |
|
3059 | 3058 | margin: 0; |
|
3060 | 3059 | padding: 6px 8px; |
|
3061 | 3060 | } |
|
3062 | 3061 | |
|
3063 | 3062 | #content div.box div.pagination ul.pager li.disabled,#content div.box div.pagination-wh a.disabled |
|
3064 | 3063 | { |
|
3065 | 3064 | color: #B4B4B4; |
|
3066 | 3065 | padding: 6px; |
|
3067 | 3066 | } |
|
3068 | 3067 | |
|
3069 | 3068 | #login,#register { |
|
3070 | 3069 | width: 520px; |
|
3071 | 3070 | margin: 10% auto 0; |
|
3072 | 3071 | padding: 0; |
|
3073 | 3072 | } |
|
3074 | 3073 | |
|
3075 | 3074 | #login div.color,#register div.color { |
|
3076 | 3075 | clear: both; |
|
3077 | 3076 | overflow: hidden; |
|
3078 | 3077 | background: #FFF; |
|
3079 | 3078 | margin: 10px auto 0; |
|
3080 | 3079 | padding: 3px 3px 3px 0; |
|
3081 | 3080 | } |
|
3082 | 3081 | |
|
3083 | 3082 | #login div.color a,#register div.color a { |
|
3084 | 3083 | width: 20px; |
|
3085 | 3084 | height: 20px; |
|
3086 | 3085 | display: block; |
|
3087 | 3086 | float: left; |
|
3088 | 3087 | margin: 0 0 0 3px; |
|
3089 | 3088 | padding: 0; |
|
3090 | 3089 | } |
|
3091 | 3090 | |
|
3092 | 3091 | #login div.title h5,#register div.title h5 { |
|
3093 | 3092 | color: #fff; |
|
3094 | 3093 | margin: 10px; |
|
3095 | 3094 | padding: 0; |
|
3096 | 3095 | } |
|
3097 | 3096 | |
|
3098 | 3097 | #login div.form div.fields div.field,#register div.form div.fields div.field |
|
3099 | 3098 | { |
|
3100 | 3099 | clear: both; |
|
3101 | 3100 | overflow: hidden; |
|
3102 | 3101 | margin: 0; |
|
3103 | 3102 | padding: 0 0 10px; |
|
3104 | 3103 | } |
|
3105 | 3104 | |
|
3106 | 3105 | #login div.form div.fields div.field span.error-message,#register div.form div.fields div.field span.error-message |
|
3107 | 3106 | { |
|
3108 | 3107 | height: 1%; |
|
3109 | 3108 | display: block; |
|
3110 | 3109 | color: red; |
|
3111 | 3110 | margin: 8px 0 0; |
|
3112 | 3111 | padding: 0; |
|
3113 | 3112 | max-width: 320px; |
|
3114 | 3113 | } |
|
3115 | 3114 | |
|
3116 | 3115 | #login div.form div.fields div.field div.label label,#register div.form div.fields div.field div.label label |
|
3117 | 3116 | { |
|
3118 | 3117 | color: #000; |
|
3119 | 3118 | font-weight: 700; |
|
3120 | 3119 | } |
|
3121 | 3120 | |
|
3122 | 3121 | #login div.form div.fields div.field div.input,#register div.form div.fields div.field div.input |
|
3123 | 3122 | { |
|
3124 | 3123 | float: left; |
|
3125 | 3124 | margin: 0; |
|
3126 | 3125 | padding: 0; |
|
3127 | 3126 | } |
|
3128 | 3127 | |
|
3129 | 3128 | #login div.form div.fields div.field div.checkbox,#register div.form div.fields div.field div.checkbox |
|
3130 | 3129 | { |
|
3131 | 3130 | margin: 0 0 0 184px; |
|
3132 | 3131 | padding: 0; |
|
3133 | 3132 | } |
|
3134 | 3133 | |
|
3135 | 3134 | #login div.form div.fields div.field div.checkbox label,#register div.form div.fields div.field div.checkbox label |
|
3136 | 3135 | { |
|
3137 | 3136 | color: #565656; |
|
3138 | 3137 | font-weight: 700; |
|
3139 | 3138 | } |
|
3140 | 3139 | |
|
3141 | 3140 | #login div.form div.fields div.buttons input,#register div.form div.fields div.buttons input |
|
3142 | 3141 | { |
|
3143 | 3142 | color: #000; |
|
3144 | 3143 | font-size: 1em; |
|
3145 | 3144 | font-weight: 700; |
|
3146 | 3145 | margin: 0; |
|
3147 | 3146 | } |
|
3148 | 3147 | |
|
3149 | 3148 | #changeset_content .container .wrapper,#graph_content .container .wrapper |
|
3150 | 3149 | { |
|
3151 | 3150 | width: 600px; |
|
3152 | 3151 | } |
|
3153 | 3152 | |
|
3154 | 3153 | #changeset_content .container .left,#graph_content .container .left { |
|
3155 | 3154 | float: left; |
|
3156 | 3155 | width: 70%; |
|
3157 | 3156 | padding-left: 5px; |
|
3158 | 3157 | } |
|
3159 | 3158 | |
|
3160 | 3159 | #changeset_content .container .left .date,.ac .match { |
|
3161 | 3160 | font-weight: 700; |
|
3162 | 3161 | padding-top: 5px; |
|
3163 | 3162 | padding-bottom: 5px; |
|
3164 | 3163 | } |
|
3165 | 3164 | |
|
3166 | 3165 | div#legend_container table td,div#legend_choices table td { |
|
3167 | 3166 | border: none !important; |
|
3168 | 3167 | height: 20px !important; |
|
3169 | 3168 | padding: 0 !important; |
|
3170 | 3169 | } |
|
3171 | 3170 | |
|
3172 | 3171 | .q_filter_box { |
|
3173 | 3172 | -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset; |
|
3174 | 3173 | -webkit-border-radius: 4px; |
|
3175 | 3174 | -moz-border-radius: 4px; |
|
3176 | 3175 | border-radius: 4px; |
|
3177 | 3176 | border: 0 none; |
|
3178 | 3177 | color: #AAAAAA; |
|
3179 | 3178 | margin-bottom: -4px; |
|
3180 | 3179 | margin-top: -4px; |
|
3181 | 3180 | padding-left: 3px; |
|
3182 | 3181 | } |
|
3183 | 3182 | |
|
3184 | 3183 | #node_filter { |
|
3185 | 3184 | border: 0px solid #545454; |
|
3186 | 3185 | color: #AAAAAA; |
|
3187 | 3186 | padding-left: 3px; |
|
3188 | 3187 | } |
|
3189 | 3188 | |
|
3190 | 3189 | /*README STYLE*/ |
|
3191 | 3190 | |
|
3192 | 3191 | div.readme { |
|
3193 | 3192 | padding:0px; |
|
3194 | 3193 | } |
|
3195 | 3194 | |
|
3196 | 3195 | div.readme h2 { |
|
3197 | 3196 | font-weight: normal; |
|
3198 | 3197 | } |
|
3199 | 3198 | |
|
3200 | 3199 | div.readme .readme_box { |
|
3201 | 3200 | background-color: #fafafa; |
|
3202 | 3201 | } |
|
3203 | 3202 | |
|
3204 | 3203 | div.readme .readme_box { |
|
3205 | 3204 | clear:both; |
|
3206 | 3205 | overflow:hidden; |
|
3207 | 3206 | margin:0; |
|
3208 | 3207 | padding:0 20px 10px; |
|
3209 | 3208 | } |
|
3210 | 3209 | |
|
3211 | 3210 | 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 { |
|
3212 | 3211 | border-bottom: 0 !important; |
|
3213 | 3212 | margin: 0 !important; |
|
3214 | 3213 | padding: 0 !important; |
|
3215 | 3214 | line-height: 1.5em !important; |
|
3216 | 3215 | } |
|
3217 | 3216 | |
|
3218 | 3217 | |
|
3219 | 3218 | div.readme .readme_box h1:first-child { |
|
3220 | 3219 | padding-top: .25em !important; |
|
3221 | 3220 | } |
|
3222 | 3221 | |
|
3223 | 3222 | div.readme .readme_box h2, div.readme .readme_box h3 { |
|
3224 | 3223 | margin: 1em 0 !important; |
|
3225 | 3224 | } |
|
3226 | 3225 | |
|
3227 | 3226 | div.readme .readme_box h2 { |
|
3228 | 3227 | margin-top: 1.5em !important; |
|
3229 | 3228 | border-top: 4px solid #e0e0e0 !important; |
|
3230 | 3229 | padding-top: .5em !important; |
|
3231 | 3230 | } |
|
3232 | 3231 | |
|
3233 | 3232 | div.readme .readme_box p { |
|
3234 | 3233 | color: black !important; |
|
3235 | 3234 | margin: 1em 0 !important; |
|
3236 | 3235 | line-height: 1.5em !important; |
|
3237 | 3236 | } |
|
3238 | 3237 | |
|
3239 | 3238 | div.readme .readme_box ul { |
|
3240 | 3239 | list-style: disc !important; |
|
3241 | 3240 | margin: 1em 0 1em 2em !important; |
|
3242 | 3241 | } |
|
3243 | 3242 | |
|
3244 | 3243 | div.readme .readme_box ol { |
|
3245 | 3244 | list-style: decimal; |
|
3246 | 3245 | margin: 1em 0 1em 2em !important; |
|
3247 | 3246 | } |
|
3248 | 3247 | |
|
3249 | 3248 | div.readme .readme_box pre, code { |
|
3250 | 3249 | font: 12px "Bitstream Vera Sans Mono","Courier",monospace; |
|
3251 | 3250 | } |
|
3252 | 3251 | |
|
3253 | 3252 | div.readme .readme_box code { |
|
3254 | 3253 | font-size: 12px !important; |
|
3255 | 3254 | background-color: ghostWhite !important; |
|
3256 | 3255 | color: #444 !important; |
|
3257 | 3256 | padding: 0 .2em !important; |
|
3258 | 3257 | border: 1px solid #dedede !important; |
|
3259 | 3258 | } |
|
3260 | 3259 | |
|
3261 | 3260 | div.readme .readme_box pre code { |
|
3262 | 3261 | padding: 0 !important; |
|
3263 | 3262 | font-size: 12px !important; |
|
3264 | 3263 | background-color: #eee !important; |
|
3265 | 3264 | border: none !important; |
|
3266 | 3265 | } |
|
3267 | 3266 | |
|
3268 | 3267 | div.readme .readme_box pre { |
|
3269 | 3268 | margin: 1em 0; |
|
3270 | 3269 | font-size: 12px; |
|
3271 | 3270 | background-color: #eee; |
|
3272 | 3271 | border: 1px solid #ddd; |
|
3273 | 3272 | padding: 5px; |
|
3274 | 3273 | color: #444; |
|
3275 | 3274 | overflow: auto; |
|
3276 | 3275 | -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset; |
|
3277 | 3276 | -webkit-border-radius: 3px; |
|
3278 | 3277 | -moz-border-radius: 3px; |
|
3279 | 3278 | border-radius: 3px; |
|
3280 | 3279 | } |
|
3281 | 3280 | |
|
3282 | 3281 | |
|
3283 | 3282 | /** RST STYLE **/ |
|
3284 | 3283 | |
|
3285 | 3284 | |
|
3286 | 3285 | div.rst-block { |
|
3287 | 3286 | padding:0px; |
|
3288 | 3287 | } |
|
3289 | 3288 | |
|
3290 | 3289 | div.rst-block h2 { |
|
3291 | 3290 | font-weight: normal; |
|
3292 | 3291 | } |
|
3293 | 3292 | |
|
3294 | 3293 | div.rst-block { |
|
3295 | 3294 | background-color: #fafafa; |
|
3296 | 3295 | } |
|
3297 | 3296 | |
|
3298 | 3297 | div.rst-block { |
|
3299 | 3298 | clear:both; |
|
3300 | 3299 | overflow:hidden; |
|
3301 | 3300 | margin:0; |
|
3302 | 3301 | padding:0 20px 10px; |
|
3303 | 3302 | } |
|
3304 | 3303 | |
|
3305 | 3304 | div.rst-block h1, div.rst-block h2, div.rst-block h3, div.rst-block h4, div.rst-block h5, div.rst-block h6 { |
|
3306 | 3305 | border-bottom: 0 !important; |
|
3307 | 3306 | margin: 0 !important; |
|
3308 | 3307 | padding: 0 !important; |
|
3309 | 3308 | line-height: 1.5em !important; |
|
3310 | 3309 | } |
|
3311 | 3310 | |
|
3312 | 3311 | |
|
3313 | 3312 | div.rst-block h1:first-child { |
|
3314 | 3313 | padding-top: .25em !important; |
|
3315 | 3314 | } |
|
3316 | 3315 | |
|
3317 | 3316 | div.rst-block h2, div.rst-block h3 { |
|
3318 | 3317 | margin: 1em 0 !important; |
|
3319 | 3318 | } |
|
3320 | 3319 | |
|
3321 | 3320 | div.rst-block h2 { |
|
3322 | 3321 | margin-top: 1.5em !important; |
|
3323 | 3322 | border-top: 4px solid #e0e0e0 !important; |
|
3324 | 3323 | padding-top: .5em !important; |
|
3325 | 3324 | } |
|
3326 | 3325 | |
|
3327 | 3326 | div.rst-block p { |
|
3328 | 3327 | color: black !important; |
|
3329 | 3328 | margin: 1em 0 !important; |
|
3330 | 3329 | line-height: 1.5em !important; |
|
3331 | 3330 | } |
|
3332 | 3331 | |
|
3333 | 3332 | div.rst-block ul { |
|
3334 | 3333 | list-style: disc !important; |
|
3335 | 3334 | margin: 1em 0 1em 2em !important; |
|
3336 | 3335 | } |
|
3337 | 3336 | |
|
3338 | 3337 | div.rst-block ol { |
|
3339 | 3338 | list-style: decimal; |
|
3340 | 3339 | margin: 1em 0 1em 2em !important; |
|
3341 | 3340 | } |
|
3342 | 3341 | |
|
3343 | 3342 | div.rst-block pre, code { |
|
3344 | 3343 | font: 12px "Bitstream Vera Sans Mono","Courier",monospace; |
|
3345 | 3344 | } |
|
3346 | 3345 | |
|
3347 | 3346 | div.rst-block code { |
|
3348 | 3347 | font-size: 12px !important; |
|
3349 | 3348 | background-color: ghostWhite !important; |
|
3350 | 3349 | color: #444 !important; |
|
3351 | 3350 | padding: 0 .2em !important; |
|
3352 | 3351 | border: 1px solid #dedede !important; |
|
3353 | 3352 | } |
|
3354 | 3353 | |
|
3355 | 3354 | div.rst-block pre code { |
|
3356 | 3355 | padding: 0 !important; |
|
3357 | 3356 | font-size: 12px !important; |
|
3358 | 3357 | background-color: #eee !important; |
|
3359 | 3358 | border: none !important; |
|
3360 | 3359 | } |
|
3361 | 3360 | |
|
3362 | 3361 | div.rst-block pre { |
|
3363 | 3362 | margin: 1em 0; |
|
3364 | 3363 | font-size: 12px; |
|
3365 | 3364 | background-color: #eee; |
|
3366 | 3365 | border: 1px solid #ddd; |
|
3367 | 3366 | padding: 5px; |
|
3368 | 3367 | color: #444; |
|
3369 | 3368 | overflow: auto; |
|
3370 | 3369 | -webkit-box-shadow: rgba(0,0,0,0.07) 0 1px 2px inset; |
|
3371 | 3370 | -webkit-border-radius: 3px; |
|
3372 | 3371 | -moz-border-radius: 3px; |
|
3373 | 3372 | border-radius: 3px; |
|
3374 | 3373 | } |
|
3375 | 3374 | |
|
3376 | 3375 | |
|
3377 | 3376 | /** comment main **/ |
|
3378 | 3377 | .comments { |
|
3379 | 3378 | padding:10px 20px; |
|
3380 | 3379 | } |
|
3381 | 3380 | |
|
3382 | 3381 | .comments .comment { |
|
3383 | 3382 | border: 1px solid #ddd; |
|
3384 | 3383 | margin-top: 10px; |
|
3385 | 3384 | -webkit-border-radius: 4px; |
|
3386 | 3385 | -moz-border-radius: 4px; |
|
3387 | 3386 | border-radius: 4px; |
|
3388 | 3387 | } |
|
3389 | 3388 | |
|
3390 | 3389 | .comments .comment .meta { |
|
3391 | 3390 | background: #f8f8f8; |
|
3392 | 3391 | padding: 6px; |
|
3393 | 3392 | border-bottom: 1px solid #ddd; |
|
3394 | 3393 | } |
|
3395 | 3394 | |
|
3396 | 3395 | .comments .comment .meta img { |
|
3397 | 3396 | vertical-align: middle; |
|
3398 | 3397 | } |
|
3399 | 3398 | |
|
3400 | 3399 | .comments .comment .meta .user { |
|
3401 | 3400 | font-weight: bold; |
|
3402 | 3401 | } |
|
3403 | 3402 | |
|
3404 | 3403 | .comments .comment .meta .date { |
|
3405 | 3404 | float: right; |
|
3406 | 3405 | } |
|
3407 | 3406 | |
|
3408 | 3407 | .comments .comment .text { |
|
3409 | 3408 | padding: 8px 6px 6px 14px; |
|
3410 | 3409 | background-color: #FAFAFA; |
|
3411 | 3410 | } |
|
3412 | 3411 | |
|
3413 | 3412 | .comments .comments-number{ |
|
3414 | 3413 | padding:0px 0px 10px 0px; |
|
3415 | 3414 | font-weight: bold; |
|
3416 | 3415 | color: #666; |
|
3417 | 3416 | font-size: 16px; |
|
3418 | 3417 | } |
|
3419 | 3418 | |
|
3420 | 3419 | /** comment form **/ |
|
3421 | 3420 | |
|
3422 | 3421 | .comment-form .clearfix{ |
|
3423 | 3422 | background: #EEE; |
|
3424 | 3423 | -webkit-border-radius: 4px; |
|
3425 | 3424 | -moz-border-radius: 4px; |
|
3426 | 3425 | border-radius: 4px; |
|
3427 | 3426 | padding: 10px; |
|
3428 | 3427 | } |
|
3429 | 3428 | |
|
3430 | 3429 | div.comment-form { |
|
3431 | 3430 | margin-top: 20px; |
|
3432 | 3431 | } |
|
3433 | 3432 | |
|
3434 | 3433 | .comment-form strong { |
|
3435 | 3434 | display: block; |
|
3436 | 3435 | margin-bottom: 15px; |
|
3437 | 3436 | } |
|
3438 | 3437 | |
|
3439 | 3438 | .comment-form textarea { |
|
3440 | 3439 | width: 100%; |
|
3441 | 3440 | height: 100px; |
|
3442 | 3441 | font-family: 'Monaco', 'Courier', 'Courier New', monospace; |
|
3443 | 3442 | } |
|
3444 | 3443 | |
|
3445 | 3444 | form.comment-form { |
|
3446 | 3445 | margin-top: 10px; |
|
3447 | 3446 | margin-left: 10px; |
|
3448 | 3447 | } |
|
3449 | 3448 | |
|
3450 | 3449 | .comment-form-submit { |
|
3451 | 3450 | margin-top: 5px; |
|
3452 | 3451 | margin-left: 525px; |
|
3453 | 3452 | } |
|
3454 | 3453 | |
|
3455 | 3454 | .file-comments { |
|
3456 | 3455 | display: none; |
|
3457 | 3456 | } |
|
3458 | 3457 | |
|
3459 | 3458 | .comment-form .comment { |
|
3460 | 3459 | margin-left: 10px; |
|
3461 | 3460 | } |
|
3462 | 3461 | |
|
3463 | 3462 | .comment-form .comment-help{ |
|
3464 | 3463 | padding: 0px 0px 5px 0px; |
|
3465 | 3464 | color: #666; |
|
3466 | 3465 | } |
|
3467 | 3466 | |
|
3468 | 3467 | .comment-form .comment-button{ |
|
3469 | 3468 | padding-top:5px; |
|
3470 | 3469 | } |
|
3471 | 3470 | |
|
3472 | 3471 | .add-another-button { |
|
3473 | 3472 | margin-left: 10px; |
|
3474 | 3473 | margin-top: 10px; |
|
3475 | 3474 | margin-bottom: 10px; |
|
3476 | 3475 | } |
|
3477 | 3476 | |
|
3478 | 3477 | .comment .buttons { |
|
3479 | 3478 | position: absolute; |
|
3480 | 3479 | right:40px; |
|
3481 | 3480 | } |
|
3482 | 3481 | |
|
3483 | 3482 | |
|
3484 | 3483 | .show-inline-comments{ |
|
3485 | 3484 | position: relative; |
|
3486 | 3485 | top:1px |
|
3487 | 3486 | } |
|
3488 | 3487 | |
|
3489 | 3488 | /** comment inline form **/ |
|
3490 | 3489 | |
|
3491 | 3490 | .comment-inline-form .clearfix{ |
|
3492 | 3491 | background: #EEE; |
|
3493 | 3492 | -webkit-border-radius: 4px; |
|
3494 | 3493 | -moz-border-radius: 4px; |
|
3495 | 3494 | border-radius: 4px; |
|
3496 | 3495 | padding: 5px; |
|
3497 | 3496 | } |
|
3498 | 3497 | |
|
3499 | 3498 | div.comment-inline-form { |
|
3500 | 3499 | margin-top: 5px; |
|
3501 | 3500 | padding:2px 6px 8px 6px; |
|
3502 | 3501 | } |
|
3503 | 3502 | |
|
3504 | 3503 | .comment-inline-form strong { |
|
3505 | 3504 | display: block; |
|
3506 | 3505 | margin-bottom: 15px; |
|
3507 | 3506 | } |
|
3508 | 3507 | |
|
3509 | 3508 | .comment-inline-form textarea { |
|
3510 | 3509 | width: 100%; |
|
3511 | 3510 | height: 100px; |
|
3512 | 3511 | font-family: 'Monaco', 'Courier', 'Courier New', monospace; |
|
3513 | 3512 | } |
|
3514 | 3513 | |
|
3515 | 3514 | form.comment-inline-form { |
|
3516 | 3515 | margin-top: 10px; |
|
3517 | 3516 | margin-left: 10px; |
|
3518 | 3517 | } |
|
3519 | 3518 | |
|
3520 | 3519 | .comment-inline-form-submit { |
|
3521 | 3520 | margin-top: 5px; |
|
3522 | 3521 | margin-left: 525px; |
|
3523 | 3522 | } |
|
3524 | 3523 | |
|
3525 | 3524 | .file-comments { |
|
3526 | 3525 | display: none; |
|
3527 | 3526 | } |
|
3528 | 3527 | |
|
3529 | 3528 | .comment-inline-form .comment { |
|
3530 | 3529 | margin-left: 10px; |
|
3531 | 3530 | } |
|
3532 | 3531 | |
|
3533 | 3532 | .comment-inline-form .comment-help{ |
|
3534 | 3533 | padding: 0px 0px 2px 0px; |
|
3535 | 3534 | color: #666666; |
|
3536 | 3535 | font-size: 10px; |
|
3537 | 3536 | } |
|
3538 | 3537 | |
|
3539 | 3538 | .comment-inline-form .comment-button{ |
|
3540 | 3539 | padding-top:5px; |
|
3541 | 3540 | } |
|
3542 | 3541 | |
|
3543 | 3542 | /** comment inline **/ |
|
3544 | 3543 | .inline-comments { |
|
3545 | 3544 | padding:10px 20px; |
|
3546 | 3545 | } |
|
3547 | 3546 | |
|
3548 | 3547 | .inline-comments div.rst-block { |
|
3549 | 3548 | clear:both; |
|
3550 | 3549 | overflow:hidden; |
|
3551 | 3550 | margin:0; |
|
3552 | 3551 | padding:0 20px 0px; |
|
3553 | 3552 | } |
|
3554 | 3553 | .inline-comments .comment { |
|
3555 | 3554 | border: 1px solid #ddd; |
|
3556 | 3555 | -webkit-border-radius: 4px; |
|
3557 | 3556 | -moz-border-radius: 4px; |
|
3558 | 3557 | border-radius: 4px; |
|
3559 | 3558 | margin: 3px 3px 5px 5px; |
|
3560 | } | |
|
3561 | ||
|
3559 | background-color: #FAFAFA; | |
|
3560 | } | |
|
3561 | .inline-comments .comment-wrapp{ | |
|
3562 | padding:1px; | |
|
3563 | } | |
|
3562 | 3564 | .inline-comments .comment .meta { |
|
3563 | 3565 | background: #f8f8f8; |
|
3564 | 3566 | padding: 6px; |
|
3565 | 3567 | border-bottom: 1px solid #ddd; |
|
3566 | 3568 | } |
|
3567 | 3569 | |
|
3568 | 3570 | .inline-comments .comment .meta img { |
|
3569 | 3571 | vertical-align: middle; |
|
3570 | 3572 | } |
|
3571 | 3573 | |
|
3572 | 3574 | .inline-comments .comment .meta .user { |
|
3573 | 3575 | font-weight: bold; |
|
3574 | 3576 | } |
|
3575 | 3577 | |
|
3576 | 3578 | .inline-comments .comment .meta .date { |
|
3577 | 3579 | float: right; |
|
3578 | 3580 | } |
|
3579 | 3581 | |
|
3580 | 3582 | .inline-comments .comment .text { |
|
3581 | 3583 | padding: 8px 6px 6px 14px; |
|
3582 | 3584 | background-color: #FAFAFA; |
|
3583 | 3585 | } |
|
3584 | 3586 | |
|
3585 | 3587 | .inline-comments .comments-number{ |
|
3586 | 3588 | padding:0px 0px 10px 0px; |
|
3587 | 3589 | font-weight: bold; |
|
3588 | 3590 | color: #666; |
|
3589 | 3591 | font-size: 16px; |
|
3590 | 3592 | } |
|
3591 | 3593 | .inline-comments-button .add-comment{ |
|
3592 | 3594 | margin:10px 5px !important; |
|
3593 | 3595 | } |
|
3594 | 3596 | .notifications{ |
|
3595 | 3597 | width:22px; |
|
3596 | 3598 | padding:2px; |
|
3597 | 3599 | float:right; |
|
3598 | 3600 | -webkit-border-radius: 4px; |
|
3599 | 3601 | -moz-border-radius: 4px; |
|
3600 | 3602 | border-radius: 4px; |
|
3601 | 3603 | text-align: center; |
|
3602 | 3604 | margin: 0px -10px 0px 5px; |
|
3603 | 3605 | background-color: #DEDEDE; |
|
3604 | 3606 | } |
|
3605 | 3607 | .notifications a{ |
|
3606 | 3608 | color:#888 !important; |
|
3607 | 3609 | display: block; |
|
3608 | 3610 | font-size: 10px |
|
3609 | 3611 | } |
|
3610 | 3612 | .notifications a:hover{ |
|
3611 | 3613 | text-decoration: none !important; |
|
3612 | 3614 | } |
|
3613 | 3615 | .notification-header{ |
|
3614 | 3616 | |
|
3615 | 3617 | } |
|
3616 | 3618 | .notification-header .desc{ |
|
3617 | 3619 | font-size: 16px; |
|
3618 | 3620 | height: 24px; |
|
3619 | 3621 | padding-top: 6px; |
|
3620 | 3622 | float: left |
|
3621 | 3623 | } |
|
3622 | 3624 | .notification-list .container.unread{ |
|
3623 | 3625 | |
|
3624 | 3626 | } |
|
3625 | 3627 | .notification-header .desc.unread{ |
|
3626 | 3628 | font-weight: bold; |
|
3627 | 3629 | font-size: 17px; |
|
3628 | 3630 | } |
|
3629 | 3631 | |
|
3630 | 3632 | .notification-header .delete-notifications{ |
|
3631 | 3633 | float: right; |
|
3632 | 3634 | padding-top: 8px; |
|
3633 | 3635 | cursor: pointer; |
|
3634 | 3636 | } |
|
3635 | 3637 | .notification-subject{ |
|
3636 | 3638 | clear:both; |
|
3637 | 3639 | border-bottom: 1px solid #eee; |
|
3638 | 3640 | padding:5px 0px 5px 38px; |
|
3641 | } | |
|
3642 | ||
|
3643 | ||
|
3644 | /***************************************************************************** | |
|
3645 | DIFFS CSS | |
|
3646 | ******************************************************************************/ | |
|
3647 | ||
|
3648 | div.diffblock { | |
|
3649 | overflow: auto; | |
|
3650 | padding: 0px; | |
|
3651 | border: 1px solid #ccc; | |
|
3652 | background: #f8f8f8; | |
|
3653 | font-size: 100%; | |
|
3654 | line-height: 100%; | |
|
3655 | /* new */ | |
|
3656 | line-height: 125%; | |
|
3657 | -webkit-border-radius: 6px 6px 0px 0px; | |
|
3658 | -moz-border-radius: 6px 6px 0px 0px; | |
|
3659 | border-radius: 6px 6px 0px 0px; | |
|
3660 | } | |
|
3661 | div.diffblock.margined{ | |
|
3662 | margin: 0px 20px 0px 20px; | |
|
3663 | } | |
|
3664 | div.diffblock .code-header{ | |
|
3665 | border-bottom: 1px solid #CCCCCC; | |
|
3666 | background: #EEEEEE; | |
|
3667 | padding:10px 0 10px 0; | |
|
3668 | } | |
|
3669 | div.diffblock .code-header div{ | |
|
3670 | margin-left:10px; | |
|
3671 | font-weight: bold; | |
|
3672 | font-size: 14px; | |
|
3673 | } | |
|
3674 | div.diffblock .code-body{ | |
|
3675 | background: #FFFFFF; | |
|
3676 | } | |
|
3677 | div.diffblock pre.raw{ | |
|
3678 | background: #FFFFFF; | |
|
3679 | color:#000000; | |
|
3680 | } | |
|
3681 | table.code-difftable{ | |
|
3682 | border-collapse: collapse; | |
|
3683 | width: 99%; | |
|
3684 | } | |
|
3685 | table.code-difftable td { | |
|
3686 | padding: 0 !important; | |
|
3687 | background: none !important; | |
|
3688 | border:0 !important; | |
|
3689 | vertical-align: none !important; | |
|
3690 | } | |
|
3691 | table.code-difftable .context{ | |
|
3692 | background:none repeat scroll 0 0 #DDE7EF; | |
|
3693 | } | |
|
3694 | table.code-difftable .add{ | |
|
3695 | background:none repeat scroll 0 0 #DDFFDD; | |
|
3696 | } | |
|
3697 | table.code-difftable .add ins{ | |
|
3698 | background:none repeat scroll 0 0 #AAFFAA; | |
|
3699 | text-decoration:none; | |
|
3700 | } | |
|
3701 | table.code-difftable .del{ | |
|
3702 | background:none repeat scroll 0 0 #FFDDDD; | |
|
3703 | } | |
|
3704 | table.code-difftable .del del{ | |
|
3705 | background:none repeat scroll 0 0 #FFAAAA; | |
|
3706 | text-decoration:none; | |
|
3707 | } | |
|
3708 | ||
|
3709 | /** LINE NUMBERS **/ | |
|
3710 | table.code-difftable .lineno{ | |
|
3711 | background:none repeat scroll 0 0 #EEEEEE !important; | |
|
3712 | padding-left:2px; | |
|
3713 | padding-right:2px; | |
|
3714 | text-align:right; | |
|
3715 | width:30px; | |
|
3716 | -moz-user-select:none; | |
|
3717 | -webkit-user-select: none; | |
|
3718 | border-right: 1px solid #CCC !important; | |
|
3719 | border-left: 0px solid #CCC !important; | |
|
3720 | border-top: 0px solid #CCC !important; | |
|
3721 | border-bottom: none !important; | |
|
3722 | vertical-align: middle !important; | |
|
3723 | ||
|
3724 | } | |
|
3725 | table.code-difftable .lineno.new { | |
|
3726 | } | |
|
3727 | table.code-difftable .lineno.old { | |
|
3728 | } | |
|
3729 | table.code-difftable .lineno a{ | |
|
3730 | color:#747474 !important; | |
|
3731 | font:11px "Bitstream Vera Sans Mono",Monaco,"Courier New",Courier,monospace !important; | |
|
3732 | letter-spacing:-1px; | |
|
3733 | text-align:right; | |
|
3734 | float:right; | |
|
3735 | width:20px; | |
|
3736 | padding-right: 2px; | |
|
3737 | cursor: pointer; | |
|
3738 | } | |
|
3739 | ||
|
3740 | table.code-difftable .lineno-inline{ | |
|
3741 | background:none repeat scroll 0 0 #FFF !important; | |
|
3742 | padding-left:2px; | |
|
3743 | padding-right:2px; | |
|
3744 | text-align:right; | |
|
3745 | width:30px; | |
|
3746 | -moz-user-select:none; | |
|
3747 | -webkit-user-select: none; | |
|
3748 | } | |
|
3749 | ||
|
3750 | /** CODE **/ | |
|
3751 | table.code-difftable .code { | |
|
3752 | display: block; | |
|
3753 | width: 100%; | |
|
3754 | } | |
|
3755 | table.code-difftable .code td{ | |
|
3756 | margin:0; | |
|
3757 | padding:0; | |
|
3758 | } | |
|
3759 | table.code-difftable .code pre{ | |
|
3760 | margin:0; | |
|
3761 | padding:0; | |
|
3762 | height: 17px; | |
|
3763 | line-height: 17px; | |
|
3764 | } | |
|
3765 | ||
|
3766 | ||
|
3767 | .diffblock.margined.comm .line .code:hover{ | |
|
3768 | background-color:#FFFFCC !important; | |
|
3769 | cursor: pointer !important; | |
|
3770 | background-image:url("../images/icons/comment_add.png") !important; | |
|
3771 | background-repeat:no-repeat !important; | |
|
3772 | background-position: right !important; | |
|
3773 | background-position: 0% 50% !important; | |
|
3639 | 3774 | } No newline at end of file |
@@ -1,598 +1,599 b'' | |||
|
1 | 1 | /** |
|
2 | 2 | RhodeCode JS Files |
|
3 | 3 | **/ |
|
4 | 4 | |
|
5 | 5 | if (typeof console == "undefined" || typeof console.log == "undefined"){ |
|
6 | 6 | console = { log: function() {} } |
|
7 | 7 | } |
|
8 | 8 | |
|
9 | 9 | |
|
10 | 10 | var str_repeat = function(i, m) { |
|
11 | 11 | for (var o = []; m > 0; o[--m] = i); |
|
12 | 12 | return o.join(''); |
|
13 | 13 | }; |
|
14 | 14 | |
|
15 | 15 | /** |
|
16 | 16 | * INJECT .format function into String |
|
17 | 17 | * Usage: "My name is {0} {1}".format("Johny","Bravo") |
|
18 | 18 | * Return "My name is Johny Bravo" |
|
19 | 19 | * Inspired by https://gist.github.com/1049426 |
|
20 | 20 | */ |
|
21 | 21 | String.prototype.format = function() { |
|
22 | 22 | |
|
23 | 23 | function format() { |
|
24 | 24 | var str = this; |
|
25 | 25 | var len = arguments.length+1; |
|
26 | 26 | var safe = undefined; |
|
27 | 27 | var arg = undefined; |
|
28 | 28 | |
|
29 | 29 | // For each {0} {1} {n...} replace with the argument in that position. If |
|
30 | 30 | // the argument is an object or an array it will be stringified to JSON. |
|
31 | 31 | for (var i=0; i < len; arg = arguments[i++]) { |
|
32 | 32 | safe = typeof arg === 'object' ? JSON.stringify(arg) : arg; |
|
33 | 33 | str = str.replace(RegExp('\\{'+(i-1)+'\\}', 'g'), safe); |
|
34 | 34 | } |
|
35 | 35 | return str; |
|
36 | 36 | } |
|
37 | 37 | |
|
38 | 38 | // Save a reference of what may already exist under the property native. |
|
39 | 39 | // Allows for doing something like: if("".format.native) { /* use native */ } |
|
40 | 40 | format.native = String.prototype.format; |
|
41 | 41 | |
|
42 | 42 | // Replace the prototype property |
|
43 | 43 | return format; |
|
44 | 44 | |
|
45 | 45 | }(); |
|
46 | 46 | |
|
47 | 47 | |
|
48 | 48 | /** |
|
49 | 49 | * SmartColorGenerator |
|
50 | 50 | * |
|
51 | 51 | *usage:: |
|
52 | 52 | * var CG = new ColorGenerator(); |
|
53 | 53 | * var col = CG.getColor(key); //returns array of RGB |
|
54 | 54 | * 'rgb({0})'.format(col.join(',') |
|
55 | 55 | * |
|
56 | 56 | * @returns {ColorGenerator} |
|
57 | 57 | */ |
|
58 | 58 | var ColorGenerator = function(){ |
|
59 | 59 | this.GOLDEN_RATIO = 0.618033988749895; |
|
60 | 60 | this.CURRENT_RATIO = 0.22717784590367374 // this can be random |
|
61 | 61 | this.HSV_1 = 0.75;//saturation |
|
62 | 62 | this.HSV_2 = 0.95; |
|
63 | 63 | this.color; |
|
64 | 64 | this.cacheColorMap = {}; |
|
65 | 65 | }; |
|
66 | 66 | |
|
67 | 67 | ColorGenerator.prototype = { |
|
68 | 68 | getColor:function(key){ |
|
69 | 69 | if(this.cacheColorMap[key] !== undefined){ |
|
70 | 70 | return this.cacheColorMap[key]; |
|
71 | 71 | } |
|
72 | 72 | else{ |
|
73 | 73 | this.cacheColorMap[key] = this.generateColor(); |
|
74 | 74 | return this.cacheColorMap[key]; |
|
75 | 75 | } |
|
76 | 76 | }, |
|
77 | 77 | _hsvToRgb:function(h,s,v){ |
|
78 | 78 | if (s == 0.0) |
|
79 | 79 | return [v, v, v]; |
|
80 | 80 | i = parseInt(h * 6.0) |
|
81 | 81 | f = (h * 6.0) - i |
|
82 | 82 | p = v * (1.0 - s) |
|
83 | 83 | q = v * (1.0 - s * f) |
|
84 | 84 | t = v * (1.0 - s * (1.0 - f)) |
|
85 | 85 | i = i % 6 |
|
86 | 86 | if (i == 0) |
|
87 | 87 | return [v, t, p] |
|
88 | 88 | if (i == 1) |
|
89 | 89 | return [q, v, p] |
|
90 | 90 | if (i == 2) |
|
91 | 91 | return [p, v, t] |
|
92 | 92 | if (i == 3) |
|
93 | 93 | return [p, q, v] |
|
94 | 94 | if (i == 4) |
|
95 | 95 | return [t, p, v] |
|
96 | 96 | if (i == 5) |
|
97 | 97 | return [v, p, q] |
|
98 | 98 | }, |
|
99 | 99 | generateColor:function(){ |
|
100 | 100 | this.CURRENT_RATIO = this.CURRENT_RATIO+this.GOLDEN_RATIO; |
|
101 | 101 | this.CURRENT_RATIO = this.CURRENT_RATIO %= 1; |
|
102 | 102 | HSV_tuple = [this.CURRENT_RATIO, this.HSV_1, this.HSV_2] |
|
103 | 103 | RGB_tuple = this._hsvToRgb(HSV_tuple[0],HSV_tuple[1],HSV_tuple[2]); |
|
104 | 104 | function toRgb(v){ |
|
105 | 105 | return ""+parseInt(v*256) |
|
106 | 106 | } |
|
107 | 107 | return [toRgb(RGB_tuple[0]),toRgb(RGB_tuple[1]),toRgb(RGB_tuple[2])]; |
|
108 | 108 | |
|
109 | 109 | } |
|
110 | 110 | } |
|
111 | 111 | |
|
112 | 112 | |
|
113 | 113 | |
|
114 | 114 | |
|
115 | 115 | |
|
116 | 116 | /** |
|
117 | 117 | * GLOBAL YUI Shortcuts |
|
118 | 118 | */ |
|
119 | 119 | var YUC = YAHOO.util.Connect; |
|
120 | 120 | var YUD = YAHOO.util.Dom; |
|
121 | 121 | var YUE = YAHOO.util.Event; |
|
122 | 122 | var YUQ = YAHOO.util.Selector.query; |
|
123 | 123 | |
|
124 | 124 | // defines if push state is enabled for this browser ? |
|
125 | 125 | var push_state_enabled = Boolean( |
|
126 | 126 | window.history && window.history.pushState && window.history.replaceState |
|
127 | 127 | && !( /* disable for versions of iOS before version 4.3 (8F190) */ |
|
128 | 128 | (/ Mobile\/([1-7][a-z]|(8([abcde]|f(1[0-8]))))/i).test(navigator.userAgent) |
|
129 | 129 | /* disable for the mercury iOS browser, or at least older versions of the webkit engine */ |
|
130 | 130 | || (/AppleWebKit\/5([0-2]|3[0-2])/i).test(navigator.userAgent) |
|
131 | 131 | ) |
|
132 | 132 | ); |
|
133 | 133 | |
|
134 | 134 | var _run_callbacks = function(callbacks){ |
|
135 | 135 | if (callbacks !== undefined){ |
|
136 | 136 | var _l = callbacks.length; |
|
137 | 137 | for (var i=0;i<_l;i++){ |
|
138 | 138 | var func = callbacks[i]; |
|
139 | 139 | if(typeof(func)=='function'){ |
|
140 | 140 | try{ |
|
141 | 141 | func(); |
|
142 | 142 | }catch (err){}; |
|
143 | 143 | } |
|
144 | 144 | } |
|
145 | 145 | } |
|
146 | 146 | } |
|
147 | 147 | |
|
148 | 148 | /** |
|
149 | 149 | * Partial Ajax Implementation |
|
150 | 150 | * |
|
151 | 151 | * @param url: defines url to make partial request |
|
152 | 152 | * @param container: defines id of container to input partial result |
|
153 | 153 | * @param s_call: success callback function that takes o as arg |
|
154 | 154 | * o.tId |
|
155 | 155 | * o.status |
|
156 | 156 | * o.statusText |
|
157 | 157 | * o.getResponseHeader[ ] |
|
158 | 158 | * o.getAllResponseHeaders |
|
159 | 159 | * o.responseText |
|
160 | 160 | * o.responseXML |
|
161 | 161 | * o.argument |
|
162 | 162 | * @param f_call: failure callback |
|
163 | 163 | * @param args arguments |
|
164 | 164 | */ |
|
165 | 165 | function ypjax(url,container,s_call,f_call,args){ |
|
166 | 166 | var method='GET'; |
|
167 | 167 | if(args===undefined){ |
|
168 | 168 | args=null; |
|
169 | 169 | } |
|
170 | 170 | |
|
171 | 171 | // Set special header for partial ajax == HTTP_X_PARTIAL_XHR |
|
172 | 172 | YUC.initHeader('X-PARTIAL-XHR',true); |
|
173 | 173 | |
|
174 | 174 | // wrapper of passed callback |
|
175 | 175 | var s_wrapper = (function(o){ |
|
176 | 176 | return function(o){ |
|
177 | 177 | YUD.get(container).innerHTML=o.responseText; |
|
178 | 178 | YUD.setStyle(container,'opacity','1.0'); |
|
179 | 179 | //execute the given original callback |
|
180 | 180 | if (s_call !== undefined){ |
|
181 | 181 | s_call(o); |
|
182 | 182 | } |
|
183 | 183 | } |
|
184 | 184 | })() |
|
185 | 185 | YUD.setStyle(container,'opacity','0.3'); |
|
186 | 186 | YUC.asyncRequest(method,url,{ |
|
187 | 187 | success:s_wrapper, |
|
188 | 188 | failure:function(o){ |
|
189 | 189 | console.log(o); |
|
190 | 190 | YUD.get(container).innerHTML='ERROR'; |
|
191 | 191 | YUD.setStyle(container,'opacity','1.0'); |
|
192 | 192 | YUD.setStyle(container,'color','red'); |
|
193 | 193 | } |
|
194 | 194 | },args); |
|
195 | 195 | |
|
196 | 196 | }; |
|
197 | 197 | |
|
198 | 198 | /** |
|
199 | 199 | * tooltip activate |
|
200 | 200 | */ |
|
201 | 201 | var tooltip_activate = function(){ |
|
202 | 202 | function toolTipsId(){ |
|
203 | 203 | var ids = []; |
|
204 | 204 | var tts = YUQ('.tooltip'); |
|
205 | 205 | for (var i = 0; i < tts.length; i++) { |
|
206 | 206 | // if element doesn't not have and id |
|
207 | 207 | // autogenerate one for tooltip |
|
208 | 208 | if (!tts[i].id){ |
|
209 | 209 | tts[i].id='tt'+((i*100)+tts.length); |
|
210 | 210 | } |
|
211 | 211 | ids.push(tts[i].id); |
|
212 | 212 | } |
|
213 | 213 | return ids |
|
214 | 214 | }; |
|
215 | 215 | var myToolTips = new YAHOO.widget.Tooltip("tooltip", { |
|
216 | 216 | context: [[toolTipsId()],"tl","bl",null,[0,5]], |
|
217 | 217 | monitorresize:false, |
|
218 | 218 | xyoffset :[0,0], |
|
219 | 219 | autodismissdelay:300000, |
|
220 | 220 | hidedelay:5, |
|
221 | 221 | showdelay:20, |
|
222 | 222 | }); |
|
223 | 223 | }; |
|
224 | 224 | |
|
225 | 225 | /** |
|
226 | 226 | * show more |
|
227 | 227 | */ |
|
228 | 228 | var show_more_event = function(){ |
|
229 | 229 | YUE.on(YUD.getElementsByClassName('show_more'),'click',function(e){ |
|
230 | 230 | var el = e.target; |
|
231 | 231 | YUD.setStyle(YUD.get(el.id.substring(1)),'display',''); |
|
232 | 232 | YUD.setStyle(el.parentNode,'display','none'); |
|
233 | 233 | }); |
|
234 | 234 | }; |
|
235 | 235 | |
|
236 | 236 | |
|
237 | 237 | /** |
|
238 | 238 | * Quick filter widget |
|
239 | 239 | * |
|
240 | 240 | * @param target: filter input target |
|
241 | 241 | * @param nodes: list of nodes in html we want to filter. |
|
242 | 242 | * @param display_element function that takes current node from nodes and |
|
243 | 243 | * does hide or show based on the node |
|
244 | 244 | * |
|
245 | 245 | */ |
|
246 | 246 | var q_filter = function(target,nodes,display_element){ |
|
247 | 247 | |
|
248 | 248 | var nodes = nodes; |
|
249 | 249 | var q_filter_field = YUD.get(target); |
|
250 | 250 | var F = YAHOO.namespace(target); |
|
251 | 251 | |
|
252 | 252 | YUE.on(q_filter_field,'click',function(){ |
|
253 | 253 | q_filter_field.value = ''; |
|
254 | 254 | }); |
|
255 | 255 | |
|
256 | 256 | YUE.on(q_filter_field,'keyup',function(e){ |
|
257 | 257 | clearTimeout(F.filterTimeout); |
|
258 | 258 | F.filterTimeout = setTimeout(F.updateFilter,600); |
|
259 | 259 | }); |
|
260 | 260 | |
|
261 | 261 | F.filterTimeout = null; |
|
262 | 262 | |
|
263 | 263 | var show_node = function(node){ |
|
264 | 264 | YUD.setStyle(node,'display','') |
|
265 | 265 | } |
|
266 | 266 | var hide_node = function(node){ |
|
267 | 267 | YUD.setStyle(node,'display','none'); |
|
268 | 268 | } |
|
269 | 269 | |
|
270 | 270 | F.updateFilter = function() { |
|
271 | 271 | // Reset timeout |
|
272 | 272 | F.filterTimeout = null; |
|
273 | 273 | |
|
274 | 274 | var obsolete = []; |
|
275 | 275 | |
|
276 | 276 | var req = q_filter_field.value.toLowerCase(); |
|
277 | 277 | |
|
278 | 278 | var l = nodes.length; |
|
279 | 279 | var i; |
|
280 | 280 | var showing = 0; |
|
281 | 281 | |
|
282 | 282 | for (i=0;i<l;i++ ){ |
|
283 | 283 | var n = nodes[i]; |
|
284 | 284 | var target_element = display_element(n) |
|
285 | 285 | if(req && n.innerHTML.toLowerCase().indexOf(req) == -1){ |
|
286 | 286 | hide_node(target_element); |
|
287 | 287 | } |
|
288 | 288 | else{ |
|
289 | 289 | show_node(target_element); |
|
290 | 290 | showing+=1; |
|
291 | 291 | } |
|
292 | 292 | } |
|
293 | 293 | |
|
294 | 294 | // if repo_count is set update the number |
|
295 | 295 | var cnt = YUD.get('repo_count'); |
|
296 | 296 | if(cnt){ |
|
297 | 297 | YUD.get('repo_count').innerHTML = showing; |
|
298 | 298 | } |
|
299 | 299 | |
|
300 | 300 | } |
|
301 | 301 | }; |
|
302 | 302 | |
|
303 | 303 | var ajaxPOST = function(url,postData,success) { |
|
304 | 304 | var sUrl = url; |
|
305 | 305 | var callback = { |
|
306 | 306 | success: success, |
|
307 | 307 | failure: function (o) { |
|
308 | 308 | alert("error"); |
|
309 | 309 | }, |
|
310 | 310 | }; |
|
311 | 311 | var postData = postData; |
|
312 | 312 | var request = YAHOO.util.Connect.asyncRequest('POST', sUrl, callback, postData); |
|
313 | 313 | }; |
|
314 | 314 | |
|
315 | 315 | |
|
316 | 316 | /** comments **/ |
|
317 | 317 | var removeInlineForm = function(form) { |
|
318 | 318 | form.parentNode.removeChild(form); |
|
319 | 319 | }; |
|
320 | 320 | |
|
321 | 321 | var tableTr = function(cls,body){ |
|
322 | 322 | var form = document.createElement('tr'); |
|
323 | 323 | YUD.addClass(form, cls); |
|
324 | 324 | form.innerHTML = '<td class="lineno-inline new-inline"></td>'+ |
|
325 | 325 | '<td class="lineno-inline old-inline"></td>'+ |
|
326 | 326 | '<td>{0}</td>'.format(body); |
|
327 | 327 | return form; |
|
328 | 328 | }; |
|
329 | 329 | |
|
330 | 330 | var createInlineForm = function(parent_tr, f_path, line) { |
|
331 | 331 | var tmpl = YUD.get('comment-inline-form-template').innerHTML; |
|
332 | 332 | tmpl = tmpl.format(f_path, line); |
|
333 | 333 | var form = tableTr('comment-form-inline',tmpl) |
|
334 | 334 | |
|
335 | 335 | // create event for hide button |
|
336 | 336 | form = new YAHOO.util.Element(form); |
|
337 | 337 | var form_hide_button = new YAHOO.util.Element(form.getElementsByClassName('hide-inline-form')[0]); |
|
338 | 338 | form_hide_button.on('click', function(e) { |
|
339 | 339 | var newtr = e.currentTarget.parentNode.parentNode.parentNode.parentNode.parentNode; |
|
340 | 340 | removeInlineForm(newtr); |
|
341 | 341 | YUD.removeClass(parent_tr, 'form-open'); |
|
342 | 342 | }); |
|
343 | 343 | return form |
|
344 | 344 | }; |
|
345 | 345 | var injectInlineForm = function(tr){ |
|
346 | 346 | if(YUD.hasClass(tr,'form-open') || YUD.hasClass(tr,'context')){ |
|
347 | 347 | return |
|
348 | 348 | } |
|
349 | 349 | YUD.addClass(tr,'form-open'); |
|
350 | 350 | var node = tr.parentNode.parentNode.parentNode.getElementsByClassName('full_f_path')[0]; |
|
351 | 351 | var f_path = YUD.getAttribute(node,'path'); |
|
352 | 352 | var lineno = getLineNo(tr); |
|
353 | 353 | var form = createInlineForm(tr, f_path, lineno); |
|
354 | 354 | var target_tr = tr; |
|
355 | 355 | if(YUD.hasClass(YUD.getNextSibling(tr),'inline-comments')){ |
|
356 | 356 | target_tr = YUD.getNextSibling(tr); |
|
357 | 357 | } |
|
358 | 358 | YUD.insertAfter(form,target_tr); |
|
359 |
YUD.get('text_'+lineno).focus(); |
|
|
359 | YUD.get('text_'+lineno).focus(); | |
|
360 | tooltip_activate(); | |
|
360 | 361 | }; |
|
361 | 362 | |
|
362 | 363 | var createInlineAddButton = function(tr,label){ |
|
363 | 364 | var html = '<div class="add-comment"><span class="ui-btn">{0}</span></div>'.format(label); |
|
364 | 365 | |
|
365 | 366 | var add = new YAHOO.util.Element(tableTr('inline-comments-button',html)); |
|
366 | 367 | add.on('click', function(e) { |
|
367 | 368 | injectInlineForm(tr); |
|
368 | 369 | }); |
|
369 | 370 | return add; |
|
370 | 371 | }; |
|
371 | 372 | |
|
372 | 373 | var getLineNo = function(tr) { |
|
373 | 374 | var line; |
|
374 | 375 | var o = tr.children[0].id.split('_'); |
|
375 | 376 | var n = tr.children[1].id.split('_'); |
|
376 | 377 | |
|
377 | 378 | if (n.length >= 2) { |
|
378 | 379 | line = n[n.length-1]; |
|
379 | 380 | } else if (o.length >= 2) { |
|
380 | 381 | line = o[o.length-1]; |
|
381 | 382 | } |
|
382 | 383 | |
|
383 | 384 | return line |
|
384 | 385 | }; |
|
385 | 386 | |
|
386 | 387 | |
|
387 | 388 | var fileBrowserListeners = function(current_url, node_list_url, url_base, |
|
388 | 389 | truncated_lbl, nomatch_lbl){ |
|
389 | 390 | var current_url_branch = +"?branch=__BRANCH__"; |
|
390 | 391 | var url = url_base; |
|
391 | 392 | var node_url = node_list_url; |
|
392 | 393 | |
|
393 | 394 | YUE.on('stay_at_branch','click',function(e){ |
|
394 | 395 | if(e.target.checked){ |
|
395 | 396 | var uri = current_url_branch; |
|
396 | 397 | uri = uri.replace('__BRANCH__',e.target.value); |
|
397 | 398 | window.location = uri; |
|
398 | 399 | } |
|
399 | 400 | else{ |
|
400 | 401 | window.location = current_url; |
|
401 | 402 | } |
|
402 | 403 | }) |
|
403 | 404 | |
|
404 | 405 | var n_filter = YUD.get('node_filter'); |
|
405 | 406 | var F = YAHOO.namespace('node_filter'); |
|
406 | 407 | |
|
407 | 408 | F.filterTimeout = null; |
|
408 | 409 | var nodes = null; |
|
409 | 410 | |
|
410 | 411 | F.initFilter = function(){ |
|
411 | 412 | YUD.setStyle('node_filter_box_loading','display',''); |
|
412 | 413 | YUD.setStyle('search_activate_id','display','none'); |
|
413 | 414 | YUD.setStyle('add_node_id','display','none'); |
|
414 | 415 | YUC.initHeader('X-PARTIAL-XHR',true); |
|
415 | 416 | YUC.asyncRequest('GET',url,{ |
|
416 | 417 | success:function(o){ |
|
417 | 418 | nodes = JSON.parse(o.responseText); |
|
418 | 419 | YUD.setStyle('node_filter_box_loading','display','none'); |
|
419 | 420 | YUD.setStyle('node_filter_box','display',''); |
|
420 | 421 | }, |
|
421 | 422 | failure:function(o){ |
|
422 | 423 | console.log('failed to load'); |
|
423 | 424 | } |
|
424 | 425 | },null); |
|
425 | 426 | } |
|
426 | 427 | |
|
427 | 428 | F.updateFilter = function(e) { |
|
428 | 429 | |
|
429 | 430 | return function(){ |
|
430 | 431 | // Reset timeout |
|
431 | 432 | F.filterTimeout = null; |
|
432 | 433 | var query = e.target.value; |
|
433 | 434 | var match = []; |
|
434 | 435 | var matches = 0; |
|
435 | 436 | var matches_max = 20; |
|
436 | 437 | if (query != ""){ |
|
437 | 438 | for(var i=0;i<nodes.length;i++){ |
|
438 | 439 | var pos = nodes[i].toLowerCase().indexOf(query) |
|
439 | 440 | if(query && pos != -1){ |
|
440 | 441 | |
|
441 | 442 | matches++ |
|
442 | 443 | //show only certain amount to not kill browser |
|
443 | 444 | if (matches > matches_max){ |
|
444 | 445 | break; |
|
445 | 446 | } |
|
446 | 447 | |
|
447 | 448 | var n = nodes[i]; |
|
448 | 449 | var n_hl = n.substring(0,pos) |
|
449 | 450 | +"<b>{0}</b>".format(n.substring(pos,pos+query.length)) |
|
450 | 451 | +n.substring(pos+query.length) |
|
451 | 452 | match.push('<tr><td><a class="browser-file" href="{0}">{1}</a></td><td colspan="5"></td></tr>'.format(node_url.replace('__FPATH__',n),n_hl)); |
|
452 | 453 | } |
|
453 | 454 | if(match.length >= matches_max){ |
|
454 | 455 | match.push('<tr><td>{0}</td><td colspan="5"></td></tr>'.format(truncated_lbl)); |
|
455 | 456 | } |
|
456 | 457 | |
|
457 | 458 | } |
|
458 | 459 | } |
|
459 | 460 | if(query != ""){ |
|
460 | 461 | YUD.setStyle('tbody','display','none'); |
|
461 | 462 | YUD.setStyle('tbody_filtered','display',''); |
|
462 | 463 | |
|
463 | 464 | if (match.length==0){ |
|
464 | 465 | match.push('<tr><td>{0}</td><td colspan="5"></td></tr>'.format(nomatch_lbl)); |
|
465 | 466 | } |
|
466 | 467 | |
|
467 | 468 | YUD.get('tbody_filtered').innerHTML = match.join(""); |
|
468 | 469 | } |
|
469 | 470 | else{ |
|
470 | 471 | YUD.setStyle('tbody','display',''); |
|
471 | 472 | YUD.setStyle('tbody_filtered','display','none'); |
|
472 | 473 | } |
|
473 | 474 | |
|
474 | 475 | } |
|
475 | 476 | }; |
|
476 | 477 | |
|
477 | 478 | YUE.on(YUD.get('filter_activate'),'click',function(){ |
|
478 | 479 | F.initFilter(); |
|
479 | 480 | }) |
|
480 | 481 | YUE.on(n_filter,'click',function(){ |
|
481 | 482 | n_filter.value = ''; |
|
482 | 483 | }); |
|
483 | 484 | YUE.on(n_filter,'keyup',function(e){ |
|
484 | 485 | clearTimeout(F.filterTimeout); |
|
485 | 486 | F.filterTimeout = setTimeout(F.updateFilter(e),600); |
|
486 | 487 | }); |
|
487 | 488 | }; |
|
488 | 489 | |
|
489 | 490 | |
|
490 | 491 | var initCodeMirror = function(textAreadId,resetUrl){ |
|
491 | 492 | var myCodeMirror = CodeMirror.fromTextArea(YUD.get(textAreadId),{ |
|
492 | 493 | mode: "null", |
|
493 | 494 | lineNumbers:true |
|
494 | 495 | }); |
|
495 | 496 | YUE.on('reset','click',function(e){ |
|
496 | 497 | window.location=resetUrl |
|
497 | 498 | }); |
|
498 | 499 | |
|
499 | 500 | YUE.on('file_enable','click',function(){ |
|
500 | 501 | YUD.setStyle('editor_container','display',''); |
|
501 | 502 | YUD.setStyle('upload_file_container','display','none'); |
|
502 | 503 | YUD.setStyle('filename_container','display',''); |
|
503 | 504 | }); |
|
504 | 505 | |
|
505 | 506 | YUE.on('upload_file_enable','click',function(){ |
|
506 | 507 | YUD.setStyle('editor_container','display','none'); |
|
507 | 508 | YUD.setStyle('upload_file_container','display',''); |
|
508 | 509 | YUD.setStyle('filename_container','display','none'); |
|
509 | 510 | }); |
|
510 | 511 | }; |
|
511 | 512 | |
|
512 | 513 | |
|
513 | 514 | |
|
514 | 515 | var getIdentNode = function(n){ |
|
515 | 516 | //iterate thru nodes untill matched interesting node ! |
|
516 | 517 | |
|
517 | 518 | if (typeof n == 'undefined'){ |
|
518 | 519 | return -1 |
|
519 | 520 | } |
|
520 | 521 | |
|
521 | 522 | if(typeof n.id != "undefined" && n.id.match('L[0-9]+')){ |
|
522 | 523 | return n |
|
523 | 524 | } |
|
524 | 525 | else{ |
|
525 | 526 | return getIdentNode(n.parentNode); |
|
526 | 527 | } |
|
527 | 528 | }; |
|
528 | 529 | |
|
529 | 530 | var getSelectionLink = function(selection_link_label) { |
|
530 | 531 | return function(){ |
|
531 | 532 | //get selection from start/to nodes |
|
532 | 533 | if (typeof window.getSelection != "undefined") { |
|
533 | 534 | s = window.getSelection(); |
|
534 | 535 | |
|
535 | 536 | from = getIdentNode(s.anchorNode); |
|
536 | 537 | till = getIdentNode(s.focusNode); |
|
537 | 538 | |
|
538 | 539 | f_int = parseInt(from.id.replace('L','')); |
|
539 | 540 | t_int = parseInt(till.id.replace('L','')); |
|
540 | 541 | |
|
541 | 542 | if (f_int > t_int){ |
|
542 | 543 | //highlight from bottom |
|
543 | 544 | offset = -35; |
|
544 | 545 | ranges = [t_int,f_int]; |
|
545 | 546 | |
|
546 | 547 | } |
|
547 | 548 | else{ |
|
548 | 549 | //highligth from top |
|
549 | 550 | offset = 35; |
|
550 | 551 | ranges = [f_int,t_int]; |
|
551 | 552 | } |
|
552 | 553 | |
|
553 | 554 | if (ranges[0] != ranges[1]){ |
|
554 | 555 | if(YUD.get('linktt') == null){ |
|
555 | 556 | hl_div = document.createElement('div'); |
|
556 | 557 | hl_div.id = 'linktt'; |
|
557 | 558 | } |
|
558 | 559 | anchor = '#L'+ranges[0]+'-'+ranges[1]; |
|
559 | 560 | hl_div.innerHTML = ''; |
|
560 | 561 | l = document.createElement('a'); |
|
561 | 562 | l.href = location.href.substring(0,location.href.indexOf('#'))+anchor; |
|
562 | 563 | l.innerHTML = selection_link_label; |
|
563 | 564 | hl_div.appendChild(l); |
|
564 | 565 | |
|
565 | 566 | YUD.get('body').appendChild(hl_div); |
|
566 | 567 | |
|
567 | 568 | xy = YUD.getXY(till.id); |
|
568 | 569 | |
|
569 | 570 | YUD.addClass('linktt','yui-tt'); |
|
570 | 571 | YUD.setStyle('linktt','top',xy[1]+offset+'px'); |
|
571 | 572 | YUD.setStyle('linktt','left',xy[0]+'px'); |
|
572 | 573 | YUD.setStyle('linktt','visibility','visible'); |
|
573 | 574 | } |
|
574 | 575 | else{ |
|
575 | 576 | YUD.setStyle('linktt','visibility','hidden'); |
|
576 | 577 | } |
|
577 | 578 | } |
|
578 | 579 | } |
|
579 | 580 | }; |
|
580 | 581 | |
|
581 | 582 | var deleteNotification = function(url, notification_id,callbacks){ |
|
582 | 583 | var callback = { |
|
583 | 584 | success:function(o){ |
|
584 | 585 | var obj = YUD.get(String("notification_"+notification_id)); |
|
585 | 586 | if(obj.parentNode !== undefined){ |
|
586 | 587 | obj.parentNode.removeChild(obj); |
|
587 | 588 | } |
|
588 | 589 | _run_callbacks(callbacks); |
|
589 | 590 | }, |
|
590 | 591 | failure:function(o){ |
|
591 | 592 | alert("error"); |
|
592 | 593 | }, |
|
593 | 594 | }; |
|
594 | 595 | var postData = '_method=delete'; |
|
595 | 596 | var sUrl = url.replace('__NOTIFICATION_ID__',notification_id); |
|
596 | 597 | var request = YAHOO.util.Connect.asyncRequest('POST', sUrl, |
|
597 | 598 | callback, postData); |
|
598 | 599 | }; |
@@ -1,153 +1,152 b'' | |||
|
1 | 1 | ## -*- coding: utf-8 -*- |
|
2 | 2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|
3 | 3 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|
4 | 4 | <head> |
|
5 | 5 | <title>${self.title()}</title> |
|
6 | 6 | <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> |
|
7 | 7 | <meta name="robots" content="index, nofollow"/> |
|
8 | 8 | <link rel="icon" href="${h.url('/images/icons/database_gear.png')}" type="image/png" /> |
|
9 | 9 | |
|
10 | 10 | ## CSS ### |
|
11 | 11 | <%def name="css()"> |
|
12 | 12 | <link rel="stylesheet" type="text/css" href="${h.url('/css/style.css')}" media="screen"/> |
|
13 | 13 | <link rel="stylesheet" type="text/css" href="${h.url('/css/pygments.css')}"/> |
|
14 | <link rel="stylesheet" type="text/css" href="${h.url('/css/diff.css')}"/> | |
|
15 | 14 | ## EXTRA FOR CSS |
|
16 | 15 | ${self.css_extra()} |
|
17 | 16 | </%def> |
|
18 | 17 | <%def name="css_extra()"> |
|
19 | 18 | </%def> |
|
20 | 19 | |
|
21 | 20 | ${self.css()} |
|
22 | 21 | |
|
23 | 22 | %if c.ga_code: |
|
24 | 23 | <!-- Analytics --> |
|
25 | 24 | <script type="text/javascript"> |
|
26 | 25 | var _gaq = _gaq || []; |
|
27 | 26 | _gaq.push(['_setAccount', '${c.ga_code}']); |
|
28 | 27 | _gaq.push(['_trackPageview']); |
|
29 | 28 | |
|
30 | 29 | (function() { |
|
31 | 30 | var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; |
|
32 | 31 | ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; |
|
33 | 32 | var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); |
|
34 | 33 | })(); |
|
35 | 34 | </script> |
|
36 | 35 | %endif |
|
37 | 36 | |
|
38 | 37 | ## JAVASCRIPT ## |
|
39 | 38 | <%def name="js()"> |
|
40 | 39 | <script type="text/javascript" src="${h.url('/js/yui.2.9.js')}"></script> |
|
41 | 40 | <!--[if IE]> |
|
42 | 41 | <script language="javascript" type="text/javascript" src="${h.url('/js/excanvas.min.js')}"></script> |
|
43 | 42 | <![endif]--> |
|
44 | 43 | <script type="text/javascript" src="${h.url('/js/yui.flot.js')}"></script> |
|
45 | 44 | <script type="text/javascript" src="${h.url('/js/rhodecode.js')}"></script> |
|
46 | 45 | ## EXTRA FOR JS |
|
47 | 46 | ${self.js_extra()} |
|
48 | 47 | |
|
49 | 48 | <script type="text/javascript"> |
|
50 | 49 | var follow_base_url = "${h.url('toggle_following')}"; |
|
51 | 50 | var stop_follow_text = "${_('Stop following this repository')}"; |
|
52 | 51 | var start_follow_text = "${_('Start following this repository')}"; |
|
53 | 52 | |
|
54 | 53 | |
|
55 | 54 | var onSuccessFollow = function(target){ |
|
56 | 55 | var f = YUD.get(target.id); |
|
57 | 56 | var f_cnt = YUD.get('current_followers_count'); |
|
58 | 57 | |
|
59 | 58 | if(f.getAttribute('class')=='follow'){ |
|
60 | 59 | f.setAttribute('class','following'); |
|
61 | 60 | f.setAttribute('title',stop_follow_text); |
|
62 | 61 | |
|
63 | 62 | if(f_cnt){ |
|
64 | 63 | var cnt = Number(f_cnt.innerHTML)+1; |
|
65 | 64 | f_cnt.innerHTML = cnt; |
|
66 | 65 | } |
|
67 | 66 | } |
|
68 | 67 | else{ |
|
69 | 68 | f.setAttribute('class','follow'); |
|
70 | 69 | f.setAttribute('title',start_follow_text); |
|
71 | 70 | if(f_cnt){ |
|
72 | 71 | var cnt = Number(f_cnt.innerHTML)+1; |
|
73 | 72 | f_cnt.innerHTML = cnt; |
|
74 | 73 | } |
|
75 | 74 | } |
|
76 | 75 | } |
|
77 | 76 | |
|
78 | 77 | var toggleFollowingUser = function(target,fallows_user_id,token,user_id){ |
|
79 | 78 | args = 'follows_user_id='+fallows_user_id; |
|
80 | 79 | args+= '&auth_token='+token; |
|
81 | 80 | if(user_id != undefined){ |
|
82 | 81 | args+="&user_id="+user_id; |
|
83 | 82 | } |
|
84 | 83 | YUC.asyncRequest('POST',follow_base_url,{ |
|
85 | 84 | success:function(o){ |
|
86 | 85 | onSuccessFollow(target); |
|
87 | 86 | } |
|
88 | 87 | },args); |
|
89 | 88 | return false; |
|
90 | 89 | } |
|
91 | 90 | |
|
92 | 91 | var toggleFollowingRepo = function(target,fallows_repo_id,token,user_id){ |
|
93 | 92 | |
|
94 | 93 | args = 'follows_repo_id='+fallows_repo_id; |
|
95 | 94 | args+= '&auth_token='+token; |
|
96 | 95 | if(user_id != undefined){ |
|
97 | 96 | args+="&user_id="+user_id; |
|
98 | 97 | } |
|
99 | 98 | YUC.asyncRequest('POST',follow_base_url,{ |
|
100 | 99 | success:function(o){ |
|
101 | 100 | onSuccessFollow(target); |
|
102 | 101 | } |
|
103 | 102 | },args); |
|
104 | 103 | return false; |
|
105 | 104 | } |
|
106 | 105 | YUE.onDOMReady(function(){ |
|
107 | 106 | tooltip_activate(); |
|
108 | 107 | show_more_event(); |
|
109 | 108 | |
|
110 | 109 | YUE.on('quick_login_link','click',function(e){ |
|
111 | 110 | // make sure we don't redirect |
|
112 | 111 | YUE.preventDefault(e); |
|
113 | 112 | |
|
114 | 113 | if(YUD.hasClass('quick_login_link','enabled')){ |
|
115 | 114 | YUD.setStyle('quick_login','display','none'); |
|
116 | 115 | YUD.removeClass('quick_login_link','enabled'); |
|
117 | 116 | } |
|
118 | 117 | else{ |
|
119 | 118 | YUD.setStyle('quick_login','display',''); |
|
120 | 119 | YUD.addClass('quick_login_link','enabled'); |
|
121 | 120 | YUD.get('username').focus(); |
|
122 | 121 | } |
|
123 | 122 | }); |
|
124 | 123 | |
|
125 | 124 | YUE.on(YUQ('.quick_repo_menu'),'click',function(e){ |
|
126 | 125 | var menu = e.currentTarget.firstElementChild; |
|
127 | 126 | if(YUD.hasClass(menu,'hidden')){ |
|
128 | 127 | YUD.addClass(e.currentTarget,'active'); |
|
129 | 128 | YUD.removeClass(menu,'hidden'); |
|
130 | 129 | }else{ |
|
131 | 130 | YUD.removeClass(e.currentTarget,'active'); |
|
132 | 131 | YUD.addClass(menu,'hidden'); |
|
133 | 132 | } |
|
134 | 133 | }) |
|
135 | 134 | |
|
136 | 135 | YUE.on(window,'scroll',function(){ |
|
137 | 136 | if(YUD.getDocumentScrollTop() > 45){ |
|
138 | 137 | YUD.addClass('header-inner','hover'); |
|
139 | 138 | } |
|
140 | 139 | else{ |
|
141 | 140 | YUD.removeClass('header-inner','hover'); |
|
142 | 141 | } |
|
143 | 142 | }) |
|
144 | 143 | }) |
|
145 | 144 | </script> |
|
146 | 145 | </%def> |
|
147 | 146 | <%def name="js_extra()"></%def> |
|
148 | 147 | ${self.js()} |
|
149 | 148 | </head> |
|
150 | 149 | <body id="body"> |
|
151 | 150 | ${next.body()} |
|
152 | 151 | </body> |
|
153 | 152 | </html> No newline at end of file |
@@ -1,252 +1,257 b'' | |||
|
1 | 1 | ## -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | <%inherit file="/base/base.html"/> |
|
4 | 4 | |
|
5 | 5 | <%def name="title()"> |
|
6 | 6 | ${c.repo_name} ${_('Changeset')} - r${c.changeset.revision}:${h.short_id(c.changeset.raw_id)} - ${c.rhodecode_name} |
|
7 | 7 | </%def> |
|
8 | 8 | |
|
9 | 9 | <%def name="breadcrumbs_links()"> |
|
10 | 10 | ${h.link_to(u'Home',h.url('/'))} |
|
11 | 11 | » |
|
12 | 12 | ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))} |
|
13 | 13 | » |
|
14 | 14 | ${_('Changeset')} - r${c.changeset.revision}:${h.short_id(c.changeset.raw_id)} |
|
15 | 15 | </%def> |
|
16 | 16 | |
|
17 | 17 | <%def name="page_nav()"> |
|
18 | 18 | ${self.menu('changelog')} |
|
19 | 19 | </%def> |
|
20 | 20 | |
|
21 | 21 | <%def name="fid(raw_id,path)" filter="strip"> |
|
22 | 22 | <% |
|
23 | 23 | return 'C-%s-%s' % (h.short_id(raw_id),h.safeid(h.safe_unicode(path))) |
|
24 | 24 | %> |
|
25 | 25 | </%def> |
|
26 | 26 | |
|
27 | 27 | <%def name="main()"> |
|
28 | 28 | <div class="box"> |
|
29 | 29 | <!-- box / title --> |
|
30 | 30 | <div class="title"> |
|
31 | 31 | ${self.breadcrumbs()} |
|
32 | 32 | </div> |
|
33 | 33 | <div class="table"> |
|
34 | 34 | <div class="diffblock"> |
|
35 | 35 | <div class="code-header"> |
|
36 | 36 | <div> |
|
37 | 37 | <span>${h.link_to(_('raw diff'), |
|
38 | 38 | h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='show'))}</span> |
|
39 | 39 | » <span>${h.link_to(_('download diff'), |
|
40 | 40 | h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='download'))}</span> |
|
41 | 41 | <div class="comments-number" style="float:right;padding-right:5px">${len(c.comments)} comment(s) (${c.inline_cnt} ${_('inline')})</div> |
|
42 | 42 | </div> |
|
43 | 43 | </div> |
|
44 | 44 | </div> |
|
45 | 45 | <div id="changeset_content"> |
|
46 | 46 | <div class="container"> |
|
47 | 47 | <div class="left"> |
|
48 | 48 | <div class="date">${_('commit')} ${c.changeset.revision}: ${h.short_id(c.changeset.raw_id)}@${c.changeset.date}</div> |
|
49 | 49 | <div class="author"> |
|
50 | 50 | <div class="gravatar"> |
|
51 | 51 | <img alt="gravatar" src="${h.gravatar_url(h.email(c.changeset.author),20)}"/> |
|
52 | 52 | </div> |
|
53 | 53 | <span>${h.person(c.changeset.author)}</span><br/> |
|
54 | 54 | <span><a href="mailto:${h.email_or_none(c.changeset.author)}">${h.email_or_none(c.changeset.author)}</a></span><br/> |
|
55 | 55 | </div> |
|
56 | 56 | <div class="message">${h.link_to(h.wrap_paragraphs(c.changeset.message),h.url('changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}</div> |
|
57 | 57 | </div> |
|
58 | 58 | <div class="right"> |
|
59 | 59 | <div class="changes"> |
|
60 | 60 | % if len(c.changeset.affected_files) <= c.affected_files_cut_off: |
|
61 | 61 | <span class="removed" title="${_('removed')}">${len(c.changeset.removed)}</span> |
|
62 | 62 | <span class="changed" title="${_('changed')}">${len(c.changeset.changed)}</span> |
|
63 | 63 | <span class="added" title="${_('added')}">${len(c.changeset.added)}</span> |
|
64 | 64 | % else: |
|
65 | 65 | <span class="removed" title="${_('affected %s files') % len(c.changeset.affected_files)}">!</span> |
|
66 | 66 | <span class="changed" title="${_('affected %s files') % len(c.changeset.affected_files)}">!</span> |
|
67 | 67 | <span class="added" title="${_('affected %s files') % len(c.changeset.affected_files)}">!</span> |
|
68 | 68 | % endif |
|
69 | 69 | </div> |
|
70 | 70 | %if len(c.changeset.parents)>1: |
|
71 | 71 | <div class="merge"> |
|
72 | 72 | ${_('merge')}<img alt="merge" src="${h.url('/images/icons/arrow_join.png')}"/> |
|
73 | 73 | </div> |
|
74 | 74 | %endif |
|
75 | 75 | |
|
76 | 76 | %if c.changeset.parents: |
|
77 | 77 | %for p_cs in reversed(c.changeset.parents): |
|
78 | 78 | <div class="parent">${_('Parent')} ${p_cs.revision}: ${h.link_to(h.short_id(p_cs.raw_id), |
|
79 | 79 | h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)} |
|
80 | 80 | </div> |
|
81 | 81 | %endfor |
|
82 | 82 | %else: |
|
83 | 83 | <div class="parent">${_('No parents')}</div> |
|
84 | 84 | %endif |
|
85 | 85 | <span class="logtags"> |
|
86 | 86 | <span class="branchtag" title="${'%s %s' % (_('branch'),c.changeset.branch)}"> |
|
87 | 87 | ${h.link_to(c.changeset.branch,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}</span> |
|
88 | 88 | %for tag in c.changeset.tags: |
|
89 | 89 | <span class="tagtag" title="${'%s %s' % (_('tag'),tag)}"> |
|
90 | 90 | ${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}</span> |
|
91 | 91 | %endfor |
|
92 | 92 | </span> |
|
93 | 93 | </div> |
|
94 | 94 | </div> |
|
95 | 95 | <span style="font-size:1.1em;font-weight: bold"> |
|
96 | 96 | ${_('%s files affected with %s additions and %s deletions.') % (len(c.changeset.affected_files),c.lines_added,c.lines_deleted)} |
|
97 | 97 | </span> |
|
98 | 98 | <div class="cs_files"> |
|
99 | 99 | %for change,filenode,diff,cs1,cs2,stat in c.changes: |
|
100 | 100 | <div class="cs_${change}"> |
|
101 | 101 | <div class="node"> |
|
102 | 102 | %if change != 'removed': |
|
103 | 103 | ${h.link_to(h.safe_unicode(filenode.path),h.url.current(anchor=self.fid(filenode.changeset.raw_id,filenode.path)))} |
|
104 | 104 | %else: |
|
105 | 105 | ${h.link_to(h.safe_unicode(filenode.path),h.url.current(anchor=self.fid('',filenode.path)))} |
|
106 | 106 | %endif |
|
107 | 107 | </div> |
|
108 | 108 | <div class="changes">${h.fancy_file_stats(stat)}</div> |
|
109 | 109 | </div> |
|
110 | 110 | %endfor |
|
111 | 111 | % if c.cut_off: |
|
112 | 112 | ${_('Changeset was too big and was cut off...')} |
|
113 | 113 | % endif |
|
114 | 114 | </div> |
|
115 | 115 | </div> |
|
116 | 116 | |
|
117 | 117 | </div> |
|
118 | 118 | |
|
119 | 119 | %for change,filenode,diff,cs1,cs2,stat in c.changes: |
|
120 | 120 | %if change !='removed': |
|
121 | 121 | <div style="clear:both;height:10px"></div> |
|
122 | 122 | <div class="diffblock margined comm" id="${self.fid(filenode.changeset.raw_id,filenode.path)}"> |
|
123 | 123 | <div class="code-header"> |
|
124 | 124 | <div class="changeset_header"> |
|
125 | 125 | <span class="changeset_file"> |
|
126 | 126 | ${h.link_to_if(change!='removed',h.safe_unicode(filenode.path),h.url('files_home',repo_name=c.repo_name, |
|
127 | 127 | revision=filenode.changeset.raw_id,f_path=h.safe_unicode(filenode.path)))} |
|
128 | 128 | </span> |
|
129 | 129 | » <span>${h.link_to(_('diff'), |
|
130 | 130 | h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(filenode.path),diff2=cs2,diff1=cs1,diff='diff'))}</span> |
|
131 | 131 | » <span>${h.link_to(_('raw diff'), |
|
132 | 132 | h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(filenode.path),diff2=cs2,diff1=cs1,diff='raw'))}</span> |
|
133 | 133 | » <span>${h.link_to(_('download diff'), |
|
134 | 134 | h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(filenode.path),diff2=cs2,diff1=cs1,diff='download'))}</span> |
|
135 | <span style="float:right"> | |
|
135 | <span style="float:right;margin-top:-3px"> | |
|
136 | 136 | <label> |
|
137 | 137 | ${_('show inline comments')} |
|
138 | 138 | ${h.checkbox('',checked="checked",class_="show-inline-comments",id_for=self.fid(filenode.changeset.raw_id,filenode.path))} |
|
139 | 139 | </label> |
|
140 | 140 | </span> |
|
141 | 141 | </div> |
|
142 | 142 | </div> |
|
143 | 143 | <div class="code-body"> |
|
144 | 144 | <div class="full_f_path" path="${filenode.path}"></div> |
|
145 | 145 | %if diff: |
|
146 | 146 | ${diff|n} |
|
147 | 147 | %else: |
|
148 | 148 | ${_('No changes in this file')} |
|
149 | 149 | %endif |
|
150 | 150 | </div> |
|
151 | 151 | </div> |
|
152 | 152 | %endif |
|
153 | 153 | %endfor |
|
154 | 154 | |
|
155 | 155 | <%namespace name="comment" file="/changeset/changeset_file_comment.html"/> |
|
156 | 156 | ## template for inline comment form |
|
157 | 157 | ${comment.comment_inline_form()} |
|
158 | 158 | |
|
159 | 159 | <div class="comments"> |
|
160 | 160 | <div class="comments-number">${len(c.comments)} comment(s) (${c.inline_cnt} ${_('inline')})</div> |
|
161 | 161 | |
|
162 | 162 | %for path, lines in c.inline_comments: |
|
163 | 163 | <div style="display:none" class="inline-comment-placeholder" path="${path}" target_id="${self.fid(c.changeset.raw_id,path)}"> |
|
164 | 164 | % for line,comments in lines.iteritems(): |
|
165 | 165 | <div class="inline-comment-placeholder-line" line="${line}" target_id="${h.safeid(h.safe_unicode(path))}"> |
|
166 | 166 | %for co in comments: |
|
167 | 167 | ${comment.comment_block(co)} |
|
168 | 168 | %endfor |
|
169 | 169 | </div> |
|
170 | 170 | %endfor |
|
171 | 171 | </div> |
|
172 | 172 | %endfor |
|
173 | 173 | |
|
174 | 174 | %for co in c.comments: |
|
175 | 175 | ${comment.comment_block(co)} |
|
176 | 176 | %endfor |
|
177 | 177 | %if c.rhodecode_user.username != 'default': |
|
178 | 178 | <div class="comment-form"> |
|
179 | 179 | ${h.form(h.url('changeset_comment', repo_name=c.repo_name, revision=c.changeset.raw_id))} |
|
180 | 180 | <strong>${_('Leave a comment')}</strong> |
|
181 | 181 | <div class="clearfix"> |
|
182 | 182 | <div class="comment-help"> |
|
183 | 183 | ${_('Comments parsed using')} <a href="${h.url('rst_help')}">RST</a> ${_('syntax')} |
|
184 | ${_('with')} <span style="color:#003367" class="tooltip" title="${_('Use @username inside this text to send notification to this RhodeCode user')}">@mention</span> ${_('support')} | |
|
184 | 185 | </div> |
|
185 | 186 | ${h.textarea('text')} |
|
186 | 187 | </div> |
|
187 | 188 | <div class="comment-button"> |
|
188 | 189 | ${h.submit('save', _('Comment'), class_='ui-button')} |
|
189 | 190 | </div> |
|
190 | 191 | ${h.end_form()} |
|
191 | 192 | </div> |
|
192 | 193 | %endif |
|
193 | 194 | </div> |
|
194 | 195 | <script type="text/javascript"> |
|
195 | 196 | var deleteComment = function(comment_id){ |
|
196 | 197 | |
|
197 | 198 | var url = "${url('changeset_comment_delete',repo_name=c.repo_name,comment_id='__COMMENT_ID__')}".replace('__COMMENT_ID__',comment_id); |
|
198 | 199 | var postData = '_method=delete'; |
|
199 | 200 | var success = function(o){ |
|
200 | 201 | var n = YUD.get('comment-'+comment_id); |
|
201 | 202 | n.parentNode.removeChild(n); |
|
202 | 203 | } |
|
203 | 204 | ajaxPOST(url,postData,success); |
|
204 | 205 | } |
|
205 | 206 | |
|
206 | 207 | YUE.onDOMReady(function(){ |
|
207 | 208 | |
|
208 | 209 | YUE.on(YUQ('.show-inline-comments'),'change',function(e){ |
|
209 | 210 | var show = 'none'; |
|
210 | 211 | var target = e.currentTarget; |
|
211 | 212 | if(target.checked){ |
|
212 | 213 | var show = '' |
|
213 | 214 | } |
|
214 | 215 | var boxid = YUD.getAttribute(target,'id_for'); |
|
215 | 216 | var comments = YUQ('#{0} .inline-comments'.format(boxid)); |
|
216 | 217 | for(c in comments){ |
|
217 | 218 | YUD.setStyle(comments[c],'display',show); |
|
218 | 219 | } |
|
220 | var btns = YUQ('#{0} .inline-comments-button'.format(boxid)); | |
|
221 | for(c in btns){ | |
|
222 | YUD.setStyle(btns[c],'display',show); | |
|
223 | } | |
|
219 | 224 | }) |
|
220 | 225 | |
|
221 | 226 | YUE.on(YUQ('.line'),'click',function(e){ |
|
222 | 227 | var tr = e.currentTarget; |
|
223 | 228 | injectInlineForm(tr); |
|
224 | 229 | }); |
|
225 | 230 | |
|
226 | 231 | // inject comments into they proper positions |
|
227 | 232 | var file_comments = YUQ('.inline-comment-placeholder'); |
|
228 | 233 | |
|
229 | 234 | for (f in file_comments){ |
|
230 | 235 | var box = file_comments[f]; |
|
231 | 236 | var inlines = box.children; |
|
232 | 237 | for(var i=0; i<inlines.length; i++){ |
|
233 | 238 | try{ |
|
234 | 239 | |
|
235 | 240 | var inline = inlines[i]; |
|
236 | 241 | var lineno = YUD.getAttribute(inlines[i],'line'); |
|
237 | 242 | var lineid = "{0}_{1}".format(YUD.getAttribute(inline,'target_id'),lineno); |
|
238 | 243 | var target_line = YUD.get(lineid); |
|
239 | 244 | |
|
240 | 245 | var add = createInlineAddButton(target_line.parentNode,'${_("add another comment")}'); |
|
241 | 246 | YUD.insertAfter(add,target_line.parentNode); |
|
242 | 247 | |
|
243 | 248 | var comment = new YAHOO.util.Element(tableTr('inline-comments',inline.innerHTML)) |
|
244 | 249 | YUD.insertAfter(comment,target_line.parentNode); |
|
245 | 250 | }catch(e){} |
|
246 | 251 | } |
|
247 | 252 | } |
|
248 | 253 | }) |
|
249 | 254 | |
|
250 | 255 | </script> |
|
251 | 256 | </div> |
|
252 | 257 | </%def> |
@@ -1,66 +1,70 b'' | |||
|
1 | 1 | ##usage: |
|
2 | 2 | ## <%namespace name="comment" file="/changeset/changeset_file_comment.html"/> |
|
3 | 3 | ## ${comment.comment_block(co)} |
|
4 | 4 | ## |
|
5 | 5 | <%def name="comment_block(co)"> |
|
6 | 6 | <div class="comment" id="comment-${co.comment_id}"> |
|
7 | <div class="comment-wrapp"> | |
|
7 | 8 | <div class="meta"> |
|
8 | 9 | <span class="user"> |
|
9 | 10 | <img src="${h.gravatar_url(co.author.email, 20)}" /> |
|
10 | 11 | ${co.author.username} |
|
11 | 12 | </span> |
|
12 | 13 | <a href="${h.url.current(anchor='comment-%s' % co.comment_id)}"> ${_('commented on')} </a> |
|
13 | 14 | ${h.short_id(co.revision)} |
|
14 | 15 | %if co.f_path: |
|
15 | 16 | ${_(' in file ')} |
|
16 | 17 | ${co.f_path}:L ${co.line_no} |
|
17 | 18 | %endif |
|
18 | 19 | <span class="date"> |
|
19 | 20 | ${h.age(co.modified_at)} |
|
20 | 21 | </span> |
|
21 | 22 | </div> |
|
22 | 23 | <div class="text"> |
|
23 | 24 | %if h.HasPermissionAny('hg.admin', 'repository.admin')() or co.author.user_id == c.rhodecode_user.user_id: |
|
24 | 25 | <div class="buttons"> |
|
25 | 26 | <span onClick="deleteComment(${co.comment_id})" class="delete-comment ui-btn">${_('Delete')}</span> |
|
26 | 27 | </div> |
|
27 | 28 | %endif |
|
28 | 29 | ${h.rst_w_mentions(co.text)|n} |
|
29 | 30 | </div> |
|
31 | </div> | |
|
30 | 32 | </div> |
|
31 | 33 | </%def> |
|
32 | 34 | |
|
33 | 35 | |
|
34 | 36 | |
|
35 | 37 | <%def name="comment_inline_form()"> |
|
36 | 38 | <div id='comment-inline-form-template' style="display:none"> |
|
37 | 39 | <div class="comment-inline-form"> |
|
38 | 40 | %if c.rhodecode_user.username != 'default': |
|
39 | 41 | ${h.form(h.url('changeset_comment', repo_name=c.repo_name, revision=c.changeset.raw_id))} |
|
40 | 42 | <div class="clearfix"> |
|
41 |
<div class="comment-help">${_('Commenting on line')} {1} ${_(' |
|
|
42 |
<a href="${h.url('rst_help')}">RST</a> ${_('syntax')} |
|
|
43 | <textarea id="text_{1}" name="text"></textarea> | |
|
43 | <div class="comment-help">${_('Commenting on line')} {1}. ${_('Comments parsed using')} | |
|
44 | <a href="${h.url('rst_help')}">RST</a> ${_('syntax')} ${_('with')} | |
|
45 | <span style="color:#003367" class="tooltip" title="${_('Use @username inside this text to send notification to this RhodeCode user')}">@mention</span> ${_('support')} | |
|
46 | </div> | |
|
47 | <textarea id="text_{1}" name="text"></textarea> | |
|
44 | 48 | </div> |
|
45 | 49 | <div class="comment-button"> |
|
46 | 50 | <input type="hidden" name="f_path" value="{0}"> |
|
47 | 51 | <input type="hidden" name="line" value="{1}"> |
|
48 | 52 | ${h.submit('save', _('Comment'), class_='ui-btn')} |
|
49 | 53 | ${h.reset('hide-inline-form', _('Hide'), class_='ui-btn hide-inline-form')} |
|
50 | 54 | </div> |
|
51 | 55 | ${h.end_form()} |
|
52 | 56 | %else: |
|
53 | 57 | ${h.form('')} |
|
54 | 58 | <div class="clearfix"> |
|
55 | 59 | <div class="comment-help"> |
|
56 | 60 | ${'You need to be logged in to comment.'} <a href="${h.url('login_home',came_from=h.url.current())}">${_('Login now')}</a> |
|
57 | 61 | </div> |
|
58 | 62 | </div> |
|
59 | 63 | <div class="comment-button"> |
|
60 | 64 | ${h.reset('hide-inline-form', _('Hide'), class_='ui-btn hide-inline-form')} |
|
61 | 65 | </div> |
|
62 | 66 | ${h.end_form()} |
|
63 | 67 | %endif |
|
64 | 68 | </div> |
|
65 | 69 | </div> |
|
66 | 70 | </%def> No newline at end of file |
|
1 | NO CONTENT: file was removed |
General Comments 0
You need to be logged in to leave comments.
Login now