Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame^] | 1 | @charset "utf-8"; |
| 2 | @import "../../util"; |
| 3 | |
| 4 | // Metatable |
| 5 | div.metatable > dl { |
| 6 | margin-right: $right-view-distance; |
| 7 | margin-top: $border-size; |
| 8 | |
| 9 | > div { |
| 10 | border-color: $dark-orange; |
| 11 | |
| 12 | > * { |
| 13 | padding: .2em; |
| 14 | } |
| 15 | |
| 16 | > dt { |
| 17 | background: $darker-orange; |
| 18 | color: $nearly-white; |
| 19 | width: 12.5em; |
| 20 | } |
| 21 | |
| 22 | > dd { |
| 23 | background-color: $light-orange; |
| 24 | cursor: pointer; |
| 25 | |
| 26 | &.metakeyvalues { |
| 27 | padding: 0; |
| 28 | |
| 29 | > div { |
| 30 | padding: .2em; |
| 31 | |
| 32 | &::before { |
| 33 | content: "\2022\00A0"; |
| 34 | color: $dark-orange |
| 35 | } |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | // equal to td.chosen |
| 40 | &.chosen, |
| 41 | > div.chosen { |
| 42 | background-color: $light-green !important; |
| 43 | color: $nearly-white; |
| 44 | } |
| 45 | |
| 46 | &[data-type="type:store"], |
| 47 | &[data-type="type:attachement"] { |
| 48 | background-color: $middle-orange; |
| 49 | cursor: default; |
| 50 | |
| 51 | a { |
| 52 | color: inherit; |
| 53 | } |
| 54 | } |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | // This is a temporary feature to disable |
| 59 | // corpusByMatch assistant. See corpusByMatch.js |
| 60 | // for reasons. |
| 61 | &.cbm-disabled > div > dd { |
| 62 | cursor: default !important; |
| 63 | } |
| 64 | } |