Michael Davis | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 1 | .icon { |
2 | display: inline-block; | ||||
Yoshie Muranaka | c86ce3c | 2019-06-05 12:30:30 -0500 | [diff] [blame] | 3 | width: 1.5em; |
4 | height: auto; | ||||
Michael Davis | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 5 | } |
6 | |||||
7 | .icon__more { | ||||
Yoshie Muranaka | 6f7ec80 | 2019-06-24 14:35:41 -0500 | [diff] [blame] | 8 | fill: $primary-accent; |
9 | stroke: $primary-accent; | ||||
Michael Davis | 75f94d9 | 2017-08-08 14:00:03 -0500 | [diff] [blame] | 10 | background: transparent; |
Michael Davis | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 11 | overflow: visible; |
Iftekharul Islam | 4390b02 | 2017-06-05 09:44:50 -0500 | [diff] [blame] | 12 | &:hover { |
13 | cursor: pointer; | ||||
14 | } | ||||
Michael Davis | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 15 | } |
16 | |||||
17 | .icon__more-dropdown { | ||||
Yoshie Muranaka | 6f7ec80 | 2019-06-24 14:35:41 -0500 | [diff] [blame] | 18 | background: $background-02; |
Michael Davis | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 19 | 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 Muranaka | 6f7ec80 | 2019-06-24 14:35:41 -0500 | [diff] [blame] | 26 | box-shadow: 2px 4px 5px $box-shadow-color; |
Michael Davis | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 27 | } |
28 | |||||
29 | .icon__bar-arrow { | ||||
Yoshie Muranaka | c86ce3c | 2019-06-05 12:30:30 -0500 | [diff] [blame] | 30 | font-style: normal; |
Michael Davis | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 31 | &: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 Davis | 5104ade | 2017-07-27 14:55:53 -0500 | [diff] [blame] | 43 | .icon-angle { |
Yoshie Muranaka | c86ce3c | 2019-06-05 12:30:30 -0500 | [diff] [blame] | 44 | font-style: normal; |
Michael Davis | 5104ade | 2017-07-27 14:55:53 -0500 | [diff] [blame] | 45 | &:before { |
46 | content: '\276F'; | ||||
47 | display: inline-block; | ||||
48 | font-size: 1em; | ||||
49 | margin-left: 1em; | ||||
Yoshie Muranaka | 6f7ec80 | 2019-06-24 14:35:41 -0500 | [diff] [blame] | 50 | color: $text-02; |
Michael Davis | 5104ade | 2017-07-27 14:55:53 -0500 | [diff] [blame] | 51 | } |
52 | } | ||||
Michael Davis | 44621a8 | 2017-07-31 18:18:32 -0500 | [diff] [blame] | 53 | |
Iftekharul Islam | c016139 | 2017-06-14 15:46:15 -0500 | [diff] [blame] | 54 | .icon__info{ |
Michael Davis | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 55 | margin-top: -4px; |
56 | margin-right: .5em; | ||||
57 | width: 25px; | ||||
58 | height: 25px; | ||||
Yoshie Muranaka | 6f7ec80 | 2019-06-24 14:35:41 -0500 | [diff] [blame] | 59 | fill: $primary-accent; |
Michael Davis | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 60 | float: left; |
61 | } | ||||
62 | |||||
63 | .icon__up-arrow { | ||||
Michael Davis | c8a099e | 2017-08-03 13:39:03 -0500 | [diff] [blame] | 64 | margin-right: .4em; |
65 | margin-bottom: -15px; | ||||
Ed Tanous | bbcf670 | 2017-10-06 13:53:06 -0700 | [diff] [blame] | 66 | background: url(../assets/images/icon-arrow-blue.svg) center center no-repeat; |
Michael Davis | c8a099e | 2017-08-03 13:39:03 -0500 | [diff] [blame] | 67 | height: 40px; |
68 | width: 30px; | ||||
69 | &.icon-as-spacer { | ||||
Ed Tanous | bbcf670 | 2017-10-06 13:53:06 -0700 | [diff] [blame] | 70 | background: url(../assets/images/icon-arrow-gray.svg) center center no-repeat; |
Iftekharul Islam | 4390b02 | 2017-06-05 09:44:50 -0500 | [diff] [blame] | 71 | } |
Michael Davis | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 72 | } |
Yoshie Muranaka | c86ce3c | 2019-06-05 12:30:30 -0500 | [diff] [blame] | 73 | |
Michael Davis | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 74 | .icon__down-arrow { |
Michael Davis | c8a099e | 2017-08-03 13:39:03 -0500 | [diff] [blame] | 75 | @extend .icon__up-arrow; |
76 | transform: rotate(180deg); | ||||
Ed Tanous | bbcf670 | 2017-10-06 13:53:06 -0700 | [diff] [blame] | 77 | } |
Yoshie Muranaka | 4b366b5 | 2019-09-24 08:32:42 -0700 | [diff] [blame] | 78 | |
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 Muranaka | 81ad97e | 2019-10-07 10:08:57 -0700 | [diff] [blame^] | 88 | |
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 | } |