blob: 3952e66b4ea84f72ae05464c2271e2994f8c80ce [file] [log] [blame]
Akron2f979122018-07-25 17:00:23 +02001@charset "utf-8";
2@import "../util";
3
hebasta94f8ba62018-12-11 15:29:10 +01004
5/*
6Corpus statistic
7Graying corpus statistic
8*/
Akron2f979122018-07-25 17:00:23 +02009div.stattable {
hebasta94f8ba62018-12-11 15:29:10 +010010 display: flex;
11 flex-direction: row;
12}
13div.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 }
Akron2f979122018-07-25 17:00:23 +020047}
Akron2f979122018-07-25 17:00:23 +020048
hebasta94f8ba62018-12-11 15:29:10 +010049
50/* Corpus statistic reload button */
51div.reloadStatB {
52 font-family: 'FontAwesome';
53 padding-left: 2px;
54 z-index: 30;
Akron2f979122018-07-25 17:00:23 +020055 }
hebasta94f8ba62018-12-11 15:29:10 +010056span.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 }