blob: 6152683b4d2d1dc37e5d3e2ee67685f06da2c979 [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;
Michael Davisaeedf9e2017-04-06 14:35:56 -050011 font-weight: 700;
Iftekharul Islam8947e702017-07-27 10:28:07 -050012 .sensor__heading-current {
13 padding-right: 1em;
Michael Davisaeedf9e2017-04-06 14:35:56 -050014 }
15}
16
Iftekharul Islam8947e702017-07-27 10:28:07 -050017.sensor__heading-current {
18 margin: 0;
19 @include mediaQuery(medium) {
20 margin-left: 10px;
21 margin-right: 10px;
22 }
Michael Davisaeedf9e2017-04-06 14:35:56 -050023}
24
Iftekharul Islam8947e702017-07-27 10:28:07 -050025.sensor__label {
26 float: left;
27 font-weight: 300;
28 @include mediaQuery(medium) {
29 display: none;
30 }
31}
32
33.sensor__title {
34 min-width: 30%;
35 margin-bottom: 0;
36}
37
38.sensor__reading {
39 width: 100%;
40 text-align: right;
41 margin-bottom: 0;
42 display: none;
43 @include mediaQuery(medium) {
44 display: inline-block;
45 width: auto;
46 min-width: calc(70% * (1 / 5) - 10px);
47 }
48}
49
50.sensor__readings-row {
51 position: relative;
52 display: block;
53 margin: 0;
54 background: $white;
55 text-decoration: none;
56 border: 1px solid $medgrey;
57 background: lighten($lightgrey,1%);
58 margin-top: 1em;
59 @include mediaQuery(medium) {
60 padding: .3em 1em .3em 1.5em;
61 margin-top: 0;
62 border-top: 0;
63 background: transparent;
64 }
Iftekharul Islam8947e702017-07-27 10:28:07 -050065 .sensor__title {
Michael Davisaeedf9e2017-04-06 14:35:56 -050066 font-weight: 700;
Iftekharul Islam8947e702017-07-27 10:28:07 -050067 background: darken($lightgrey, 5%);
68 min-width: 100%;
69 padding: .8em;
70 @include mediaQuery(medium) {
71 min-width: 30%;
72 background: transparent;
73 padding: .5em .5em .5em 0;
74 }
75 }
76 .content-label {
77 font-size: 1em;
78 margin-left: .8em;
Michael Davisb8a41c12017-08-14 14:59:46 -050079 color: $darkgrey;
Iftekharul Islam8947e702017-07-27 10:28:07 -050080 }
81 .sensor__reading {
82 @include fontCourierBold;
83 display: block;
84 padding: .3em .8em;
85 @include mediaQuery(medium) {
86 display: inline-block;
87 padding: 0;
88 }
89 }
90 .sensor__current {
91 background: darken($thresh-normal, 3%);
92 margin: 0;
93 @include mediaQuery(medium) {
94 background: $thresh-normal;
95 padding: .7em 1em;
96 margin-left: 10px;
97 margin-right: 10px;
98 }
99 .sensor__label {
100 font-weight: 700;
101 @include mediaQuery(medium) {
102 font-weight:300;
103 }
104 }
105 }
106 .sensor__critical {
107 background: $thresh-critical;
108 color: $white;
109 .content-label {
110 color: $white;
111 }
112 }
113 .sensor__warn {
114 background: $thresh-warning;
115 color: $black;
116 .content-label {
Michael Davisaeedf9e2017-04-06 14:35:56 -0500117 color: $black;
118 }
Michael Davisaeedf9e2017-04-06 14:35:56 -0500119 }
Iftekharul Islam8947e702017-07-27 10:28:07 -0500120
Michael Davisaeedf9e2017-04-06 14:35:56 -0500121}
122
123// Sensors
124
125#sensors, #sensors-overview {
Iftekharul Islam8947e702017-07-27 10:28:07 -0500126
Michael Davisaeedf9e2017-04-06 14:35:56 -0500127 .content__search {
128 max-width: 100%;
129 @media(min-width: 1300px) {
Iftekharul Islam8947e702017-07-27 10:28:07 -0500130 max-width: 70%;
Michael Davisaeedf9e2017-04-06 14:35:56 -0500131 }
132 }
133 .toggle-filter {
Michael Davisaeedf9e2017-04-06 14:35:56 -0500134 margin-right: 0;
135 }
136}
137
Iftekharul Islam8947e702017-07-27 10:28:07 -0500138//end sensor details