blob: 2c803d211af0df5ad52b96927349f79623f9cc90 [file] [log] [blame]
Michael Davis9486f542017-05-30 15:35:31 -05001.icon {
2 display: inline-block;
3 width: 20px;
4 height: 20px;
5 position: relative;
6 speak: none;
Michael Davis5104ade2017-07-27 14:55:53 -05007 font-style: normal;
Michael Davis9486f542017-05-30 15:35:31 -05008 &.icon-as-spacer {
9 text-indent: -9999px;
10 }
11}
12
13.icon__more {
14 fill: $medblue;
15 stroke: $medblue;
16 background: $white;
17 overflow: visible;
Iftekharul Islam4390b022017-06-05 09:44:50 -050018 &:hover {
19 cursor: pointer;
20 }
Michael Davis9486f542017-05-30 15:35:31 -050021}
22
23.icon__more-dropdown {
24 background: $lightgrey;
25 position: absolute;
26 right: 3px;
27 white-space: normal;
28 word-wrap: normal;
29 z-index: 200;
30 padding: 1em;
31 font-size: 1em;
32 box-shadow: 2px 4px 5px $medgrey;
33}
34
35.icon__bar-arrow {
36 &:before {
37 content: '\21E5';
38 position: absolute;
39 font-size: 1.7em;
40 vertical-align: middle;
41 transform: rotate(90deg);
42 display: inline-block;
43 left: 0px;
44 top: -5px;
45 }
46}
47
Michael Davis5104ade2017-07-27 14:55:53 -050048.icon-angle {
49 &:before {
50 content: '\276F';
51 display: inline-block;
52 font-size: 1em;
53 margin-left: 1em;
54 color: lighten($darkgrey, 4%);
55 }
56}
57//Status icons
58@mixin status-icon {
Iftekharul Islam4390b022017-06-05 09:44:50 -050059 background-repeat: no-repeat;
60 vertical-align: middle;
Michael Davis5104ade2017-07-27 14:55:53 -050061 width: 20px;
62 height: 20px;
63 margin-right: .4em;
Michael Davis9486f542017-05-30 15:35:31 -050064}
65
Michael Davis5104ade2017-07-27 14:55:53 -050066.icon__warning {
67 @include status-icon;
68 background-image: url(/assets/images/icon-warning.svg);
69}
70
71.icon__critical {
72 @include status-icon;
Michael Davis6dc5f182017-06-26 13:07:27 -050073 background-image: url(/assets/images/icon-critical.svg);
Michael Davis5104ade2017-07-27 14:55:53 -050074}
75
76.icon__good {
77 @include status-icon;
78 background-image: url(/assets/images/icon-on.svg);
Michael Davis6dc5f182017-06-26 13:07:27 -050079}
80
Michael Davis44621a82017-07-31 18:18:32 -050081.icon__off {
82 @include status-icon;
83 background-image: url(/assets/images/icon-off.svg);
84}
85
Iftekharul Islamc0161392017-06-14 15:46:15 -050086.icon__info{
Michael Davis9486f542017-05-30 15:35:31 -050087 margin-top: -4px;
88 margin-right: .5em;
89 width: 25px;
90 height: 25px;
91 fill: $medblue;
92 float: left;
93}
94
95.icon__up-arrow {
96 margin-right: 1em;
97 &:before {
98 content: '\029C0';
99 position: absolute;
100 font-size: 3em;
101 left: 0;
102 top: -50%;
103 transform: rotate(90deg);
104 }
Iftekharul Islam4390b022017-06-05 09:44:50 -0500105 &.hide {
106 text-align: -9999px;
107 }
Michael Davis9486f542017-05-30 15:35:31 -0500108}
Michael Davis9486f542017-05-30 15:35:31 -0500109.icon__down-arrow {
110 margin-right: 1em;
111 &:before {
112 content: '\029C0';
113 position: absolute;
114 font-size: 3em;
115 left: -4px;
116 top: -50%;
117 transform: rotate(-90deg);
118 }
119}