blob: 757969e26d3ace7998a73eb573cdd3bb8e65a051 [file] [log] [blame]
Michael Davis9486f542017-05-30 15:35:31 -05001.icon {
2 display: inline-block;
Yoshie Muranakac86ce3c2019-06-05 12:30:30 -05003 width: 1.5em;
4 height: auto;
Michael Davis9486f542017-05-30 15:35:31 -05005}
6
7.icon__more {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -05008 fill: $primary-accent;
9 stroke: $primary-accent;
Michael Davis75f94d92017-08-08 14:00:03 -050010 background: transparent;
Michael Davis9486f542017-05-30 15:35:31 -050011 overflow: visible;
Iftekharul Islam4390b022017-06-05 09:44:50 -050012 &:hover {
13 cursor: pointer;
14 }
Michael Davis9486f542017-05-30 15:35:31 -050015}
16
17.icon__more-dropdown {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050018 background: $background-02;
Michael Davis9486f542017-05-30 15:35:31 -050019 position: absolute;
20 right: 3px;
21 white-space: normal;
22 word-wrap: normal;
23 z-index: 200;
24 padding: 1em;
25 font-size: 1em;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050026 box-shadow: 2px 4px 5px $box-shadow-color;
Michael Davis9486f542017-05-30 15:35:31 -050027}
28
29.icon__bar-arrow {
Yoshie Muranakac86ce3c2019-06-05 12:30:30 -050030 font-style: normal;
Michael Davis9486f542017-05-30 15:35:31 -050031 &:before {
32 content: '\21E5';
33 position: absolute;
34 font-size: 1.7em;
35 vertical-align: middle;
36 transform: rotate(90deg);
37 display: inline-block;
38 left: 0px;
39 top: -5px;
40 }
41}
42
Michael Davis5104ade2017-07-27 14:55:53 -050043.icon-angle {
Yoshie Muranakac86ce3c2019-06-05 12:30:30 -050044 font-style: normal;
Michael Davis5104ade2017-07-27 14:55:53 -050045 &:before {
46 content: '\276F';
47 display: inline-block;
48 font-size: 1em;
49 margin-left: 1em;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050050 color: $text-02;
Michael Davis5104ade2017-07-27 14:55:53 -050051 }
52}
Michael Davis44621a82017-07-31 18:18:32 -050053
Iftekharul Islamc0161392017-06-14 15:46:15 -050054.icon__info{
Michael Davis9486f542017-05-30 15:35:31 -050055 margin-top: -4px;
56 margin-right: .5em;
57 width: 25px;
58 height: 25px;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050059 fill: $primary-accent;
Michael Davis9486f542017-05-30 15:35:31 -050060 float: left;
61}
62
63.icon__up-arrow {
Michael Davisc8a099e2017-08-03 13:39:03 -050064 margin-right: .4em;
65 margin-bottom: -15px;
Ed Tanousbbcf6702017-10-06 13:53:06 -070066 background: url(../assets/images/icon-arrow-blue.svg) center center no-repeat;
Michael Davisc8a099e2017-08-03 13:39:03 -050067 height: 40px;
68 width: 30px;
69 &.icon-as-spacer {
Ed Tanousbbcf6702017-10-06 13:53:06 -070070 background: url(../assets/images/icon-arrow-gray.svg) center center no-repeat;
Iftekharul Islam4390b022017-06-05 09:44:50 -050071 }
Michael Davis9486f542017-05-30 15:35:31 -050072}
Yoshie Muranakac86ce3c2019-06-05 12:30:30 -050073
Michael Davis9486f542017-05-30 15:35:31 -050074.icon__down-arrow {
Michael Davisc8a099e2017-08-03 13:39:03 -050075 @extend .icon__up-arrow;
76 transform: rotate(180deg);
Ed Tanousbbcf6702017-10-06 13:53:06 -070077}
Yoshie Muranaka4b366b52019-09-24 08:32:42 -070078
79.icon__info-tooltip {
80 fill: $primary-accent;
81}
82
83.status-icon {
84 width: 1rem;
85 vertical-align: text-bottom;
86 margin-right: 0.25em;
87}
Yoshie Muranaka81ad97e2019-10-07 10:08:57 -070088
89.icon__info-tooltip {
90 fill: $primary-accent;
91}
92
93.tooltip {
94 @include fontFamily;
95 font-weight: normal;
96 line-height: 1.3;
97}
98
99.tooltip-inner {
100 color: $text-01;
101 background-color: $primary-light;
102 border-radius: 0;
103 border: 1px solid $primary-dark;
104 text-align: left;
105}
106
107.tooltip.in {
108 opacity: 1!important;
109}