summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics/style.css
blob: 7bd60b44be786dc8594e811aec51f4e6bed1d726 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.to-top-btn {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 100;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    font-size: 20px;
    line-height: 40px;
}

.meter {
    position: relative;
    border-radius: 5px;
    border: 1px solid #999;
    background: linear-gradient(to right, #9e6 0%, #fb8 66%, #f32 100%);
    height: 1.25em;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.meter .bar {
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    background: #efe;
    display: inline-block;
    padding: 0;
    margin: 0 0 0 auto;
}

.meter .text {
    position: absolute;
    overflow: visible;
    font-size: 8pt;
    white-space: nowrap;
    z-index: 1000;
    text-shadow: #fff 1px 1px;
}

.meter .left {
    left: 5px;
}

.meter .right {
    right: 5px;
}

.warn {
    background: #F0AD4E;
    font-size: 75%;
    border-radius: 3px;
    color: #fff;
    padding: 1px 3px;
}

.dropdown-menu .btn.btn-machine-action {
    text-align: left;
}

.open > .dropdown-menu {
    min-width: inherit;
}

.filter-list .filter-row {
    margin-bottom: 2px;
}

.filter-list input, .filter-list select {
    padding: 3px 7px;
}

@media(min-width: 992px) {
    .filter-list {
        column-count:2;
        column-gap:20px;
        column-rule: 1px solid #eee;
    }
}

.slx-focus {
  animation-name: slxFocus;
  animation-duration: .3s;
  animation-iteration-count: 2;
  animation-timing-function: ease;
}

@keyframes slxFocus {
  0% { background: unset }
  50% { background: #f2dede }
  100%   { background: unset }
}

.slx-right {
    float: right;
}
@media (min-width: 1650px) {
    .slx-right {
        position: fixed;
        right: 10px;
        display: block;
        min-width: 140px;
        width: calc(100vw - 1550px);
        float: none !important;
    }
}

.infobox {
    border: 1px solid #aaa;
    background: #eee;
    border-radius: 3px;
    margin: 3px auto;
    padding: 0 2px;
}