Revision 94a441d4
Von Sven Schöling vor etwa 12 Jahren hinzugefügt
css/kivitendo/menu.css | ||
---|---|---|
289 | 289 |
each line is a mi (menuitem) and has one mii (menu-item-icon) whcih is ms (menu-spacer) |
290 | 290 |
and one mic (menu-item-chunk) |
291 | 291 |
indenting is done with the levels s0, s1, s2 */ |
292 |
#html-menu { float:left; width: 183px; } |
|
292 |
#content.html-menu, #html-menu { |
|
293 |
transition: margin-left 0.2s, width 0.2s; |
|
294 |
-moz-transition: margin-left 0.2s, width 0.2s; |
|
295 |
-webkit-transition: margin-left 0.2s, width 0.2s; |
|
296 |
-o-transition: margin-left 0.2s, width 0.2s; |
|
297 |
} |
|
298 |
#content.html-menu { margin-left: 190px; } |
|
299 |
#content.html-menu.folded { margin-left: 40px } |
|
300 |
#html-menu.folded:hover + #content.html-menu.folded { margin-left: 190px } |
|
301 |
#html-menu { float:left; width: 183px; font-size: 8pt; margin-top: 10px; overflow:hidden; } |
|
302 |
#html-menu.folded { width: 32px; } |
|
303 |
#html-menu.folded:hover { width: 183px; } |
|
293 | 304 |
#html-menu div.mi { margin-top: 4px; margin-bottom: 3px; white-space: nowrap; clear:both; position:relative; } |
294 | 305 |
#html-menu div.sm { font-weight: bold } |
295 | 306 |
#html-menu img { vertical-align: top; border: 0; } |
296 | 307 |
#html-menu a { vertical-align: top } |
297 |
#html-menu .i span.ms { float: left; width: 24px } |
|
308 |
#html-menu .i span.ms { float: left; width: 24px; margin-bottom: 4px; }
|
|
298 | 309 |
#html-menu .m span.ms { float: left; width: 32px } |
299 | 310 |
#html-menu .sm span.ms { float: left; width: 24px; background: url(../../image/unterpunkt.png); } |
300 | 311 |
#html-menu div.m { height: 24px } |
301 |
#html-menu div.m { color:#000000; background-color: #ffffff; position: relative; top: 5px; } |
|
302 |
#html-menu div.m span.mic { position: relative; top: 5px; } |
|
303 |
#html-menu a:link, |
|
304 |
#html-menu a:visited, |
|
305 |
#html-menu a:active { border-bottom: none; } |
|
312 |
#html-menu div.m span.mic { color:black; position: relative; top: 4px } |
|
306 | 313 |
#html-menu div.m:hover, |
307 |
#html-menu div.i:hover { color: #FE5F14; background-color: #d1d1d1; cursor: pointer; }
|
|
314 |
#html-menu div.i:hover { color:blue; background-color: #d1d1d1; cursor: pointer; }
|
|
308 | 315 |
#html-menu span.mic { white-space: normal; display: inline-block; vertical-align: top; line-height: 1.2; } |
309 | 316 |
#html-menu a.ml span.mic { width: 145px } /* fix deep indents */ |
310 | 317 |
#html-menu div.s0 { padding-left: 2px } |
311 | 318 |
#html-menu div.s1 { padding-left: 8px } |
312 | 319 |
#html-menu div.s2 { padding-left: 16px } |
320 |
|
|
321 |
body { margin: 0 } |
css/lx-office-erp/main.css | ||
---|---|---|
9 | 9 |
background-color: lemonchiffon; |
10 | 10 |
text-decoration: none; |
11 | 11 |
} |
12 |
a, div { |
|
13 |
transition: background-color 0.2s; |
|
14 |
-moz-transition: background-color 0.2s; |
|
15 |
-webkit-transition: background-color 0.2s; |
|
16 |
} |
|
17 |
|
|
18 |
input, textarea, select { |
|
19 |
border: 1px; |
|
20 |
border-color: darkgray lightgray lightgray; |
|
21 |
border-style: solid; |
|
22 |
padding: 1px; |
|
23 |
background-color: white; |
|
24 |
} |
|
25 |
|
|
26 |
select { |
|
27 |
padding: 0px; |
|
28 |
} |
|
12 | 29 |
|
13 | 30 |
input:focus, textarea:focus, select:focus { |
14 |
background-color: yellow; |
|
31 |
background-color: whitesmoke; |
|
32 |
border: 1px; |
|
33 |
border-color: gray lightgray lightgray; |
|
34 |
border-style: solid; |
|
35 |
} |
|
36 |
|
|
37 |
input:hover, textarea:hover, select:hover { |
|
38 |
border-color: dimgray darkgray darkgray; |
|
39 |
} |
|
40 |
|
|
41 |
input[type="button"], |
|
42 |
input[type="submit"], |
|
43 |
button, |
|
44 |
input[type="button"]:focus, |
|
45 |
input[type="submit"]:focus, |
|
46 |
button:focus { |
|
47 |
border: 1px; |
|
48 |
border-color: darkgray; |
|
49 |
border-style: solid; |
|
50 |
padding: 0px 4px; |
|
51 |
-webkit-border-radius: 2px; |
|
52 |
-moz-border-radius: 2px; |
|
53 |
border-radius: 2px; |
|
54 |
background-color: whitesmoke; |
|
55 |
} |
|
56 |
|
|
57 |
button:hover, |
|
58 |
input[type="button"]:hover, |
|
59 |
input[type="submit"]:hover { |
|
60 |
border: 1px; |
|
61 |
background-color: lightgray; |
|
62 |
border-color: gray; |
|
63 |
border-style: solid; |
|
64 |
-webkit-border-radius: 2px; |
|
65 |
-moz-border-radius: 2px; |
|
66 |
border-radius: 2px; |
|
15 | 67 |
} |
16 | 68 |
|
17 | 69 |
html { |
... | ... | |
391 | 443 |
border-style:none; |
392 | 444 |
border-width:thin; |
393 | 445 |
} |
446 |
|
|
447 |
|
Auch abrufbar als: Unified diff
diverse css experimente