blob: 6c81766b5f5b9773635da79870ff73801ac3fb98 [file] [log] [blame]
Michael Davisaeedf9e2017-04-06 14:35:56 -05001@mixin state-label {
2 text-transform: uppercase;
3 font-weight: 700;
4 font-size: .8em;
5}
6
7$title-minWidth: 210px;
8
Iftekharul Islam8947e702017-07-27 10:28:07 -05009.header__actions-bar {
10 padding-left: 1.5em;
Iftekharul Islam97280b32018-11-16 14:50:22 -060011 padding-right: 1em;
Michael Davisaeedf9e2017-04-06 14:35:56 -050012 font-weight: 700;
Iftekharul Islam97280b32018-11-16 14:50:22 -060013 .sensor__title {
14 margin-left: 1.5em;
15 }
Iftekharul Islam08054412017-08-25 10:29:57 -050016 .sensor__reading {
Iftekharul Islam97280b32018-11-16 14:50:22 -060017 margin-right: .2em;
Iftekharul Islam08054412017-08-25 10:29:57 -050018 }
Iftekharul Islam8947e702017-07-27 10:28:07 -050019 .sensor__heading-current {
20 padding-right: 1em;
Michael Davisaeedf9e2017-04-06 14:35:56 -050021 }
22}
23
Iftekharul Islam8947e702017-07-27 10:28:07 -050024.sensor__heading-current {
25 margin: 0;
26 @include mediaQuery(medium) {
27 margin-left: 10px;
28 margin-right: 10px;
29 }
Michael Davisaeedf9e2017-04-06 14:35:56 -050030}
31
Iftekharul Islam8947e702017-07-27 10:28:07 -050032.sensor__label {
33 float: left;
34 font-weight: 300;
35 @include mediaQuery(medium) {
36 display: none;
37 }
38}
39
Gunnar Mills615a2f82019-04-17 14:30:39 -050040.sensor__title {
41 min-width: 28%;
42 margin-bottom: 0;
43}
44
45.sensor__reading {
46 width: 100%;
47 text-align: right;
48 margin-bottom: 0;
49 display: none;
50 @include mediaQuery(medium) {
51 display: inline-block;
52 width: auto;
53 min-width: calc(70% * (1 / 5) - 18px);
54 }
55}
56
57.sensor__readings-row {
58 width: 100%;
59 position: relative;
60 display: block;
Iftekharul Islam8947e702017-07-27 10:28:07 -050061 margin: 0;
62 background: $white;
63 text-decoration: none;
64 border: 1px solid $medgrey;
65 background: lighten($lightgrey,1%);
Gunnar Mills615a2f82019-04-17 14:30:39 -050066 margin-top: 1em;
Iftekharul Islam8947e702017-07-27 10:28:07 -050067 @include mediaQuery(medium) {
Gunnar Mills615a2f82019-04-17 14:30:39 -050068 padding: .3em 1em .3em 1.5em;
Iftekharul Islam8947e702017-07-27 10:28:07 -050069 margin-top: 0;
70 border-top: 0;
71 background: transparent;
72 }
Iftekharul Islam8947e702017-07-27 10:28:07 -050073 .sensor__title {
Michael Davisaeedf9e2017-04-06 14:35:56 -050074 font-weight: 700;
Iftekharul Islam8947e702017-07-27 10:28:07 -050075 background: darken($lightgrey, 5%);
Gunnar Mills615a2f82019-04-17 14:30:39 -050076 min-width: 100%;
77 padding: .8em;
Iftekharul Islam8947e702017-07-27 10:28:07 -050078 @include mediaQuery(medium) {
Gunnar Mills615a2f82019-04-17 14:30:39 -050079 min-width: 30%;
Iftekharul Islam8947e702017-07-27 10:28:07 -050080 background: transparent;
Gunnar Mills615a2f82019-04-17 14:30:39 -050081 padding: .5em .5em .5em 0;
82 }
83 .icon__normal {
84 width: 0;
Iftekharul Islam08054412017-08-25 10:29:57 -050085 }
Iftekharul Islam8947e702017-07-27 10:28:07 -050086 }
Gunnar Mills615a2f82019-04-17 14:30:39 -050087 .content-label {
88 font-size: 1em;
89 margin-left: .8em;
90 color: $darkgrey;
91 }
92 .sensor__reading {
93 @include fontCourierBold;
Iftekharul Islam8947e702017-07-27 10:28:07 -050094 display: block;
Gunnar Mills615a2f82019-04-17 14:30:39 -050095 padding: .3em .8em;
Iftekharul Islam8947e702017-07-27 10:28:07 -050096 @include mediaQuery(medium) {
97 display: inline-block;
Gunnar Mills615a2f82019-04-17 14:30:39 -050098 padding: 0;
Iftekharul Islam8947e702017-07-27 10:28:07 -050099 }
100 }
Gunnar Mills615a2f82019-04-17 14:30:39 -0500101 .sensor__current {
102 background: darken($thresh-normal, 3%);
103 margin: 0;
Iftekharul Islam8947e702017-07-27 10:28:07 -0500104 @include mediaQuery(medium) {
Gunnar Mills615a2f82019-04-17 14:30:39 -0500105 background: $thresh-normal;
106 padding: .7em .3em;
107 margin-left: 10px;
108 min-width: 109px;
109 }
110 @include mediaQuery(large) {
111 background: $thresh-normal;
112 padding: .7em;
113 margin-left: .3em;
114 margin-right: .3em;
115 min-width: 150px;
116 }
117 .sensor__label {
118 font-weight: 700;
119 @include mediaQuery(medium) {
120 font-weight:300;
121 }
Iftekharul Islam8947e702017-07-27 10:28:07 -0500122 }
123 }
Gunnar Mills615a2f82019-04-17 14:30:39 -0500124 .sensor__critical {
Iftekharul Islam8947e702017-07-27 10:28:07 -0500125 background: $thresh-critical;
126 color: $white;
127 .content-label {
128 color: $white;
129 }
130 }
Gunnar Mills615a2f82019-04-17 14:30:39 -0500131 .sensor__warn {
Iftekharul Islam8947e702017-07-27 10:28:07 -0500132 background: $thresh-warning;
133 color: $black;
134 .content-label {
Michael Davisaeedf9e2017-04-06 14:35:56 -0500135 color: $black;
136 }
Michael Davisaeedf9e2017-04-06 14:35:56 -0500137 }
Gunnar Mills615a2f82019-04-17 14:30:39 -0500138
Michael Davisaeedf9e2017-04-06 14:35:56 -0500139}
140
141// Sensors
Gunnar Mills615a2f82019-04-17 14:30:39 -0500142
Michael Davisaeedf9e2017-04-06 14:35:56 -0500143#sensors, #sensors-overview {
Gunnar Mills615a2f82019-04-17 14:30:39 -0500144
Michael Davisaeedf9e2017-04-06 14:35:56 -0500145 .toggle-filter {
Iftekharul Islam97280b32018-11-16 14:50:22 -0600146 margin-bottom: 20px;
Yoshie Muranakac86ce3c2019-06-05 12:30:30 -0500147 font-size: 0.9em;
Iftekharul Islam97280b32018-11-16 14:50:22 -0600148 }
149 .column, .columns {
150 padding-left: 0px;
151 padding-right: 0px;
Michael Davisaeedf9e2017-04-06 14:35:56 -0500152 }
153}
154
Gunnar Mills84e114a2018-11-14 13:44:41 -0600155//end sensor details