Akron | 2f97912 | 2018-07-25 17:00:23 +0200 | [diff] [blame] | 1 | @charset "utf-8"; |
| 2 | @import "../util"; |
| 3 | |
hebasta | 94f8ba6 | 2018-12-11 15:29:10 +0100 | [diff] [blame] | 4 | |
| 5 | /* |
| 6 | Corpus statistic |
| 7 | Graying corpus statistic |
| 8 | */ |
Akron | 2f97912 | 2018-07-25 17:00:23 +0200 | [diff] [blame] | 9 | div.stattable { |
hebasta | 94f8ba6 | 2018-12-11 15:29:10 +0100 | [diff] [blame] | 10 | display: flex; |
| 11 | flex-direction: row; |
| 12 | } |
| 13 | div.stattable { |
| 14 | > dl { |
| 15 | display: flex; |
| 16 | flex-flow: row wrap; |
| 17 | margin-top:4px; |
| 18 | margin-bottom:4px; |
| 19 | padding-bottom: 1px; |
| 20 | > div { |
| 21 | border-color: $dark-green; |
| 22 | > dt { |
| 23 | background-color: $middle-green; |
| 24 | width: 15em; |
| 25 | margin: 0; |
| 26 | &:after { |
| 27 | content: ":"; |
| 28 | } |
| 29 | } |
| 30 | > dd { |
| 31 | background-color: $lightest-green; |
| 32 | color: $dark-grey; |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | &.stdisabled { |
| 37 | > dl |
| 38 | > div { |
| 39 | > dt { |
| 40 | @include vcinfo-inactive; |
| 41 | } |
| 42 | > dd { |
| 43 | @include vcinfo-inactive; |
| 44 | } |
| 45 | } |
| 46 | } |
Akron | 2f97912 | 2018-07-25 17:00:23 +0200 | [diff] [blame] | 47 | } |
Akron | 2f97912 | 2018-07-25 17:00:23 +0200 | [diff] [blame] | 48 | |
hebasta | 94f8ba6 | 2018-12-11 15:29:10 +0100 | [diff] [blame] | 49 | |
| 50 | /* Corpus statistic reload button */ |
| 51 | div.reloadStatB { |
| 52 | font-family: 'FontAwesome'; |
| 53 | padding-left: 2px; |
| 54 | z-index: 30; |
Akron | 2f97912 | 2018-07-25 17:00:23 +0200 | [diff] [blame] | 55 | } |
hebasta | 94f8ba6 | 2018-12-11 15:29:10 +0100 | [diff] [blame] | 56 | span.refresh::after{ |
| 57 | line-height: normal; |
| 58 | content : $fa-redo; |
| 59 | font-size: 15pt; |
| 60 | } |
| 61 | |
| 62 | /* Close-button should always be seen next to or above reload-button */ |
| 63 | .button-view.vcstatistic { |
| 64 | z-index: 30; |
| 65 | } |