blob: 6912f044f717dbc1f199a2dfe3a05128cf87c5c0 [file] [log] [blame]
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -05001// Threshold graphs
2$thresh-critical: $status-error;
3$thresh-warning: $accent-03--02;
4$thresh-normal: $accent-02--02;
5
Derick Montague1f690f32019-06-23 12:20:17 -05006.sensors {
7 max-width: 1196px;
Michael Davisaeedf9e2017-04-06 14:35:56 -05008}
9
Derick Montague1f690f32019-06-23 12:20:17 -050010.sensors__table {
11 display: block;
12 border-collapse: collapse;
Michael Davisaeedf9e2017-04-06 14:35:56 -050013}
14
Derick Montague1f690f32019-06-23 12:20:17 -050015.sensors__thead {
16 display: block;
17}
18
19.sensors__thead-row {
20 display: block;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050021 background: $background-05;
22 color: $primary-light;
Derick Montague1f690f32019-06-23 12:20:17 -050023 margin-bottom: 1rem;
24
Iftekharul Islam8947e702017-07-27 10:28:07 -050025 @include mediaQuery(medium) {
Derick Montague1f690f32019-06-23 12:20:17 -050026 display: flex;
27 margin-bottom: 0;
Iftekharul Islam8947e702017-07-27 10:28:07 -050028 }
Michael Davisaeedf9e2017-04-06 14:35:56 -050029}
30
Derick Montague1f690f32019-06-23 12:20:17 -050031.sensors__thead-cell {
32 display: block;
33 padding: 1rem;
34 font-weight: 700;
35
36 &:not(:first-child) {
37 display: none;
38 }
39
40 @include mediaQuery(medium) {
41 flex: 1;
42
43 &:not(:first-child) {
44 display: block;
45 flex-grow: 0;
46 flex-shrink: 0;
47 flex-basis: 0;
48 min-width: 16%;
49 }
50 }
51}
52
53.sensors__tbody {
54 display: block;
55}
56
57.sensors__tbody-row {
58 display: flex;
59 flex-direction: column;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050060 border: 1px solid $border-color-01;
Derick Montague1f690f32019-06-23 12:20:17 -050061 margin-bottom: 1rem;
62
63 @include mediaQuery(medium) {
64 display: flex;
65 flex-direction: row;
66 margin-bottom: 0;
67 }
68}
69
70.sensors__tbody-header {
71 display: block;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050072 background: $background-02;
Derick Montague1f690f32019-06-23 12:20:17 -050073 padding: 0.5rem 1rem;
74 font-weight: 700;
Derick Montague1f690f32019-06-23 12:20:17 -050075
76 @include mediaQuery(medium) {
77 flex: 1;
78 align-items: center;
79 background: transparent;
80 font-weight: 400;
81 margin-top: 0.5rem;
82 margin-bottom: 0.5rem;
83 }
84}
85
86.sensors__tbody-cell {
87 display: flex;
88 justify-content: space-between;
89 padding: 0.5rem 1rem;
90 @include fontCourierBold;
91
92 @include mediaQuery(medium) {
93 flex-grow: 0;
94 flex-shrink: 0;
95 flex-basis: 0;
96 align-items: center;
97 min-width: 16%;
98 justify-content: flex-start;
99 margin-top: 0.5rem;
100 margin-bottom: 0.5rem;
101 }
102}
103
104.sensors__tbody-cell__title {
Iftekharul Islam8947e702017-07-27 10:28:07 -0500105 font-weight: 300;
Derick Montague1f690f32019-06-23 12:20:17 -0500106
Iftekharul Islam8947e702017-07-27 10:28:07 -0500107 @include mediaQuery(medium) {
108 display: none;
109 }
110}
111
Derick Montague1f690f32019-06-23 12:20:17 -0500112.sensors__tbody-unit {
113 display: inline-block;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500114 color: $text-01;
Derick Montague1f690f32019-06-23 12:20:17 -0500115 margin-left: 0.5em;
116 font-weight: 700;
117 text-transform: uppercase;
Gunnar Mills615a2f82019-04-17 14:30:39 -0500118
Gunnar Mills615a2f82019-04-17 14:30:39 -0500119 @include mediaQuery(medium) {
Derick Montague1f690f32019-06-23 12:20:17 -0500120 margin-left: 0;
Gunnar Mills615a2f82019-04-17 14:30:39 -0500121 }
122}
123
Derick Montague1f690f32019-06-23 12:20:17 -0500124.sensors__tbody-degree {
125 display: inline-block;
126 margin-left: -8px;
127}
128
129.sensors__tbody-current {
130 background: darken($thresh-normal, 3%);
131
132 .sensors__tbody-cell__title {
Michael Davisaeedf9e2017-04-06 14:35:56 -0500133 font-weight: 700;
Iftekharul Islam8947e702017-07-27 10:28:07 -0500134 }
Derick Montague1f690f32019-06-23 12:20:17 -0500135}
136
137.sensors__tbody-current--critical {
138 background: $thresh-critical;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500139 color: $primary-light;
Derick Montague1f690f32019-06-23 12:20:17 -0500140
141 .sensors__tbody-unit {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500142 color: $primary-light;
Iftekharul Islam8947e702017-07-27 10:28:07 -0500143 }
Derick Montague1f690f32019-06-23 12:20:17 -0500144}
145
146.sensors__tbody-current--warn {
147 background: $thresh-warning;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500148 color: $primary-dark;
Derick Montague1f690f32019-06-23 12:20:17 -0500149
150 .sensors__tbody-unit {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500151 color: $primary-dark;
Michael Davisaeedf9e2017-04-06 14:35:56 -0500152 }
153}