blob: c9efd49fbf485e58cced8c5ea9f091b405b2bd2d [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;
75 .icon.icon__normal {
76 display: none;
77 }
78
79 @include mediaQuery(medium) {
80 flex: 1;
81 align-items: center;
82 background: transparent;
83 font-weight: 400;
84 margin-top: 0.5rem;
85 margin-bottom: 0.5rem;
86 }
87}
88
89.sensors__tbody-cell {
90 display: flex;
91 justify-content: space-between;
92 padding: 0.5rem 1rem;
93 @include fontCourierBold;
94
95 @include mediaQuery(medium) {
96 flex-grow: 0;
97 flex-shrink: 0;
98 flex-basis: 0;
99 align-items: center;
100 min-width: 16%;
101 justify-content: flex-start;
102 margin-top: 0.5rem;
103 margin-bottom: 0.5rem;
104 }
105}
106
107.sensors__tbody-cell__title {
Iftekharul Islam8947e702017-07-27 10:28:07 -0500108 font-weight: 300;
Derick Montague1f690f32019-06-23 12:20:17 -0500109
Iftekharul Islam8947e702017-07-27 10:28:07 -0500110 @include mediaQuery(medium) {
111 display: none;
112 }
113}
114
Derick Montague1f690f32019-06-23 12:20:17 -0500115.sensors__tbody-unit {
116 display: inline-block;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500117 color: $text-01;
Derick Montague1f690f32019-06-23 12:20:17 -0500118 margin-left: 0.5em;
119 font-weight: 700;
120 text-transform: uppercase;
Gunnar Mills615a2f82019-04-17 14:30:39 -0500121
Gunnar Mills615a2f82019-04-17 14:30:39 -0500122 @include mediaQuery(medium) {
Derick Montague1f690f32019-06-23 12:20:17 -0500123 margin-left: 0;
Gunnar Mills615a2f82019-04-17 14:30:39 -0500124 }
125}
126
Derick Montague1f690f32019-06-23 12:20:17 -0500127.sensors__tbody-degree {
128 display: inline-block;
129 margin-left: -8px;
130}
131
132.sensors__tbody-current {
133 background: darken($thresh-normal, 3%);
134
135 .sensors__tbody-cell__title {
Michael Davisaeedf9e2017-04-06 14:35:56 -0500136 font-weight: 700;
Iftekharul Islam8947e702017-07-27 10:28:07 -0500137 }
Derick Montague1f690f32019-06-23 12:20:17 -0500138}
139
140.sensors__tbody-current--critical {
141 background: $thresh-critical;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500142 color: $primary-light;
Derick Montague1f690f32019-06-23 12:20:17 -0500143
144 .sensors__tbody-unit {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500145 color: $primary-light;
Iftekharul Islam8947e702017-07-27 10:28:07 -0500146 }
Derick Montague1f690f32019-06-23 12:20:17 -0500147}
148
149.sensors__tbody-current--warn {
150 background: $thresh-warning;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500151 color: $primary-dark;
Derick Montague1f690f32019-06-23 12:20:17 -0500152
153 .sensors__tbody-unit {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500154 color: $primary-dark;
Michael Davisaeedf9e2017-04-06 14:35:56 -0500155 }
156}