blob: 5b4a5d357022a689fd26dbbc1040c4497569ffce [file] [log] [blame]
Nils Diewald71ac9c72015-03-09 17:45:58 +00001/* List view */
2
3ul.menu {
4 position: absolute;
Nils Diewaldd2b57372015-03-10 20:09:48 +00005 background-color: #7ba400;
6 font-weight: normal;
Nils Diewald71ac9c72015-03-09 17:45:58 +00007 border: 2px solid white;
8 list-style-type: none;
9 list-style-position: outside;
10 padding-left: 0;
Nils Diewaldd2b57372015-03-10 20:09:48 +000011 z-index: 16;
Nils Diewald71ac9c72015-03-09 17:45:58 +000012}
13
14ul.menu > li {
15 padding: 2px 5px;
16}
17
18ul.menu > *.active,
19ul.menu > *:hover {
20 background-color: rgba(255,255,255,.25);
21 color: #496000;
22}
23
24ul.menu > li:first-of-type {
25 border-top: 3px solid transparent;
26}
27
28ul.menu > li:last-of-type {
29 border-bottom: 3px solid transparent;
30}
31
32ul.menu > li:first-of-type:not(.no-more) {
33 border-top-color: #ffa500;
34}
35
36ul.menu > li:last-of-type:not(.no-more) {
37 border-bottom-color: #ffa500;
38}
39
40ul.menu > li mark {
41 text-decoration: underline;
42 background-color: transparent;
43 color: inherit;
44 font-weight: bold; /* #496000; */
45}
46
47ul.menu > span.pref:not(:empty) {
48 position: absolute;
49 min-width: 2px;
50 border: 2px solid white;
51 height: -1.5em;
52 display: block;
53 right: 0;
54 bottom: 0;
55 border-top-width: 0;
56 padding: .1em .3em;
Nils Diewaldd2b57372015-03-10 20:09:48 +000057 margin-bottom: -1.7em;
Nils Diewald71ac9c72015-03-09 17:45:58 +000058 margin-right: -2px;
Nils Diewaldd2b57372015-03-10 20:09:48 +000059 background-color: #7ba400;
Nils Diewald71ac9c72015-03-09 17:45:58 +000060}