Skip to content

Commit 2568107

Browse files
committedOct 27, 2016
Build css
1 parent d1fedcd commit 2568107

File tree

1 file changed

+321
-1405
lines changed

1 file changed

+321
-1405
lines changed
 

‎stylesheets/application.css

+321-1,405
Original file line numberDiff line numberDiff line change
@@ -6,1419 +6,335 @@
66
* @see https://github.com/makotokw/redmine-theme-gitmike
77
* @license GPL3 License
88
*/
9-
/* line 10, ../sass/application.scss */
10-
body {
11-
color: #333;
12-
background-color: white;
13-
}
14-
15-
/* line 15, ../sass/application.scss */
16-
body, input, select, textarea, button {
17-
font: 12px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
18-
line-height: 1.4;
19-
}
20-
21-
/* line 20, ../sass/application.scss */
22-
tt, code, pre {
23-
font-family: Consolas, "Liberation Mono", Courier, monospace;
24-
font-size: 12px;
25-
}
26-
27-
/* line 25, ../sass/application.scss */
28-
#content h1, h2, h3, h4 {
29-
color: #333;
30-
}
31-
32-
/* line 29, ../sass/application.scss */
33-
#header {
34-
background-color: #fafafa;
35-
border-bottom: 1px solid #eee;
36-
padding: 4px 8px 10px 6px;
37-
height: auto;
38-
}
39-
/* line 33, ../sass/application.scss */
40-
#header a {
41-
color: #4183C4;
42-
}
43-
/* line 36, ../sass/application.scss */
44-
#header > h1 {
45-
background: url(../images/logo.png) no-repeat 10px 5px;
46-
padding: 5px 45px;
47-
color: #393939;
48-
}
49-
50-
@media only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
51-
/* line 48, ../sass/application.scss */
52-
#header > h1 {
53-
background: url(../images/logo@2x.png) no-repeat 10px 5px;
54-
background-size: 30px 30px;
55-
}
56-
}
57-
/* line 55, ../sass/application.scss */
58-
#main {
59-
margin: 15px 15px 0 15px;
60-
background-color: white;
61-
}
62-
63-
/* line 60, ../sass/application.scss */
64-
#top-menu {
65-
font: 12px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
66-
padding: 10px 10px 2px 20px;
67-
background-color: #f3f3f3;
68-
background-image: -webkit-linear-gradient(#f9f9f9, #f3f3f3);
69-
background-image: linear-gradient(#f9f9f9, #f3f3f3);
70-
background-repeat: repeat-x;
71-
text-shadow: 0 1px 0 #fff;
72-
border-bottom: 1px solid #e5e5e5;
73-
}
74-
/* line 65, ../sass/application.scss */
75-
#top-menu #loggedas {
76-
color: #222;
77-
}
78-
/* line 68, ../sass/application.scss */
79-
#top-menu a {
80-
color: #333;
81-
font-weight: bold;
82-
padding: 5px;
83-
margin-right: 0;
84-
-webkit-transition: color .15s ease-in;
85-
transition: color .15s ease-in;
86-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
87-
}
88-
/* line 76, ../sass/application.scss */
89-
#top-menu a:hover {
90-
color: #4183C4;
91-
text-decoration: none;
92-
}
93-
94-
/* line 84, ../sass/application.scss */
95-
div.flash {
96-
border: 1px solid;
97-
text-shadow: 0 1px white;
98-
}
99-
/* line 88, ../sass/application.scss */
100-
div#content > div.flash {
101-
border: 0 solid;
102-
padding: 10px 35px 10px;
103-
margin: -6px -10px 6px -10px;
104-
background-position-x: 12px !important;
105-
background-position-y: 9px !important;
106-
position: relative;
107-
border-bottom: 1px solid #AECCD7;
108-
}
109-
/* line 89, ../sass/application.scss */
110-
div#content > div.flash:first-child {
111-
border-top-left-radius: 4px;
112-
border-top-right-radius: 4px;
113-
border-bottom-left-radius: 0;
114-
border-bottom-right-radius: 0;
115-
}
116-
117-
/* line 105, ../sass/application.scss */
118-
#errorExplanation,
119-
div.flash,
120-
.nodata,
121-
.warning,
122-
.conflict {
123-
padding: 8px 35px 8px 30px;
124-
margin-bottom: 20px;
125-
font-size: 1.1em;
126-
border: 1px solid;
127-
border-radius: 4px;
128-
}
129-
130-
/* line 117, ../sass/application.scss */
131-
#errorExplanation,
132-
.nodata,
133-
.warning {
134-
background-color: #fcf8e3;
135-
border: 1px solid #fbeed5;
136-
color: #c09853;
137-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
138-
}
139-
140-
/* line 127, ../sass/application.scss */
141-
div.filters h2 .scope_title a {
142-
color: #444;
143-
}
144-
/* line 130, ../sass/application.scss */
145-
div#content {
146-
margin-right: 300px;
147-
width: auto;
148-
}
149-
/* line 134, ../sass/application.scss */
150-
div#main.nosidebar div#content {
151-
margin-right: 0;
152-
}
153-
154-
/* line 139, ../sass/application.scss */
155-
#sidebar {
156-
width: 260px !important;
157-
padding: 0 10px 20px 15px !important;
158-
background: whiteSmoke;
159-
border: 1px solid #ddd;
160-
zoom: 1;
161-
border-radius: 4px;
162-
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
163-
}
164-
165-
/* line 151, ../sass/application.scss */
166-
div#content > h2, div#content h2.contacts_header {
167-
border-bottom: 1px solid #d8e6ec;
168-
background: #E6F1F6;
169-
text-shadow: 0 1px white;
170-
border-top-left-radius: 2px;
171-
border-top-right-radius: 2px;
172-
padding: 8px 20px;
173-
margin: -6px -10px 10px;
174-
}
175-
/* line 161, ../sass/application.scss */
176-
div#content > div.filters h2, div#content > #add-news > h2, div#content > #add-message > h2, div#content > #add-document > h2 {
177-
border-bottom: 1px solid #C5D5DD;
178-
background: #E6F1F6;
179-
text-shadow: 0 1px white;
180-
border-top-left-radius: 4px;
181-
border-top-right-radius: 4px;
182-
padding: 8px 20px;
183-
margin: -6px -10px 10px;
184-
}
185-
186-
/* line 173, ../sass/application.scss */
187-
.controller-boards.action-index #add-message {
188-
position: static;
189-
}
190-
/* line 175, ../sass/application.scss */
191-
.controller-boards.action-index #add-message #message-form > p {
192-
position: relative;
193-
padding: 10px;
194-
background-color: white;
195-
margin: -10px;
196-
border-bottom: 1px solid #AECCD7;
197-
}
198-
199-
/* line 185, ../sass/application.scss */
200-
.controller-timelog.action-index div#content h2, .controller-time_entry_reports.action-report div#content h2, .controller-boards.action-show div#content h2, .controller-messages.action-show div#content h2, .controller-boards.action-show div#content div#add-message h2 {
201-
border-top-left-radius: 0;
202-
border-top-right-radius: 0;
203-
border-top: 1px solid #AECCD7;
204-
/*padding: 9px 20px 12px;*/
205-
margin: -2px -10px 10px;
206-
}
207-
208-
/* line 193, ../sass/application.scss */
209-
.controller-timelog.action-index div#content .contextual, .controller-time_entry_reports.action-report div#content .contextual {
210-
margin-top: 50px;
211-
}
212-
213-
/* line 197, ../sass/application.scss */
214-
#add-news, #add-message, #add-document {
215-
margin-bottom: 20px;
216-
}
217-
218-
/* line 201, ../sass/application.scss */
219-
div#content h2.contacts_header {
220-
padding-bottom: 10px;
221-
/* white-space: nowrap;*/
222-
}
223-
224-
/* line 206, ../sass/application.scss */
225-
p.breadcrumb {
226-
margin: 4px 0 14px 0;
227-
}
228-
229-
/* line 210, ../sass/application.scss */
230-
div#content > div.contextual {
231-
margin-top: 10px;
232-
margin-right: 10px;
233-
}
234-
235-
/* line 215, ../sass/application.scss */
236-
#roadmap {
237-
margin: 10px;
238-
}
239-
240-
/* line 219, ../sass/application.scss */
241-
p.subtitle {
242-
margin: 0 0 12px 0;
243-
}
244-
245-
/* line 223, ../sass/application.scss */
246-
.contextual a {
247-
color: #888;
248-
}
249-
/* line 225, ../sass/application.scss */
250-
.contextual a:link, .contextual a:visited {
251-
color: #888;
252-
}
253-
/* line 228, ../sass/application.scss */
254-
.contextual a:hover, .contextual a:visited:hover {
255-
color: #333;
256-
}
257-
258-
/* line 233, ../sass/application.scss */
259-
div.filters h2 .scope_title a {
260-
color: #222;
261-
text-decoration: none;
262-
}
263-
264-
/* line 238, ../sass/application.scss */
265-
#header {
266-
padding-top: 10px;
267-
padding-left: 10px;
268-
background-position-y: 11%;
269-
}
270-
271-
/* line 245, ../sass/application.scss */
272-
div#welcome-store-content h1, div#welcome-store-content h2, div#welcome-store-content h3, div#welcome-store-content h4 {
273-
color: #222;
274-
}
275-
276-
/* line 250, ../sass/application.scss */
277-
#content, #main.nosidebar #content {
278-
background: #fff;
279-
border: 1px solid #ddd;
280-
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
281-
border-radius: 4px;
282-
}
283-
284-
/* line 257, ../sass/application.scss */
285-
a {
286-
color: #4183C4;
287-
}
288-
/* line 260, ../sass/application.scss */
289-
a:link, a:visited {
290-
color: #4183C4;
291-
}
292-
293-
/* line 267, ../sass/application.scss */
294-
div.issue {
295-
background: #FFD;
296-
padding: 20px;
297-
margin-bottom: 6px;
298-
border: 1px solid #ddd;
299-
margin: -11px -11px 15px -11px;
300-
}
301-
/* line 273, ../sass/application.scss */
302-
div.issue.tooltip {
303-
padding: 6px;
304-
margin: 0 0 6px 0;
305-
}
306-
/* line 278, ../sass/application.scss */
307-
div.contact.details, div.deal.details {
308-
padding: 15px !important;
309-
margin: -11px -11px 6px;
310-
}
311-
312-
/* line 284, ../sass/application.scss */
313-
#sidebar h3 {
314-
color: #222;
315-
}
316-
317-
/* line 288, ../sass/application.scss */
318-
#footer {
319-
background-color: #F8F8F8;
320-
border: 0;
321-
border-top: 1px solid #E0E0E0;
322-
color: #636363;
323-
margin-top: 45px;
324-
padding: 15px;
325-
}
326-
/* line 298, ../sass/application.scss */
327-
#footer .bgl .bgr:after {
328-
content: " and gitmike theme";
329-
}
330-
331-
/* line 307, ../sass/application.scss */
332-
h2, h3, h4 {
333-
border-bottom: 0;
334-
}
335-
336-
/* line 312, ../sass/application.scss */
337-
.wiki h1, .wiki h2, .wiki h3 {
338-
border-bottom: 0;
339-
}
340-
/* line 316, ../sass/application.scss */
341-
.wiki.wiki-page h1 {
342-
border-bottom: 1px solid #ccc;
343-
}
344-
/* line 319, ../sass/application.scss */
345-
.wiki.wiki-page > h2 {
346-
border-bottom: 1px solid #ccc;
347-
padding-bottom: 6px;
348-
}
349-
350-
/* line 3, ../sass/_mainmenu.scss */
351-
#main-menu {
352-
left: 0;
353-
width: 100%;
354-
background: #FAFAFA;
355-
background: -webkit-linear-gradient(top, #fafafa, #eaeaea);
356-
background: linear-gradient(to bottom, #fafafa, #eaeaea);
357-
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa',endColorstr='#eaeaea')";
358-
border: 1px solid #EAEAEA;
359-
border-bottom-color: #CACACA;
360-
border-radius: 3px;
361-
margin-right: 0;
362-
position: relative;
363-
}
364-
/* line 18, ../sass/_mainmenu.scss */
365-
#main-menu ul {
366-
*zoom: 1;
367-
margin-top: 0;
368-
padding-left: 0;
369-
background-color: transparent !important;
370-
}
371-
/* line 14, ../sass/_mixins.scss */
372-
#main-menu ul:before, #main-menu ul:after {
373-
display: table;
374-
content: "";
375-
line-height: 0;
376-
}
377-
/* line 22, ../sass/_mixins.scss */
378-
#main-menu ul:after {
379-
clear: both;
380-
}
381-
/* line 26, ../sass/_mainmenu.scss */
382-
#main-menu ul .menu-children {
383-
background: #fff !important;
384-
border: 1px solid #EAEAEA;
385-
border-bottom-color: #CACACA;
386-
z-index: 45;
387-
}
388-
/* line 36, ../sass/_mainmenu.scss */
389-
#main-menu ul .menu-children li a {
390-
border-bottom: none;
391-
}
392-
/* line 38, ../sass/_mainmenu.scss */
393-
#main-menu ul .menu-children li a:hover {
394-
color: #4183C4;
395-
background: none;
396-
border-bottom: none;
397-
}
398-
/* line 47, ../sass/_mainmenu.scss */
399-
#main-menu ul li {
400-
margin: 0;
401-
padding: 0;
402-
}
403-
/* line 51, ../sass/_mainmenu.scss */
404-
#main-menu ul li a {
405-
background-color: transparent !important;
406-
display: block;
407-
padding: 10px 12px;
408-
color: #333;
409-
text-shadow: 0 1px 0 #fff;
410-
font-weight: bold;
411-
text-decoration: none;
412-
border-bottom: 2px solid #DADADA;
413-
height: 20px;
414-
line-height: 20px;
415-
}
416-
/* line 63, ../sass/_mainmenu.scss */
417-
#main-menu ul li a.selected {
418-
color: #000;
419-
border-bottom: 2px solid #D26911 !important;
420-
background-color: #ebebeb;
421-
background-image: -webkit-linear-gradient(#fcfcfc, #ebebeb);
422-
background-image: linear-gradient(#fcfcfc, #ebebeb);
423-
background-repeat: repeat-x;
424-
}
425-
/* line 69, ../sass/_mainmenu.scss */
426-
#main-menu ul li a.selected:hover {
427-
color: #000;
428-
}
429-
/* line 73, ../sass/_mainmenu.scss */
430-
#main-menu ul li a:hover {
431-
color: #4183C4;
432-
}
433-
434-
/* line 5, ../sass/_tables.scss */
435-
table.list tbody td, table.list tbody tr:hover td {
436-
border: solid 1px #ddd;
437-
}
438-
/* line 9, ../sass/_tables.scss */
439-
table.list thead th {
440-
border-width: 1px;
441-
border-style: solid;
442-
border-top-color: #ddd;
443-
border-right-color: #ddd;
444-
border-left-color: #ddd;
445-
border-bottom-color: #ddd;
446-
}
447-
448-
/* line 19, ../sass/_tables.scss */
449-
.tabular label {
450-
padding-top: 4px;
451-
}
452-
453-
/* line 23, ../sass/_tables.scss */
454-
tr.assigned-to-me td.assigned_to,
455-
tr.created-by-me td.author {
456-
font-weight: bold;
457-
}
458-
459-
/* line 30, ../sass/_tables.scss */
460-
#quick-search {
461-
margin-top: 8px;
462-
}
463-
464-
/* line 37, ../sass/_tables.scss */
465-
table.list td {
466-
padding: 4px;
467-
}
468-
/* line 40, ../sass/_tables.scss */
469-
table.list input[type="checkbox"] {
470-
margin-top: 6px;
471-
}
472-
/* line 46, ../sass/_tables.scss */
473-
table.list tbody tr:hover {
474-
background-color: #EFF5F8;
475-
}
476-
/* line 51, ../sass/_tables.scss */
477-
table.list tbody tr.group span.count {
478-
display: inline-block;
479-
padding: 2px 5px;
480-
font: 12px Helvetica, arial, freesans, clean, sans-serif;
481-
font-weight: bold;
482-
line-height: 1;
483-
color: #555;
484-
background-color: #eee;
485-
border-radius: 20px;
486-
}
487-
/* line 64, ../sass/_tables.scss */
488-
table.list tr.issue a {
489-
color: #666;
490-
}
9+
body { color: #333; background-color: white; }
10+
11+
body, input, select, textarea, button { font: 12px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; line-height: 1.4; }
12+
13+
tt, code, pre { font-family: Consolas, "Liberation Mono", Courier, monospace; font-size: 12px; }
14+
15+
#content h1, h2, h3, h4 { color: #333; }
16+
17+
#header { background-color: #fafafa; border-bottom: 1px solid #eee; padding: 4px 8px 10px 6px; height: auto; }
18+
#header a { color: #4183C4; }
19+
#header > h1 { background: url(../images/logo.png) no-repeat 10px 5px; padding: 5px 45px; color: #393939; }
20+
21+
@media only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) { #header > h1 { background: url(../images/logo@2x.png) no-repeat 10px 5px; background-size: 30px 30px; } }
22+
#main { margin: 15px 15px 0 15px; background-color: white; }
23+
24+
#top-menu { font: 12px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; padding: 10px 10px 2px 20px; background-color: #f3f3f3; background-image: -webkit-linear-gradient(#f9f9f9, #f3f3f3); background-image: linear-gradient(#f9f9f9, #f3f3f3); background-repeat: repeat-x; text-shadow: 0 1px 0 #fff; border-bottom: 1px solid #e5e5e5; }
25+
#top-menu #loggedas { color: #222; }
26+
#top-menu a { color: #333; font-weight: bold; padding: 5px; margin-right: 0; -webkit-transition: color .15s ease-in; transition: color .15s ease-in; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }
27+
#top-menu a:hover { color: #4183C4; text-decoration: none; }
28+
29+
div.flash { border: 1px solid; text-shadow: 0 1px white; }
30+
div#content > div.flash { border: 0 solid; padding: 10px 35px 10px; margin: -6px -10px 6px -10px; background-position-x: 12px !important; background-position-y: 9px !important; position: relative; border-bottom: 1px solid #AECCD7; }
31+
div#content > div.flash:first-child { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
32+
33+
#errorExplanation, div.flash, .nodata, .warning, .conflict { padding: 8px 35px 8px 30px; margin-bottom: 20px; font-size: 1.1em; border: 1px solid; border-radius: 4px; }
34+
35+
#errorExplanation, .nodata, .warning { background-color: #fcf8e3; border: 1px solid #fbeed5; color: #c09853; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }
36+
37+
div.filters h2 .scope_title a { color: #444; }
38+
div#content { margin-right: 300px; width: auto; }
39+
div#main.nosidebar div#content { margin-right: 0; }
40+
41+
#sidebar { width: 260px !important; padding: 0 10px 20px 15px !important; background: whiteSmoke; border: 1px solid #ddd; zoom: 1; border-radius: 4px; box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05); }
42+
43+
div#content > h2, div#content h2.contacts_header { border-bottom: 1px solid #d8e6ec; background: #E6F1F6; text-shadow: 0 1px white; border-top-left-radius: 2px; border-top-right-radius: 2px; padding: 8px 20px; margin: -6px -10px 10px; }
44+
div#content > div.filters h2, div#content > #add-news > h2, div#content > #add-message > h2, div#content > #add-document > h2 { border-bottom: 1px solid #C5D5DD; background: #E6F1F6; text-shadow: 0 1px white; border-top-left-radius: 4px; border-top-right-radius: 4px; padding: 8px 20px; margin: -6px -10px 10px; }
45+
46+
.controller-boards.action-index #add-message { position: static; }
47+
.controller-boards.action-index #add-message #message-form > p { position: relative; padding: 10px; background-color: white; margin: -10px; border-bottom: 1px solid #AECCD7; }
48+
49+
.controller-timelog.action-index div#content h2, .controller-time_entry_reports.action-report div#content h2, .controller-boards.action-show div#content h2, .controller-messages.action-show div#content h2, .controller-boards.action-show div#content div#add-message h2 { border-top-left-radius: 0; border-top-right-radius: 0; border-top: 1px solid #AECCD7; /*padding: 9px 20px 12px;*/ margin: -2px -10px 10px; }
50+
51+
.controller-timelog.action-index div#content .contextual, .controller-time_entry_reports.action-report div#content .contextual { margin-top: 50px; }
52+
53+
#add-news, #add-message, #add-document { margin-bottom: 20px; }
54+
55+
div#content h2.contacts_header { padding-bottom: 10px; /* white-space: nowrap;*/ }
56+
57+
p.breadcrumb { margin: 4px 0 14px 0; }
58+
59+
div#content > div.contextual { margin-top: 10px; margin-right: 10px; }
60+
61+
#roadmap { margin: 10px; }
62+
63+
p.subtitle { margin: 0 0 12px 0; }
64+
65+
.contextual a { color: #888; }
66+
.contextual a:link, .contextual a:visited { color: #888; }
67+
.contextual a:hover, .contextual a:visited:hover { color: #333; }
68+
69+
div.filters h2 .scope_title a { color: #222; text-decoration: none; }
70+
71+
#header { padding-top: 10px; padding-left: 10px; background-position-y: 11%; }
72+
73+
div#welcome-store-content h1, div#welcome-store-content h2, div#welcome-store-content h3, div#welcome-store-content h4 { color: #222; }
74+
75+
#content, #main.nosidebar #content { background: #fff; border: 1px solid #ddd; box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05); border-radius: 4px; }
76+
77+
a { color: #4183C4; }
78+
a:link, a:visited { color: #4183C4; }
79+
80+
div.issue { background: #FFD; padding: 20px; margin-bottom: 6px; border: 1px solid #ddd; margin: -11px -11px 15px -11px; }
81+
div.issue.tooltip { padding: 6px; margin: 0 0 6px 0; }
82+
div.contact.details, div.deal.details { padding: 15px !important; margin: -11px -11px 6px; }
83+
84+
#sidebar h3 { color: #222; }
85+
86+
#footer { background-color: #F8F8F8; border: 0; border-top: 1px solid #E0E0E0; color: #636363; margin-top: 45px; padding: 15px; }
87+
#footer .bgl .bgr:after { content: " and gitmike theme"; }
88+
89+
h2, h3, h4 { border-bottom: 0; }
90+
91+
.wiki h1, .wiki h2, .wiki h3 { border-bottom: 0; }
92+
.wiki.wiki-page h1 { border-bottom: 1px solid #ccc; }
93+
.wiki.wiki-page > h2 { border-bottom: 1px solid #ccc; padding-bottom: 6px; }
94+
95+
#main-menu { left: 0; width: 100%; background: #FAFAFA; background: -webkit-linear-gradient(top, #fafafa, #eaeaea); background: linear-gradient(to bottom, #fafafa, #eaeaea); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa',endColorstr='#eaeaea')"; border: 1px solid #EAEAEA; border-bottom-color: #CACACA; border-radius: 3px; margin-right: 0; position: relative; }
96+
#main-menu ul { *zoom: 1; margin-top: 0; padding-left: 0; background-color: transparent !important; }
97+
#main-menu ul:before, #main-menu ul:after { display: table; content: ""; line-height: 0; }
98+
#main-menu ul:after { clear: both; }
99+
#main-menu ul .menu-children { background: #fff !important; border: 1px solid #EAEAEA; border-bottom-color: #CACACA; z-index: 45; }
100+
#main-menu ul .menu-children li a { border-bottom: none; }
101+
#main-menu ul .menu-children li a:hover { color: #4183C4; background: none; border-bottom: none; }
102+
#main-menu ul li { margin: 0; padding: 0; }
103+
#main-menu ul li a { background-color: transparent !important; display: block; padding: 10px 12px; color: #333; text-shadow: 0 1px 0 #fff; font-weight: bold; text-decoration: none; border-bottom: 2px solid #DADADA; height: 20px; line-height: 20px; }
104+
#main-menu ul li a.selected { color: #000; border-bottom: 2px solid #D26911 !important; background-color: #ebebeb; background-image: -webkit-linear-gradient(#fcfcfc, #ebebeb); background-image: linear-gradient(#fcfcfc, #ebebeb); background-repeat: repeat-x; }
105+
#main-menu ul li a.selected:hover { color: #000; }
106+
#main-menu ul li a:hover { color: #4183C4; }
107+
108+
table.list tbody td, table.list tbody tr:hover td { border: solid 1px #ddd; }
109+
table.list thead th { border-width: 1px; border-style: solid; border-top-color: #ddd; border-right-color: #ddd; border-left-color: #ddd; border-bottom-color: #ddd; }
110+
111+
.tabular label { padding-top: 4px; }
112+
113+
tr.assigned-to-me td.assigned_to, tr.created-by-me td.author { font-weight: bold; }
114+
115+
#quick-search { margin-top: 8px; }
116+
117+
table.list td { padding: 4px; }
118+
table.list input[type="checkbox"] { margin-top: 6px; }
119+
table.list tbody tr:hover { background-color: #EFF5F8; }
120+
table.list tbody tr.group span.count { display: inline-block; padding: 2px 5px; font: 12px Helvetica, arial, freesans, clean, sans-serif; font-weight: bold; line-height: 1; color: #555; background-color: #eee; border-radius: 20px; }
121+
table.list tr.issue a { color: #666; }
491122

492123
/*tr.odd {background-color: transparent;}
493124
tr.even {background-color: transparent;}
494125
table.list th {background-color: transparent;}*/
495-
/* line 74, ../sass/_tables.scss */
496-
tr.odd.priority-highest, table.list tbody tr.odd.priority-highest:hover {
497-
color: #900;
498-
font-weight: bold;
499-
}
500-
501-
/* line 80, ../sass/_tables.scss */
502-
tr.odd.priority-highest {
503-
background: #ffc4c4;
504-
}
505-
/* line 83, ../sass/_tables.scss */
506-
tr.even.priority-highest {
507-
color: #900;
508-
font-weight: bold;
509-
}
510-
511-
/* line 89, ../sass/_tables.scss */
512-
table.list tbody tr.even.priority-highest:hover {
513-
color: #900;
514-
font-weight: bold;
515-
}
516-
517-
/* line 95, ../sass/_tables.scss */
518-
tr.even.priority-highest {
519-
background: #ffd4d4;
520-
}
521-
/* line 99, ../sass/_tables.scss */
522-
tr.priority-highest a, tr.priority-highest:hover a {
523-
color: #900;
524-
}
525-
/* line 103, ../sass/_tables.scss */
526-
tr.odd.priority-highest td, tr.even.priority-highest td {
527-
border-color: #ffb4b4;
528-
}
529-
/* line 106, ../sass/_tables.scss */
530-
tr.odd.priority-high2 {
531-
color: #900;
532-
}
533-
534-
/* line 111, ../sass/_tables.scss */
535-
table.list tbody tr.odd.priority-high2:hover {
536-
color: #900;
537-
}
538-
539-
/* line 116, ../sass/_tables.scss */
540-
tr.odd.priority-high2 {
541-
background: #ffc4c4;
542-
}
543-
/* line 119, ../sass/_tables.scss */
544-
tr.even.priority-high2 {
545-
color: #900;
546-
}
547-
548-
/* line 124, ../sass/_tables.scss */
549-
table.list tbody tr.even.priority-high2:hover {
550-
color: #900;
551-
}
552-
553-
/* line 129, ../sass/_tables.scss */
554-
tr.even.priority-high2 {
555-
background: #ffd4d4;
556-
}
557-
/* line 132, ../sass/_tables.scss */
558-
tr.priority-high2 a {
559-
color: #900;
560-
}
561-
/* line 135, ../sass/_tables.scss */
562-
tr.odd.priority-high2 td, tr.even.priority-high2 td {
563-
border-color: #ffb4b4;
564-
}
565-
/* line 138, ../sass/_tables.scss */
566-
tr.odd.priority-high3 {
567-
color: #900;
568-
}
569-
570-
/* line 143, ../sass/_tables.scss */
571-
table.list tbody tr.odd.priority-high3:hover {
572-
color: #900;
573-
}
574-
575-
/* line 148, ../sass/_tables.scss */
576-
tr.odd.priority-high3 {
577-
background: #fee;
578-
}
579-
/* line 151, ../sass/_tables.scss */
580-
tr.even.priority-high3 {
581-
color: #900;
582-
}
583-
584-
/* line 156, ../sass/_tables.scss */
585-
table.list tbody tr.even.priority-high3:hover {
586-
color: #900;
587-
}
588-
589-
/* line 161, ../sass/_tables.scss */
590-
tr.even.priority-high3 {
591-
background: #fff2f2;
592-
}
593-
/* line 164, ../sass/_tables.scss */
594-
tr.priority-high3 a {
595-
color: #900;
596-
}
597-
/* line 167, ../sass/_tables.scss */
598-
tr.odd.priority-high3 td, tr.even.priority-high3 td {
599-
border-color: #fcc;
600-
}
601-
/* line 170, ../sass/_tables.scss */
602-
tr.odd.priority-lowest {
603-
color: #559;
604-
}
605-
606-
/* line 175, ../sass/_tables.scss */
607-
table.list tbody tr.odd.priority-lowest:hover {
608-
color: #559;
609-
}
610-
611-
/* line 180, ../sass/_tables.scss */
612-
tr.odd.priority-lowest {
613-
background: #eaf7ff;
614-
}
615-
/* line 183, ../sass/_tables.scss */
616-
tr.even.priority-lowest {
617-
color: #559;
618-
}
619-
620-
/* line 188, ../sass/_tables.scss */
621-
table.list tbody tr.even.priority-lowest:hover {
622-
color: #559;
623-
}
624-
625-
/* line 193, ../sass/_tables.scss */
626-
tr.even.priority-lowest {
627-
background: #f2faff;
628-
}
629-
/* line 196, ../sass/_tables.scss */
630-
tr.priority-lowest a {
631-
color: #559;
632-
}
633-
/* line 199, ../sass/_tables.scss */
634-
tr.odd.priority-lowest td, tr.even.priority-lowest td {
635-
border-color: #add7f3;
636-
}
126+
tr.odd.priority-highest, table.list tbody tr.odd.priority-highest:hover { color: #900; font-weight: bold; }
127+
128+
tr.odd.priority-highest { background: #ffc4c4; }
129+
tr.even.priority-highest { color: #900; font-weight: bold; }
130+
131+
table.list tbody tr.even.priority-highest:hover { color: #900; font-weight: bold; }
132+
133+
tr.even.priority-highest { background: #ffd4d4; }
134+
tr.priority-highest a, tr.priority-highest:hover a { color: #900; }
135+
tr.odd.priority-highest td, tr.even.priority-highest td { border-color: #ffb4b4; }
136+
tr.odd.priority-high2 { color: #900; }
137+
138+
table.list tbody tr.odd.priority-high2:hover { color: #900; }
139+
140+
tr.odd.priority-high2 { background: #ffc4c4; }
141+
tr.even.priority-high2 { color: #900; }
142+
143+
table.list tbody tr.even.priority-high2:hover { color: #900; }
144+
145+
tr.even.priority-high2 { background: #ffd4d4; }
146+
tr.priority-high2 a { color: #900; }
147+
tr.odd.priority-high2 td, tr.even.priority-high2 td { border-color: #ffb4b4; }
148+
tr.odd.priority-high3 { color: #900; }
149+
150+
table.list tbody tr.odd.priority-high3:hover { color: #900; }
151+
152+
tr.odd.priority-high3 { background: #fee; }
153+
tr.even.priority-high3 { color: #900; }
154+
155+
table.list tbody tr.even.priority-high3:hover { color: #900; }
156+
157+
tr.even.priority-high3 { background: #fff2f2; }
158+
tr.priority-high3 a { color: #900; }
159+
tr.odd.priority-high3 td, tr.even.priority-high3 td { border-color: #fcc; }
160+
tr.odd.priority-lowest { color: #559; }
161+
162+
table.list tbody tr.odd.priority-lowest:hover { color: #559; }
163+
164+
tr.odd.priority-lowest { background: #eaf7ff; }
165+
tr.even.priority-lowest { color: #559; }
166+
167+
table.list tbody tr.even.priority-lowest:hover { color: #559; }
168+
169+
tr.even.priority-lowest { background: #f2faff; }
170+
tr.priority-lowest a { color: #559; }
171+
tr.odd.priority-lowest td, tr.even.priority-lowest td { border-color: #add7f3; }
637172

638173
/*input[type="button"], input[type="submit"], input[type="reset"] { background-color: #f2f2f2; color: #222222; border: 1px outset #cccccc; }
639174
input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover { background-color: #ccccbb; }
640175
*/
641-
/* line 34, ../sass/_forms.scss */
642-
.button, input[type="submit"] {
643-
position: relative;
644-
display: inline-block;
645-
padding: 5px 11px;
646-
font-weight: bold;
647-
color: #333;
648-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
649-
white-space: nowrap;
650-
background-color: #eaeaea;
651-
background-repeat: repeat-x;
652-
background-image: -webkit-linear-gradient(#fafafa, #eaeaea);
653-
background-image: linear-gradient(#fafafa, #eaeaea);
654-
border-radius: 3px;
655-
border: 1px solid #ddd;
656-
border-bottom-color: #c4c4c4;
657-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
658-
vertical-align: middle;
659-
cursor: pointer;
660-
-webkit-user-select: none;
661-
-moz-user-select: none;
662-
-ms-user-select: none;
663-
user-select: none;
664-
-webkit-touch-callout: none;
665-
-webkit-appearance: none;
666-
}
667-
/* line 56, ../sass/_forms.scss */
668-
.button:hover, input[type="submit"]:hover {
669-
text-decoration: none;
670-
background-color: #dadada;
671-
background-image: -webkit-linear-gradient(#eaeaea, #dadada);
672-
background-image: linear-gradient(#eaeaea, #dadada);
673-
border-color: #ccc #ccc #b5b5b5;
674-
}
675-
/* line 63, ../sass/_forms.scss */
676-
.button:active, input[type="submit"]:active {
677-
background-color: #dadada;
678-
background-image: none;
679-
border-color: #b5b5b5;
680-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
681-
}
682-
/* line 70, ../sass/_forms.scss */
683-
.button:disabled, input[type="submit"]:disabled, .button:disabled:hover, input[type="submit"]:disabled:hover, .button[disabled], input[disabled][type="submit"], .button[disabled]:hover, input[disabled][type="submit"]:hover {
684-
opacity: .5;
685-
color: #666;
686-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
687-
background-image: none;
688-
background-color: #e5e5e5;
689-
border-color: #c5c5c5;
690-
cursor: default;
691-
box-shadow: none;
692-
}
693-
694-
/* line 85, ../sass/_forms.scss */
695-
.btn {
696-
display: inline-block;
697-
padding: 4px 12px;
698-
margin-bottom: 0;
699-
text-align: center;
700-
vertical-align: middle;
701-
cursor: pointer;
702-
color: #333;
703-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
704-
background-color: #a3a3a3;
705-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#999), to(#b3b3b3));
706-
background-image: -webkit-linear-gradient(top, #999, #b3b3b3);
707-
background-image: -webkit-linear-gradient(top, #999999, #b3b3b3);
708-
background-image: linear-gradient(to bottom, #999999, #b3b3b3);
709-
background-repeat: repeat-x;
710-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF999999', endColorstr='#FFB3B3B3', GradientType=0);
711-
border-color: #b3b3b3 #b3b3b3 #8c8c8c;
712-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
713-
*background-color: #b3b3b3;
714-
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
715-
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
716-
border: 1px solid #ddd;
717-
*border: 0;
718-
border-bottom-color: #c4c4c4;
719-
border-radius: 3px;
720-
*margin-left: .3em;
721-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
722-
}
723-
/* line 21, ../sass/_forms.scss */
724-
.btn:hover, .btn:focus, .btn:active, .btn.active, .btn.disabled, .btn[disabled] {
725-
color: #333;
726-
background-color: #b3b3b3;
727-
*background-color: #a6a6a6;
728-
}
729-
/* line 28, ../sass/_forms.scss */
730-
.btn:active, .btn.active {
731-
background-color: #999999 \9;
732-
}
733-
/* line 61, ../sass/_mixins.scss */
734-
.btn:first-child {
735-
*margin-left: 0;
736-
}
737-
/* line 102, ../sass/_forms.scss */
738-
.btn:hover, .btn:focus {
739-
color: #333;
740-
text-decoration: none;
741-
background-position: 0 -15px;
742-
-webkit-transition: background-position .1s linear;
743-
transition: background-position .1s linear;
744-
}
745-
/* line 114, ../sass/_forms.scss */
746-
.btn:focus {
747-
outline: thin dotted #333;
748-
outline: 5px auto -webkit-focus-ring-color;
749-
outline-offset: -2px;
750-
}
751-
/* line 119, ../sass/_forms.scss */
752-
.btn.active, .btn:active {
753-
background-image: none;
754-
outline: 0;
755-
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
756-
}
757-
/* line 127, ../sass/_forms.scss */
758-
.btn.disabled, .btn[disabled] {
759-
cursor: default;
760-
background-image: none;
761-
opacity: .65;
762-
box-shadow: none;
763-
}
764-
765-
/* line 139, ../sass/_forms.scss */
766-
input[type="text"], input[type="password"], input[type="email"], input[type="number"], input[type="tel"], input[type="url"], textarea, select {
767-
outline: none;
768-
padding: 3px 4px;
769-
background-color: #fff;
770-
border: 1px solid #ccc;
771-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
772-
border-radius: 3px;
773-
-webkit-transition: all 0.15s ease-in 0s;
774-
transition: all 0.15s ease-in 0s;
775-
vertical-align: middle;
776-
}
777-
/* line 149, ../sass/_forms.scss */
778-
#content input[type="text"], #content input[type="password"], #content input[type="email"], #content input[type="number"], #content input[type="tel"], #content input[type="url"], #content textarea, #content select {
779-
background-color: #fafafa;
780-
}
781-
/* line 153, ../sass/_forms.scss */
782-
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="url"]:focus, textarea:focus, select:focus {
783-
border-color: #51a7e8;
784-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(81, 167, 232, 0.5);
785-
}
786-
787-
/* line 164, ../sass/_forms.scss */
788-
input.autocomplete {
789-
padding-left: 20px;
790-
}
791-
/* line 167, ../sass/_forms.scss */
792-
input#issue_subject {
793-
width: 98%;
794-
}
795-
796-
/* line 173, ../sass/_forms.scss */
797-
textarea.wiki-edit {
798-
width: 98%;
799-
}
800-
801-
/* line 178, ../sass/_forms.scss */
802-
option {
803-
border-bottom: 1px dotted #ddd;
804-
}
805-
806-
/* line 184, ../sass/_forms.scss */
807-
.controller-messages.action-show .message {
808-
background: #EAF7FF;
809-
padding: 0 15px 10px;
810-
border: 1px solid silver;
811-
margin: -11px -11px 15px -11px;
812-
}
813-
/* line 185, ../sass/_forms.scss */
814-
.controller-messages.action-show .message.reply {
815-
padding: 0 10px;
816-
margin: -1px;
817-
background: white;
818-
border: 1px solid #D9D9D9;
819-
}
820-
/* line 195, ../sass/_forms.scss */
821-
.controller-messages.action-show .message .contextual {
822-
margin-top: 10px;
823-
}
824-
825-
/* line 200, ../sass/_forms.scss */
826-
.controller-boards p.breadcrumb {
827-
position: relative;
828-
background: white;
829-
border: 0 solid;
830-
padding: 9px 13px 10px;
831-
margin: -5px -10px 1px -10px;
832-
background-position-x: 12px !important;
833-
background-position-y: 9px !important;
834-
border-top-left-radius: 8px;
835-
border-top-right-radius: 8px;
836-
border-bottom: 1px solid #AECCD7;
837-
}
838-
839-
/* line 213, ../sass/_forms.scss */
840-
#add-news, #add-message, #add-document {
841-
background-color: white;
842-
position: relative;
843-
border-bottom: 1px solid #AECCD7;
844-
margin: -5px -10px 1px -10px;
845-
padding: 5px 10px 10px;
846-
border-top-left-radius: 8px;
847-
border-top-right-radius: 8px;
848-
}
849-
850-
/* line 225, ../sass/_forms.scss */
851-
#quick-search #q {
852-
outline: none;
853-
padding: 3px 5px !important;
854-
background-color: #fff;
855-
border: 1px solid #ddd;
856-
border-top: 1px solid #CDCDCD;
857-
box-shadow: 0 1px 0 #F1F1F1,inset 0 1px 1px #E0E0E0;
858-
border-radius: 3px;
859-
box-sizing: content-box;
860-
color: #333;
861-
font-size: 12px;
862-
}
863-
864-
/* line 333, ../sass/application.scss */
865-
.box {
866-
background-color: #fcfcfc;
867-
border-radius: 8px;
868-
padding: 16px;
869-
}
870-
871-
/* line 339, ../sass/application.scss */
872-
img.gravatar {
873-
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
874-
}
875-
876-
/* line 4, ../sass/_wiki.scss */
877-
.controller-wiki div#content > div.contextual {
878-
margin-top: 3px;
879-
}
880-
/* line 7, ../sass/_wiki.scss */
881-
.controller-wiki div#content > div.wiki {
882-
padding: 0 8px 8px 8px;
883-
}
884-
885-
/* line 13, ../sass/_wiki.scss */
886-
div.wiki {
887-
-ms-text-size-adjust: 100%;
888-
-webkit-text-size-adjust: 100%;
889-
color: #333;
890-
font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
891-
line-height: 1.6;
892-
word-wrap: break-word;
893-
}
894-
/* line 21, ../sass/_wiki.scss */
895-
div.wiki:before {
896-
display: table;
897-
content: "";
898-
}
899-
/* line 26, ../sass/_wiki.scss */
900-
div.wiki:after {
901-
display: table;
902-
clear: both;
903-
content: "";
904-
}
905-
/* line 32, ../sass/_wiki.scss */
906-
div.wiki a {
907-
background-color: transparent;
908-
text-decoration: none;
909-
text-decoration-skip: objects;
910-
}
911-
/* line 37, ../sass/_wiki.scss */
912-
div.wiki a:active, div.wiki a:hover {
913-
text-decoration: underline;
914-
outline-width: 0;
915-
}
916-
/* line 43, ../sass/_wiki.scss */
917-
div.wiki a:not([href]) {
918-
color: inherit;
919-
text-decoration: none;
920-
}
921-
/* line 52, ../sass/_wiki.scss */
922-
div.wiki p, div.wiki blockquote, div.wiki ul, div.wiki ol, div.wiki dl, div.wiki table, div.wiki pre {
923-
margin-top: 0;
924-
margin-bottom: 16px;
925-
}
926-
/* line 57, ../sass/_wiki.scss */
927-
div.wiki ul, div.wiki ol {
928-
padding-left: 2em;
929-
}
930-
/* line 59, ../sass/_wiki.scss */
931-
div.wiki ul ul, div.wiki ul ol, div.wiki ol ul, div.wiki ol ol {
932-
margin-top: 8px;
933-
margin-bottom: 8px;
934-
}
935-
/* line 71, ../sass/_wiki.scss */
936-
div.wiki h1,
937-
div.wiki h2,
938-
div.wiki h3,
939-
div.wiki h4,
940-
div.wiki h5,
941-
div.wiki h6 {
942-
margin-top: 1em;
943-
margin-bottom: 16px;
944-
font-weight: bold;
945-
line-height: 1.4;
946-
}
947-
/* line 83, ../sass/_wiki.scss */
948-
div.wiki h1 {
949-
margin-top: 0;
950-
padding-bottom: 0.3em;
951-
font-size: 2.25em;
952-
line-height: 1.2;
953-
border-bottom: 1px solid #eee;
954-
}
955-
/* line 92, ../sass/_wiki.scss */
956-
div.wiki h2 {
957-
padding-bottom: 0.3em;
958-
font-size: 1.75em;
959-
line-height: 1.225;
960-
border-bottom: 1px solid #eee;
961-
}
962-
/* line 100, ../sass/_wiki.scss */
963-
div.wiki h3 {
964-
font-size: 1.5em;
965-
line-height: 1.43;
966-
}
967-
/* line 105, ../sass/_wiki.scss */
968-
div.wiki h4 {
969-
font-size: 1.25em;
970-
}
971-
/* line 109, ../sass/_wiki.scss */
972-
div.wiki h5 {
973-
font-size: 1em;
974-
}
975-
/* line 113, ../sass/_wiki.scss */
976-
div.wiki h6 {
977-
font-size: 1em;
978-
color: #777;
979-
}
980-
/* line 120, ../sass/_wiki.scss */
981-
div.wiki.wiki-page > h2 {
982-
border-bottom: 1px solid #eee;
983-
}
984-
/* line 125, ../sass/_wiki.scss */
985-
div.wiki blockquote {
986-
padding: 0 15px;
987-
color: #777;
988-
border-left: 4px solid #ddd;
989-
}
990-
/* line 130, ../sass/_wiki.scss */
991-
div.wiki blockquote > :first-child {
992-
margin-top: 0;
993-
}
994-
/* line 133, ../sass/_wiki.scss */
995-
div.wiki blockquote > :last-child {
996-
margin-bottom: 0;
997-
}
998-
/* line 138, ../sass/_wiki.scss */
999-
div.wiki ul.toc {
1000-
padding: 10px;
1001-
}
1002-
/* line 142, ../sass/_wiki.scss */
1003-
div.wiki img {
1004-
border-style: none;
1005-
max-width: 100%;
1006-
}
1007-
/* line 147, ../sass/_wiki.scss */
1008-
div.wiki table {
1009-
border-spacing: 0;
1010-
border-collapse: collapse;
1011-
overflow: auto;
1012-
word-break: normal;
1013-
word-break: keep-all;
1014-
}
1015-
/* line 154, ../sass/_wiki.scss */
1016-
div.wiki table th {
1017-
font-weight: bold;
1018-
}
1019-
/* line 157, ../sass/_wiki.scss */
1020-
div.wiki table th, div.wiki table td {
1021-
padding: 6px 13px;
1022-
border: 1px solid #ddd;
1023-
}
1024-
/* line 161, ../sass/_wiki.scss */
1025-
div.wiki table tr {
1026-
background-color: #fff;
1027-
border-top: 1px solid #ccc;
1028-
}
1029-
/* line 164, ../sass/_wiki.scss */
1030-
div.wiki table tr:nth-child(2n) {
1031-
background-color: #f8f8f8;
1032-
}
1033-
/* line 169, ../sass/_wiki.scss */
1034-
div.wiki table img {
1035-
max-width: 100%;
1036-
box-sizing: content-box;
1037-
background-color: #fff;
1038-
}
1039-
/* line 176, ../sass/_wiki.scss */
1040-
div.wiki pre {
1041-
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
1042-
margin: 15px 0;
1043-
background-color: #f8f8f8;
1044-
border: 1px solid #ddd;
1045-
font-size: 13px;
1046-
line-height: 19px;
1047-
overflow: auto;
1048-
padding: 6px 10px;
1049-
border-radius: 3px;
1050-
}
1051-
/* line 188, ../sass/_wiki.scss */
1052-
div.wiki kbd {
1053-
display: inline-block;
1054-
padding: 3px 5px;
1055-
font: 11px Consolas, "Liberation Mono", Menlo, Courier, monospace;
1056-
line-height: 10px;
1057-
color: #555;
1058-
vertical-align: middle;
1059-
background-color: #fcfcfc;
1060-
border: solid 1px #ccc;
1061-
border-bottom-color: #bbb;
1062-
border-radius: 3px;
1063-
box-shadow: inset 0 -1px 0 #bbb;
1064-
}
1065-
/* line 202, ../sass/_wiki.scss */
1066-
div.wiki hr {
1067-
box-sizing: content-box;
1068-
height: 0;
1069-
margin: 15px 0;
1070-
background: transparent;
1071-
border: 0;
1072-
border-bottom: 1px solid #eee;
1073-
overflow: visible;
1074-
}
1075-
/* line 210, ../sass/_wiki.scss */
1076-
div.wiki hr::before {
1077-
display: table;
1078-
content: "";
1079-
}
1080-
/* line 214, ../sass/_wiki.scss */
1081-
div.wiki hr::after {
1082-
display: table;
1083-
clear: both;
1084-
content: "";
1085-
}
1086-
1087-
/* line 6, ../sass/_projects.scss */
1088-
#projects-index ul.projects ul.projects {
1089-
border-left: 3px solid #E0E0E0;
1090-
}
1091-
/* line 10, ../sass/_projects.scss */
1092-
#projects-index ul.projects.root {
1093-
padding: 10px;
1094-
}
1095-
@media (min-width: 1024px) {
1096-
/* line 10, ../sass/_projects.scss */
1097-
#projects-index ul.projects.root {
1098-
-moz-column-count: 3;
1099-
-webkit-column-count: 3;
1100-
column-count: 3;
1101-
}
1102-
/* line 15, ../sass/_projects.scss */
1103-
#projects-index ul.projects.root li.root {
1104-
border: 1px solid #DDD;
1105-
border-radius: 4px;
1106-
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
1107-
display: inline-block;
1108-
margin: 0 0 10px;
1109-
padding: 5%;
1110-
vertical-align: top;
1111-
width: 90%;
1112-
}
1113-
}
1114-
@media (min-width: 1284px) {
1115-
/* line 10, ../sass/_projects.scss */
1116-
#projects-index ul.projects.root {
1117-
-moz-column-count: 4;
1118-
-webkit-column-count: 4;
1119-
column-count: 4;
1120-
}
1121-
}
1122-
/* line 32, ../sass/_projects.scss */
1123-
#projects-index ul.projects a.project {
1124-
font-weight: bold;
1125-
font-size: 1.1em;
1126-
}
1127-
1128-
/* line 43, ../sass/_projects.scss */
1129-
.projects li .wiki p {
1130-
margin-top: 0;
1131-
}
1132-
1133-
/* line 346, ../sass/application.scss */
1134-
div.journal .details {
1135-
padding-left: 30px;
1136-
}
1137-
1138-
/* line 350, ../sass/application.scss */
1139-
#context-menu {
1140-
box-shadow: 0 0 3px #ccc;
1141-
}
1142-
/* line 352, ../sass/application.scss */
1143-
#context-menu ul li ul {
1144-
box-shadow: 0 0 3px #ccc;
1145-
}
1146-
/* line 355, ../sass/application.scss */
1147-
#context-menu li:hover {
1148-
border: 1px solid #eee !important;
1149-
background-color: #eee;
1150-
}
1151-
/* line 359, ../sass/application.scss */
1152-
#context-menu ul {
1153-
border-top: 1px solid #ddd;
1154-
border-left: 1px solid #ddd;
1155-
border-bottom: 1px solid #ddd !important;
1156-
border-right: 1px solid #ddd !important;
1157-
}
1158-
1159-
/* line 367, ../sass/application.scss */
1160-
div.tooltip:hover span.tip {
1161-
border: 1px solid #D9D9D9;
1162-
zoom: 1;
1163-
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
1164-
}
1165-
1166-
/* line 374, ../sass/application.scss */
1167-
table.progress td.closed {
1168-
background: #AECCD7 none repeat scroll 0%;
1169-
}
1170-
/* line 377, ../sass/application.scss */
1171-
table.progress td.done {
1172-
background: #EAF2F5 none repeat scroll 0%;
1173-
}
1174-
1175-
/* line 382, ../sass/application.scss */
1176-
#history div.journal {
1177-
border-top: 1px solid #DDD;
1178-
}
176+
.button, input[type="submit"] { position: relative; display: inline-block; padding: 5px 11px; font-weight: bold; color: #333; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9); white-space: nowrap; background-color: #eaeaea; background-repeat: repeat-x; background-image: -webkit-linear-gradient(#fafafa, #eaeaea); background-image: linear-gradient(#fafafa, #eaeaea); border-radius: 3px; border: 1px solid #ddd; border-bottom-color: #c4c4c4; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); vertical-align: middle; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; -webkit-appearance: none; }
177+
.button:hover, input[type="submit"]:hover { text-decoration: none; background-color: #dadada; background-image: -webkit-linear-gradient(#eaeaea, #dadada); background-image: linear-gradient(#eaeaea, #dadada); border-color: #ccc #ccc #b5b5b5; }
178+
.button:active, input[type="submit"]:active { background-color: #dadada; background-image: none; border-color: #b5b5b5; box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15); }
179+
.button:disabled, input[type="submit"]:disabled, .button:disabled:hover, input[type="submit"]:disabled:hover, .button[disabled], input[disabled][type="submit"], .button[disabled]:hover, input[disabled][type="submit"]:hover { opacity: .5; color: #666; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9); background-image: none; background-color: #e5e5e5; border-color: #c5c5c5; cursor: default; box-shadow: none; }
180+
181+
.btn { display: inline-block; padding: 4px 12px; margin-bottom: 0; text-align: center; vertical-align: middle; cursor: pointer; color: #333; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); background-color: #a3a3a3; background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#999), to(#b3b3b3)); background-image: -webkit-linear-gradient(top, #999, #b3b3b3); background-image: -webkit-linear-gradient(top, #999999, #b3b3b3); background-image: linear-gradient(to bottom, #999999, #b3b3b3); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF999999', endColorstr='#FFB3B3B3', GradientType=0); border-color: #b3b3b3 #b3b3b3 #8c8c8c; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); *background-color: #b3b3b3; /* Darken IE7 buttons by default so they stand out more given they won't have borders */ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); border: 1px solid #ddd; *border: 0; border-bottom-color: #c4c4c4; border-radius: 3px; *margin-left: .3em; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); }
182+
.btn:hover, .btn:focus, .btn:active, .btn.active, .btn.disabled, .btn[disabled] { color: #333; background-color: #b3b3b3; *background-color: #a6a6a6; }
183+
.btn:active, .btn.active { background-color: #999999 \9; }
184+
.btn:first-child { *margin-left: 0; }
185+
.btn:hover, .btn:focus { color: #333; text-decoration: none; background-position: 0 -15px; -webkit-transition: background-position .1s linear; transition: background-position .1s linear; }
186+
.btn:focus { outline: thin dotted #333; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; }
187+
.btn.active, .btn:active { background-image: none; outline: 0; box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }
188+
.btn.disabled, .btn[disabled] { cursor: default; background-image: none; opacity: .65; box-shadow: none; }
189+
190+
input[type="text"], input[type="password"], input[type="email"], input[type="number"], input[type="tel"], input[type="url"], textarea, select { outline: none; padding: 3px 4px; background-color: #fff; border: 1px solid #ccc; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075); border-radius: 3px; -webkit-transition: all 0.15s ease-in 0s; transition: all 0.15s ease-in 0s; vertical-align: middle; }
191+
#content input[type="text"], #content input[type="password"], #content input[type="email"], #content input[type="number"], #content input[type="tel"], #content input[type="url"], #content textarea, #content select { background-color: #fafafa; }
192+
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="url"]:focus, textarea:focus, select:focus { border-color: #51a7e8; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(81, 167, 232, 0.5); }
193+
194+
input.autocomplete { padding-left: 20px; }
195+
input#issue_subject { width: 98%; }
196+
197+
textarea.wiki-edit { width: 98%; }
198+
199+
option { border-bottom: 1px dotted #ddd; }
200+
201+
.controller-messages.action-show .message { background: #EAF7FF; padding: 0 15px 10px; border: 1px solid silver; margin: -11px -11px 15px -11px; }
202+
.controller-messages.action-show .message.reply { padding: 0 10px; margin: -1px; background: white; border: 1px solid #D9D9D9; }
203+
.controller-messages.action-show .message .contextual { margin-top: 10px; }
204+
205+
.controller-boards p.breadcrumb { position: relative; background: white; border: 0 solid; padding: 9px 13px 10px; margin: -5px -10px 1px -10px; background-position-x: 12px !important; background-position-y: 9px !important; border-top-left-radius: 8px; border-top-right-radius: 8px; border-bottom: 1px solid #AECCD7; }
206+
207+
#add-news, #add-message, #add-document { background-color: white; position: relative; border-bottom: 1px solid #AECCD7; margin: -5px -10px 1px -10px; padding: 5px 10px 10px; border-top-left-radius: 8px; border-top-right-radius: 8px; }
208+
209+
#quick-search #q { outline: none; padding: 3px 5px !important; background-color: #fff; border: 1px solid #ddd; border-top: 1px solid #CDCDCD; box-shadow: 0 1px 0 #F1F1F1,inset 0 1px 1px #E0E0E0; border-radius: 3px; box-sizing: content-box; color: #333; font-size: 12px; }
210+
211+
.box { background-color: #fcfcfc; border-radius: 8px; padding: 16px; }
212+
213+
img.gravatar { box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05); }
214+
215+
.controller-wiki div#content > div.contextual { margin-top: 3px; }
216+
.controller-wiki div#content > div.wiki { padding: 0 8px 8px 8px; }
217+
218+
div.wiki { -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; color: #333; font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; line-height: 1.6; word-wrap: break-word; }
219+
div.wiki:before { display: table; content: ""; }
220+
div.wiki:after { display: table; clear: both; content: ""; }
221+
div.wiki a { background-color: transparent; text-decoration: none; text-decoration-skip: objects; }
222+
div.wiki a:active, div.wiki a:hover { text-decoration: underline; outline-width: 0; }
223+
div.wiki a:not([href]) { color: inherit; text-decoration: none; }
224+
div.wiki p, div.wiki blockquote, div.wiki ul, div.wiki ol, div.wiki dl, div.wiki table, div.wiki pre { margin-top: 0; margin-bottom: 16px; }
225+
div.wiki ul, div.wiki ol { padding-left: 2em; }
226+
div.wiki ul ul, div.wiki ul ol, div.wiki ol ul, div.wiki ol ol { margin-top: 8px; margin-bottom: 8px; }
227+
div.wiki h1, div.wiki h2, div.wiki h3, div.wiki h4, div.wiki h5, div.wiki h6 { margin-top: 1em; margin-bottom: 16px; font-weight: bold; line-height: 1.4; }
228+
div.wiki h1 { margin-top: 0; padding-bottom: 0.3em; font-size: 2.25em; line-height: 1.2; border-bottom: 1px solid #eee; }
229+
div.wiki h2 { padding-bottom: 0.3em; font-size: 1.75em; line-height: 1.225; border-bottom: 1px solid #eee; }
230+
div.wiki h3 { font-size: 1.5em; line-height: 1.43; }
231+
div.wiki h4 { font-size: 1.25em; }
232+
div.wiki h5 { font-size: 1em; }
233+
div.wiki h6 { font-size: 1em; color: #777; }
234+
div.wiki.wiki-page > h2 { border-bottom: 1px solid #eee; }
235+
div.wiki blockquote { padding: 0 15px; color: #777; border-left: 4px solid #ddd; }
236+
div.wiki blockquote > :first-child { margin-top: 0; }
237+
div.wiki blockquote > :last-child { margin-bottom: 0; }
238+
div.wiki ul.toc { padding: 10px; }
239+
div.wiki img { border-style: none; max-width: 100%; }
240+
div.wiki table { border-spacing: 0; border-collapse: collapse; overflow: auto; word-break: normal; word-break: keep-all; }
241+
div.wiki table th { font-weight: bold; }
242+
div.wiki table th, div.wiki table td { padding: 6px 13px; border: 1px solid #ddd; }
243+
div.wiki table tr { background-color: #fff; border-top: 1px solid #ccc; }
244+
div.wiki table tr:nth-child(2n) { background-color: #f8f8f8; }
245+
div.wiki table img { max-width: 100%; box-sizing: content-box; background-color: #fff; }
246+
div.wiki pre { font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; margin: 15px 0; background-color: #f8f8f8; border: 1px solid #ddd; font-size: 13px; line-height: 19px; overflow: auto; padding: 6px 10px; border-radius: 3px; }
247+
div.wiki kbd { display: inline-block; padding: 3px 5px; font: 11px Consolas, "Liberation Mono", Menlo, Courier, monospace; line-height: 10px; color: #555; vertical-align: middle; background-color: #fcfcfc; border: solid 1px #ccc; border-bottom-color: #bbb; border-radius: 3px; box-shadow: inset 0 -1px 0 #bbb; }
248+
div.wiki hr { box-sizing: content-box; height: 0; margin: 15px 0; background: transparent; border: 0; border-bottom: 1px solid #eee; overflow: visible; }
249+
div.wiki hr::before { display: table; content: ""; }
250+
div.wiki hr::after { display: table; clear: both; content: ""; }
251+
252+
#projects-index ul.projects ul.projects { border-left: 3px solid #E0E0E0; }
253+
#projects-index ul.projects.root { padding: 10px; }
254+
@media (min-width: 1024px) { #projects-index ul.projects.root { -moz-column-count: 3; -webkit-column-count: 3; column-count: 3; }
255+
#projects-index ul.projects.root li.root { border: 1px solid #DDD; border-radius: 4px; box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05); display: inline-block; margin: 0 0 10px; padding: 5%; vertical-align: top; width: 90%; } }
256+
@media (min-width: 1284px) { #projects-index ul.projects.root { -moz-column-count: 4; -webkit-column-count: 4; column-count: 4; } }
257+
#projects-index ul.projects a.project { font-weight: bold; font-size: 1.1em; }
258+
259+
.projects li .wiki p { margin-top: 0; }
260+
261+
div.journal .details { padding-left: 30px; }
262+
263+
#context-menu { box-shadow: 0 0 3px #ccc; }
264+
#context-menu ul li ul { box-shadow: 0 0 3px #ccc; }
265+
#context-menu li:hover { border: 1px solid #eee !important; background-color: #eee; }
266+
#context-menu ul { border-top: 1px solid #ddd; border-left: 1px solid #ddd; border-bottom: 1px solid #ddd !important; border-right: 1px solid #ddd !important; }
267+
268+
div.tooltip:hover span.tip { border: 1px solid #D9D9D9; zoom: 1; box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05); }
269+
270+
table.progress td.closed { background: #AECCD7 none repeat scroll 0%; }
271+
table.progress td.done { background: #EAF2F5 none repeat scroll 0%; }
272+
273+
#history div.journal { border-top: 1px solid #DDD; }
1179274

1180275
/* Modal form*/
1181-
/* line 388, ../sass/application.scss */
1182-
div.modal {
1183-
border-radius: 8px;
1184-
border: 1px solid #CCC;
1185-
padding: 30px 42px;
1186-
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
1187-
}
1188-
/* line 389, ../sass/application.scss */
1189-
div.modal h3.title {
1190-
background: transparent;
1191-
color: inherit;
1192-
}
1193-
1194-
/* line 399, ../sass/application.scss */
1195-
#modalbg {
1196-
background: white;
1197-
opacity: 0.75;
1198-
}
1199-
1200-
/* line 4, ../sass/_login.scss */
1201-
body.action-login #content, body.action-login #main.nosidebar #content {
1202-
background: inherit;
1203-
border: 0;
1204-
box-shadow: none;
1205-
}
1206-
/* line 9, ../sass/_login.scss */
1207-
body.action-login #login-form table {
1208-
padding: 3em;
1209-
background: white;
1210-
box-shadow: 0 0 3px #CCC;
1211-
border: 1px solid #ddd;
1212-
border-radius: 8px;
1213-
}
1214-
1215-
/* line 19, ../sass/_login.scss */
1216-
#login-form input#username, #login-form input#password {
1217-
outline: none;
1218-
margin: 0;
1219-
border: 1px solid #ccc;
1220-
padding: 6px;
1221-
font-size: 140%;
1222-
border-radius: 2px;
1223-
}
1224-
1225-
/* line 29, ../sass/_login.scss */
1226-
.controller-account.action-login div.flash, div.wiki div.flash {
1227-
box-shadow: 0 0 3px #CCC;
1228-
border: 1px solid #ddd !important;
1229-
border-radius: 8px;
1230-
margin: 5px;
1231-
}
1232-
1233-
/* line 36, ../sass/_login.scss */
1234-
#content .tabs ul li a {
1235-
border-top-left-radius: 2px;
1236-
border-top-right-radius: 2px;
1237-
line-height: 1.3em;
1238-
padding: 6px 10px 6px 10px;
1239-
}
1240-
1241-
/* line 43, ../sass/_login.scss */
1242-
#sidebar a.selected {
1243-
background-color: transparent;
1244-
color: gray;
1245-
font-weight: bold;
1246-
}
1247-
1248-
/* line 408, ../sass/application.scss */
1249-
div.filters .live_search {
1250-
margin-left: 11px !important;
1251-
}
1252-
1253-
/* line 412, ../sass/application.scss */
1254-
input.live_search_field {
1255-
border-radius: 12px;
1256-
box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.15);
1257-
outline: none;
1258-
padding: 3px 10px !important;
1259-
border: 1px solid #C3C3C3;
1260-
}
1261-
1262-
/* line 420, ../sass/application.scss */
1263-
.live_search input.live_search_field {
1264-
font-size: 12px !important;
1265-
}
1266-
1267-
/* line 424, ../sass/application.scss */
1268-
label#search_overlabel {
1269-
font-size: 12px !important;
1270-
padding-left: 12px !important;
1271-
margin-top: -3px !important;
1272-
padding-right: 28px;
1273-
top: 11px !important;
1274-
}
1275-
1276-
/* line 433, ../sass/application.scss */
1277-
table.contacts.index tbody tr:hover {
1278-
background-color: #EFF5F8 !important;
1279-
}
1280-
/* line 436, ../sass/application.scss */
1281-
table.contacts.index tbody tr.context-menu-selection:hover {
1282-
background-color: #507AAA !important;
1283-
}
1284-
1285-
/* line 441, ../sass/application.scss */
1286-
h2 span.tag {
1287-
letter-spacing: 0;
1288-
top: -4px;
1289-
position: relative;
1290-
}
1291-
/* line 445, ../sass/application.scss */
1292-
h2 span.tag a {
1293-
margin-bottom: -1px;
1294-
}
1295-
1296-
/* line 450, ../sass/application.scss */
1297-
div.filters .live_search {
1298-
letter-spacing: 0;
1299-
}
1300-
1301-
/* line 454, ../sass/application.scss */
1302-
label#search_overlabel {
1303-
margin-top: -4px;
1304-
}
1305-
1306-
/* line 458, ../sass/application.scss */
1307-
.live_search input.live_search_field {
1308-
margin-top: -6px;
1309-
}
1310-
1311-
/* line 463, ../sass/application.scss */
1312-
span.tag a, span.deal-status {
1313-
color: white;
1314-
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
1315-
font-size: 9px !important;
1316-
line-height: 1 !important;
1317-
margin: 2px 0 2px 0;
1318-
text-decoration: none;
1319-
font-weight: bold;
1320-
display: inline-block;
1321-
position: relative;
1322-
text-align: center;
1323-
border-top: 1px solid rgba(255, 255, 255, 0.25);
1324-
border-radius: 14px;
1325-
padding: 4px 6px 4px !important;
1326-
background: black url(../images/dark-overlay.png) repeat-x scroll 0 0;
1327-
border: 1px solid rgba(0, 0, 0, 0.2);
1328-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
1329-
}
1330-
/* line 481, ../sass/application.scss */
1331-
span.tag a:hover {
1332-
text-shadow: none;
1333-
}
1334-
/* line 484, ../sass/application.scss */
1335-
span.deal-status a:hover {
1336-
color: black;
1337-
text-shadow: none;
1338-
}
1339-
1340-
/* line 491, ../sass/application.scss */
1341-
body.controller-contacts #content, body.controller-notes #content, body.controller-contacts_tasks #content, body.controller-contacts_duplicates #content, body.controller-sale_funel #content, body.controller-deals #content {
1342-
margin-right: 340px;
1343-
}
1344-
/* line 494, ../sass/application.scss */
1345-
body.controller-contacts #sidebar, body.controller-notes #sidebar, body.controller-contacts_tasks #sidebar, body.controller-contacts_duplicates #sidebar, body.controller-sale_funel #sidebar, body.controller-deals #sidebar {
1346-
width: 300px !important;
1347-
}
1348-
1349-
/* line 4, ../sass/_invoice.scss */
1350-
table.invoice-lines tbody tr.line-data:hover {
1351-
background-color: #EFF5F8 !important;
1352-
}
1353-
/* line 7, ../sass/_invoice.scss */
1354-
table.invoice-lines th {
1355-
border: 0 !important;
1356-
}
1357-
1358-
/* line 13, ../sass/_invoice.scss */
1359-
span.invoice-status.draft {
1360-
background-color: #AAA !important;
1361-
}
1362-
/* line 16, ../sass/_invoice.scss */
1363-
span.invoice-status.sent {
1364-
background-color: #3F8AF7 !important;
1365-
}
1366-
/* line 19, ../sass/_invoice.scss */
1367-
span.invoice-status.paid {
1368-
background-color: green !important;
1369-
}
1370-
1371-
/* line 2, ../sass/_settings.scss */
1372-
.enabled_scm th {
1373-
text-align: left;
1374-
}
1375-
1376-
/* line 6, ../sass/_plugins.scss */
1377-
.jstt_smiles #group_of_smiles {
1378-
border: 1px solid #ddd !important;
1379-
margin-top: -6px;
1380-
padding: 6px;
1381-
}
1382-
1383-
/* line 1, ../sass/_store.scss */
1384-
a.buy-button.blue {
1385-
background: #4C728A !important;
1386-
background-image: -webkit-linear-gradient(bottom, #4c728a 0%, #749bb4 100%) !important;
1387-
background-image: linear-gradient(to top, #4c728a 0%, #749bb4 100%) !important;
1388-
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#749BB4', endColorstr='#4C728A')" !important;
1389-
}
1390-
1391-
/* line 7, ../sass/_store.scss */
1392-
#picture {
1393-
width: 446px !important;
1394-
top: 7px;
1395-
}
1396-
1397-
/* line 12, ../sass/_store.scss */
1398-
#title h2, #buttons, #title h1 {
1399-
min-width: 550px !important;
1400-
}
1401-
1402-
/*
1403-
redmine's body is set to min-width: 900px
1404-
add first breakpoint here and start adding responsiveness
276+
div.modal { border-radius: 8px; border: 1px solid #CCC; padding: 30px 42px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); }
277+
div.modal h3.title { background: transparent; color: inherit; }
278+
279+
#modalbg { background: white; opacity: 0.75; }
280+
281+
body.action-login #content, body.action-login #main.nosidebar #content { background: inherit; border: 0; box-shadow: none; }
282+
body.action-login #login-form table { padding: 3em; background: white; box-shadow: 0 0 3px #CCC; border: 1px solid #ddd; border-radius: 8px; }
283+
284+
#login-form input#username, #login-form input#password { outline: none; margin: 0; border: 1px solid #ccc; padding: 6px; font-size: 140%; border-radius: 2px; }
285+
286+
.controller-account.action-login div.flash, div.wiki div.flash { box-shadow: 0 0 3px #CCC; border: 1px solid #ddd !important; border-radius: 8px; margin: 5px; }
287+
288+
#content .tabs ul li a { border-top-left-radius: 2px; border-top-right-radius: 2px; line-height: 1.3em; padding: 6px 10px 6px 10px; }
289+
290+
#sidebar a.selected { background-color: transparent; color: gray; font-weight: bold; }
291+
292+
div.filters .live_search { margin-left: 11px !important; }
293+
294+
input.live_search_field { border-radius: 12px; box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.15); outline: none; padding: 3px 10px !important; border: 1px solid #C3C3C3; }
295+
296+
.live_search input.live_search_field { font-size: 12px !important; }
297+
298+
label#search_overlabel { font-size: 12px !important; padding-left: 12px !important; margin-top: -3px !important; padding-right: 28px; top: 11px !important; }
299+
300+
table.contacts.index tbody tr:hover { background-color: #EFF5F8 !important; }
301+
table.contacts.index tbody tr.context-menu-selection:hover { background-color: #507AAA !important; }
302+
303+
h2 span.tag { letter-spacing: 0; top: -4px; position: relative; }
304+
h2 span.tag a { margin-bottom: -1px; }
305+
306+
div.filters .live_search { letter-spacing: 0; }
307+
308+
label#search_overlabel { margin-top: -4px; }
309+
310+
.live_search input.live_search_field { margin-top: -6px; }
311+
312+
span.tag a, span.deal-status { color: white; text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25); font-size: 9px !important; line-height: 1 !important; margin: 2px 0 2px 0; text-decoration: none; font-weight: bold; display: inline-block; position: relative; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.25); border-radius: 14px; padding: 4px 6px 4px !important; background: black url(../images/dark-overlay.png) repeat-x scroll 0 0; border: 1px solid rgba(0, 0, 0, 0.2); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3); }
313+
span.tag a:hover { text-shadow: none; }
314+
span.deal-status a:hover { color: black; text-shadow: none; }
315+
316+
body.controller-contacts #content, body.controller-notes #content, body.controller-contacts_tasks #content, body.controller-contacts_duplicates #content, body.controller-sale_funel #content, body.controller-deals #content { margin-right: 340px; }
317+
body.controller-contacts #sidebar, body.controller-notes #sidebar, body.controller-contacts_tasks #sidebar, body.controller-contacts_duplicates #sidebar, body.controller-sale_funel #sidebar, body.controller-deals #sidebar { width: 300px !important; }
318+
319+
table.invoice-lines tbody tr.line-data:hover { background-color: #EFF5F8 !important; }
320+
table.invoice-lines th { border: 0 !important; }
321+
322+
span.invoice-status.draft { background-color: #AAA !important; }
323+
span.invoice-status.sent { background-color: #3F8AF7 !important; }
324+
span.invoice-status.paid { background-color: green !important; }
325+
326+
.enabled_scm th { text-align: left; }
327+
328+
.jstt_smiles #group_of_smiles { border: 1px solid #ddd !important; margin-top: -6px; padding: 6px; }
329+
330+
a.buy-button.blue { background: #4C728A !important; background-image: -webkit-linear-gradient(bottom, #4c728a 0%, #749bb4 100%) !important; background-image: linear-gradient(to top, #4c728a 0%, #749bb4 100%) !important; -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#749BB4', endColorstr='#4C728A')" !important; }
331+
332+
#picture { width: 446px !important; top: 7px; }
333+
334+
#title h2, #buttons, #title h1 { min-width: 550px !important; }
335+
336+
/* redmine's body is set to min-width: 900px add first breakpoint here and start adding responsiveness
1405337
*/
1406-
@media all and (max-width: 899px) {
1407-
/* line 7, ../sass/_responsive.scss */
1408-
#main {
1409-
margin: 0;
1410-
}
1411-
1412-
/* line 11, ../sass/_responsive.scss */
1413-
div#content > div.contextual {
1414-
margin-top: 0;
1415-
margin-right: 0;
1416-
}
1417-
1418-
/* line 16, ../sass/_responsive.scss */
1419-
div#content > h2,
1420-
div#content h2.contacts_header {
1421-
background-color: #fafafa;
1422-
border-bottom: 1px solid #eee;
1423-
}
1424-
}
338+
@media all and (max-width: 899px) { #main { margin: 0; }
339+
div#content > div.contextual { margin-top: 0; margin-right: 0; }
340+
div#content > h2, div#content h2.contacts_header { background-color: #fafafa; border-bottom: 1px solid #eee; } }

0 commit comments

Comments
 (0)
Please sign in to comment.