slitaz-forge view labs/redmine/themes/slitaz-simple/stylesheets/application.css @ rev 3

Add slitaz-labs config & themes
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Dec 22 14:03:22 2010 +0100 (2010-12-22)
parents
children
line source
1 @import url(../../../stylesheets/application.css);
3 body {
4 background-color:#222222;
5 }
7 #wrapper {
8 background-color: #eeeeee;
9 }
11 #top-menu {
12 background: #f0ba08 url(../header.png) repeat-x top;
13 width: 100%;
14 padding: 0px 2px 0px 2px;
15 height: 50px;
16 border-top: 1px solid black;
17 border-bottom: 1px solid black;
18 font-size: 12px;
19 }
20 #top-menu a:hover {
21 background: inherit;
22 color: #222222;
23 text-decoration: none;
24 }
26 #header {
27 background: transparent;
28 margin: -34px 0px 0px 0px;
29 padding: 0px 8px 0px 6px;
30 }
31 #header h1 {
32 color: black;
33 }
35 #main {
36 background: white;
37 margin: 0px 0px 0px 0px;
38 }
40 #content {
41 background: #fff;
42 border: 0px;
43 margin: 0px 20px 0px 20px;
44 overflow: auto;
45 }
47 #footer {
48 background-color:#eeeeee;
49 border: 0px;
50 }
52 /* Headers */
53 h2, h3, h4, .wiki h1, .wiki h2, .wiki h3 {border-bottom: 0px;}
55 h2 {
56 color: #DF8F06;
57 border-left: 10px solid #F3F3F3;
58 padding: 4px 0px 4px 4px;
59 margin: 0px 0px 4px 0px;
60 }
62 /* Menu */
63 #main-menu li a {
64 font-size: 12px;
65 font-weight: bold;
66 color: #3E1220;
67 background: inherit;
68 padding: 0px 4px 6px 4px;
69 }
71 #main-menu li a:hover {
72 text-decoration: underline;
73 color: #DF8F06;
74 background-color: transparent;
75 text-decoration: none;
76 }
78 #main-menu li a.selected, #main-menu li a.selected:hover { background-color: transparent; }
80 #sidebar{
81 /* background-color: #eeeeee; */
82 float: right;
83 width: 16%;
84 position: relative;
85 z-index: 9;
86 min-height: 580px;
87 padding: 0px 0px 0px 10px;
88 margin: 0;
89 border-left: 1px dotted #d7d7d7;
90 }
92 div.wiki { padding-right: 20px; }
93 div.contextual { padding-right: 20px; }
94 p.other-formats { padding-right: 20px; }
96 /* Tables */
97 table.list tbody td, table.list tbody tr:hover td { border: solid 1px #d7d7d7; }
98 table.list thead th {
99 border-width: 1px;
100 border-style: solid;
101 border-top-color: #d7d7d7;
102 border-right-color: #d7d7d7;
103 border-left-color: #d7d7d7;
104 border-bottom-color: #999999;
105 }
107 /* Issues grid styles by priorities (provided by Wynn Netherland) */
108 table.list tr.issue a { color: #666; }
110 tr.odd.priority-5, table.list tbody tr.odd.priority-5:hover { color: #900; font-weight: bold; }
111 tr.odd.priority-5 { background: #ffc4c4; }
112 tr.even.priority-5, table.list tbody tr.even.priority-5:hover { color: #900; font-weight: bold; }
113 tr.even.priority-5 { background: #ffd4d4; }
114 tr.priority-5 a, tr.priority-5:hover a { color: #900; }
115 tr.odd.priority-5 td, tr.even.priority-5 td { border-color: #ffb4b4; }
117 tr.odd.priority-4, table.list tbody tr.odd.priority-4:hover { color: #900; }
118 tr.odd.priority-4 { background: #ffc4c4; }
119 tr.even.priority-4, table.list tbody tr.even.priority-4:hover { color: #900; }
120 tr.even.priority-4 { background: #ffd4d4; }
121 tr.priority-4 a { color: #900; }
122 tr.odd.priority-4 td, tr.even.priority-4 td { border-color: #ffb4b4; }
124 tr.odd.priority-3, table.list tbody tr.odd.priority-3:hover { color: #900; }
125 tr.odd.priority-3 { background: #fee; }
126 tr.even.priority-3, table.list tbody tr.even.priority-3:hover { color: #900; }
127 tr.even.priority-3 { background: #fff2f2; }
128 tr.priority-3 a { color: #900; }
129 tr.odd.priority-3 td, tr.even.priority-3 td { border-color: #fcc; }
131 tr.odd.priority-1, table.list tbody tr.odd.priority-1:hover { color: #559; }
132 tr.odd.priority-1 { background: #eaf7ff; }
133 tr.even.priority-1, table.list tbody tr.even.priority-1:hover { color: #559; }
134 tr.even.priority-1 { background: #f2faff; }
135 tr.priority-1 a { color: #559; }
136 tr.odd.priority-1 td, tr.even.priority-1 td { border-color: #add7f3; }
138 /* Buttons */
139 input[type="button"], input[type="submit"], input[type="reset"] { background-color: #f2f2f2; color: #222222; border: 1px outset #cccccc; }
140 input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover { background-color: #ccccbb; }
142 /* Fields */
143 input[type="text"], textarea, select { padding: 2px; border: 1px solid #d7d7d7; }
144 input[type="text"] { padding: 3px; }
145 input[type="text"]:focus, textarea:focus, select:focus { border: 1px solid #888866; }
146 option { border-bottom: 1px dotted #d7d7d7; }
148 /* Misc */
149 .box { background-color: #fcfcfc; }