blob: 7b7e98179f08abc6a94e62dfa3c0d8364d358f6e [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
Iftekharul Islamc0161392017-06-14 15:46:15 -050081.icon__info{
Michael Davis9486f542017-05-30 15:35:31 -050082 margin-top: -4px;
83 margin-right: .5em;
84 width: 25px;
85 height: 25px;
86 fill: $medblue;
87 float: left;
88}
89
90.icon__up-arrow {
91 margin-right: 1em;
92 &:before {
93 content: '\029C0';
94 position: absolute;
95 font-size: 3em;
96 left: 0;
97 top: -50%;
98 transform: rotate(90deg);
99 }
Iftekharul Islam4390b022017-06-05 09:44:50 -0500100 &.hide {
101 text-align: -9999px;
102 }
Michael Davis9486f542017-05-30 15:35:31 -0500103}
Michael Davis9486f542017-05-30 15:35:31 -0500104.icon__down-arrow {
105 margin-right: 1em;
106 &:before {
107 content: '\029C0';
108 position: absolute;
109 font-size: 3em;
110 left: -4px;
111 top: -50%;
112 transform: rotate(-90deg);
113 }
114}