Nils Diewald | 71ac9c7 | 2015-03-09 17:45:58 +0000 | [diff] [blame] | 1 | /* List view */ |
| 2 | |
| 3 | ul.menu { |
| 4 | position: absolute; |
Nils Diewald | d2b5737 | 2015-03-10 20:09:48 +0000 | [diff] [blame] | 5 | background-color: #7ba400; |
| 6 | font-weight: normal; |
Nils Diewald | 71ac9c7 | 2015-03-09 17:45:58 +0000 | [diff] [blame] | 7 | border: 2px solid white; |
| 8 | list-style-type: none; |
| 9 | list-style-position: outside; |
| 10 | padding-left: 0; |
Nils Diewald | d2b5737 | 2015-03-10 20:09:48 +0000 | [diff] [blame] | 11 | z-index: 16; |
Nils Diewald | 71ac9c7 | 2015-03-09 17:45:58 +0000 | [diff] [blame] | 12 | } |
| 13 | |
| 14 | ul.menu > li { |
| 15 | padding: 2px 5px; |
| 16 | } |
| 17 | |
| 18 | ul.menu > *.active, |
| 19 | ul.menu > *:hover { |
| 20 | background-color: rgba(255,255,255,.25); |
| 21 | color: #496000; |
| 22 | } |
| 23 | |
| 24 | ul.menu > li:first-of-type { |
| 25 | border-top: 3px solid transparent; |
| 26 | } |
| 27 | |
| 28 | ul.menu > li:last-of-type { |
| 29 | border-bottom: 3px solid transparent; |
| 30 | } |
| 31 | |
| 32 | ul.menu > li:first-of-type:not(.no-more) { |
| 33 | border-top-color: #ffa500; |
| 34 | } |
| 35 | |
| 36 | ul.menu > li:last-of-type:not(.no-more) { |
| 37 | border-bottom-color: #ffa500; |
| 38 | } |
| 39 | |
| 40 | ul.menu > li mark { |
| 41 | text-decoration: underline; |
| 42 | background-color: transparent; |
| 43 | color: inherit; |
| 44 | font-weight: bold; /* #496000; */ |
| 45 | } |
| 46 | |
| 47 | ul.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 Diewald | d2b5737 | 2015-03-10 20:09:48 +0000 | [diff] [blame] | 57 | margin-bottom: -1.7em; |
Nils Diewald | 71ac9c7 | 2015-03-09 17:45:58 +0000 | [diff] [blame] | 58 | margin-right: -2px; |
Nils Diewald | d2b5737 | 2015-03-10 20:09:48 +0000 | [diff] [blame] | 59 | background-color: #7ba400; |
Nils Diewald | 71ac9c7 | 2015-03-09 17:45:58 +0000 | [diff] [blame] | 60 | } |