blob: ab0446fa3a25dc55295c0f8eace81787bd212765 [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;
Michael Davis75f94d92017-08-08 14:00:03 -050016 background: transparent;
Michael Davis9486f542017-05-30 15:35:31 -050017 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 Davis9632d712017-08-28 18:36:53 -050061 width: 16px;
62 height: 16px;
Michael Davis5104ade2017-07-27 14:55:53 -050063 margin-right: .4em;
Iftekharul Islamec6bcd12017-09-06 10:49:07 -050064 margin-left: .3em;
Michael Davis9486f542017-05-30 15:35:31 -050065}
66
Michael Davis5104ade2017-07-27 14:55:53 -050067.icon__warning {
68 @include status-icon;
69 background-image: url(/assets/images/icon-warning.svg);
70}
71
Iftekharul Islamec6bcd12017-09-06 10:49:07 -050072.modal .icon__warning {
73 width: 30px;
74 height: 30px;
75}
76
Michael Davis5104ade2017-07-27 14:55:53 -050077.icon__critical {
78 @include status-icon;
Michael Davis6dc5f182017-06-26 13:07:27 -050079 background-image: url(/assets/images/icon-critical.svg);
Michael Davis5104ade2017-07-27 14:55:53 -050080}
81
82.icon__good {
83 @include status-icon;
84 background-image: url(/assets/images/icon-on.svg);
Michael Davis6dc5f182017-06-26 13:07:27 -050085}
86
Michael Davis44621a82017-07-31 18:18:32 -050087.icon__off {
88 @include status-icon;
89 background-image: url(/assets/images/icon-off.svg);
90}
91
Michael Davis640d28a2017-08-15 16:58:07 -050092.icon__return {
93 @include status-icon;
94 background-image: url(/assets/images/icon-return.svg);
95}
96
Michael Davis348f7a82017-08-25 10:55:21 -050097.icon__standby {
98 @include status-icon;
99 background-image: url(/assets/images/icon-standby.svg);
100}
101
102.icon__plus {
103 @include status-icon;
104 background-image: url(/assets/images/icon-plus.svg);
105}
106
Iftekharul Islamc0161392017-06-14 15:46:15 -0500107.icon__info{
Michael Davis9486f542017-05-30 15:35:31 -0500108 margin-top: -4px;
109 margin-right: .5em;
110 width: 25px;
111 height: 25px;
112 fill: $medblue;
113 float: left;
114}
115
116.icon__up-arrow {
Michael Davisc8a099e2017-08-03 13:39:03 -0500117 margin-right: .4em;
118 margin-bottom: -15px;
119 background: url(/assets/images/icon-arrow-blue.svg) center center no-repeat;
120 height: 40px;
121 width: 30px;
122 &.icon-as-spacer {
123 background: url(/assets/images/icon-arrow-gray.svg) center center no-repeat;
Iftekharul Islam4390b022017-06-05 09:44:50 -0500124 }
Michael Davis9486f542017-05-30 15:35:31 -0500125}
Michael Davis9486f542017-05-30 15:35:31 -0500126.icon__down-arrow {
Michael Davisc8a099e2017-08-03 13:39:03 -0500127 @extend .icon__up-arrow;
128 transform: rotate(180deg);
Michael Davis9486f542017-05-30 15:35:31 -0500129}