tazbug view web/style.css @ rev 151

Fix in users plugin (from tinycm)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Feb 28 22:59:52 2017 +0100 (2017-02-28)
parents f07cd117feed
children
line source
1 /* CSS style for SliTaz Bugs */
3 html { min-height: 102%; }
4 body { font: 13px sans-serif, vernada, arial; margin: 0; }
5 h1 { margin: 0; padding: 8px; color: #fff; font-size: 20px; }
6 h1 a { color: #fff; text-decoration: none; }
7 h2 { color: #444; } h3 { font-size: 140%; }
8 h3, h4 { color: #666; }
9 a { text-decoration: none; color: #215090; }
10 a:hover { text-decoration: underline; }
11 img { border: 0pt none; vertical-align: middle; }
12 pre {
13 overflow: auto;
14 font-size: 98%;
15 }
16 textarea, table { width: 100%; }
17 thead { font-weight: bold; }
19 /* Header */
21 #header {
22 background: #222;
23 height: 40px;
24 border-bottom: 4px solid #afafaf;
25 }
27 #header h1 {
28 margin: 0;
29 padding: 8px 0 0 42px;
30 width: 250px;
31 }
33 #header h1 a {
34 color: white;
35 text-decoration: none;
36 font-size: 20px;
37 font-style: italic;
38 }
40 #header h1 a:hover {
41 color: #afafaf;
42 }
44 /* Header links */
46 #network {
47 float: right;
48 padding: 14px 5px 0;
49 font-size: 12px;
50 margin-right: 104px;
51 }
53 #network a, #network span {
54 padding: 0 4px;
55 color: #fff;
56 font-weight: bold;
57 text-decoration: none;
58 }
60 #network a:hover, #user a:hover, #network span { color: #cfcfcf; }
62 /* Logo */
64 #logo {
65 background: url(images/logo.png) no-repeat left;
66 position: absolute;
67 float: left;
68 left: 0px;
69 top: 0px;
70 width: 40px;
71 height: 40px;
72 }
74 /* Login and user box */
76 #login {
77 min-width: 300px;
78 float: left;
79 height: 140px;
80 }
82 #login input[type="text"], #login input[type="password"] {
83 width: 280px; }
85 #login input[type="submit"] { float: none; }
87 #user {
88 background-color: #333;
89 padding: 4px;
90 width: 84px;
91 float: right;
92 font-size: 12px;
93 position: absolute;
94 right: 10px;
95 top: 6px;
96 }
97 #user a { padding: 0 2px; color: #fff;
98 font-weight: bold; text-decoration: none; }
100 #account-info { width: 360px; height: 140px; float: right; }
102 /* Search */
104 #search {
105 position: absolute;
106 right: 20px;
107 top: 60px;
108 }
110 #search input[type="text"] { width: 200px; }
112 /* Content */
114 #content {
115 margin: 40px auto;
116 padding: 0 20px;
117 text-align: justify;
118 max-width: 720px;
119 }
121 #newbug textarea, #editbug textarea { width: 490px; height: 180px; }
123 #edit textarea { width: 630px; height: 140px; }
124 #edit input[type="text"] { width: 620px; }
126 .box, pre, #login, #account-info {
127 background-color: #f8f8f8;
128 border: 1px solid #ddd;
129 padding: 10px;
130 }
132 pre img { margin: 4px 4px 4px 0px; }
134 .error { color: red; }
135 .ok { color: green; }
136 .date { color: #666; font-size: 96%; }
138 /* Progress bar */
140 .pct { background: #9dff4a; padding: 2px 4px; }
142 .pctbar {
143 margin: 0;
144 color: #666;
145 background: #f1f1f1;
146 border: 1px solid #ddd;
147 overflow: hidden;
148 clear: both;
149 }
151 /* Form */
153 form { display: inline; }
154 textarea { border: 2px solid #ccc; padding: 4px; min-height: 60px; }
155 select { min-width: 180px; }
156 input[type="submit"], input[type="text"], input[type="password"],
157 select, #tools a {
158 color: #444444;
159 border: 1px solid #afafaf;
160 padding: 4px;
161 margin: 4px 0px;
162 font-size: 14px;
163 line-height: 1.2em;
164 background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
165 background-image: -moz-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
166 -webkit-appearance: none;
167 -webkit-padding-end: 12px;
168 -webkit-padding-start: 6px;
169 }
171 input[type="text"], input[type="password"] {
172 background: #fefefe; border: 2px solid #ccc;
173 width: 480px; }
174 /*input[type="file"] { border: 2px solid #ddd; }*/
175 /*input[type="checkbox"] { background: #fefefe; }*/
177 /* Be compatible with old FF and Webkit version. */
178 input[type="submit"] {
179 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
180 -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
181 box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
182 }
184 input[type="submit"]:hover, #tools a:hover {
185 cursor: pointer;
186 color: black;
187 }
189 select {
190 background-image: url(images/down.png),
191 -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
192 background-position: center right;
193 background-repeat: no-repeat;
194 }
196 #tools {
197 padding-top: 10px;
198 /*margin-top: 20px;
199 border-top: 1px dotted #ccc;
200 position: fixed;
201 bottom: 10px;*/
202 }
203 #tools a { text-decoration: none; margin: 4px 6px 4px 0px; }
205 /* Round corner */
207 pre, .button, .pctbar, #login, #account-info, #user, img, input,
208 textarea, select, #tools a {
209 -moz-border-radius: 4px;
210 -webkit-border-radius: 4px;
211 border-radius: 4px;
212 }
214 /* Footer */
216 #footer {
217 text-align: center;
218 padding: 20px;
219 border-top: 1px solid #ddd;
220 font-size: 90%;
221 }
223 #footer a { padding: 0 2px; }
225 /* Users & Dashboard */
226 #users table, #plugins table { border-collapse: collapse; }
227 #users tr, #plugins tr {
228 padding:.3em 1em;
229 border-bottom: 1px solid #ddd;
230 }
231 #users td, #plugins td { padding: 4px 0; }