Left: | ||
Right: |
OLD | NEW |
---|---|
1 // This file is part of help.eyeo.com. | 1 // This file is part of help.eyeo.com. |
2 // Copyright (C) 2017 Eyeo GmbH | 2 // Copyright (C) 2017 Eyeo GmbH |
3 // | 3 // |
4 // help.eyeo.com is free software: you can redistribute it and/or modify | 4 // help.eyeo.com is free software: you can redistribute it and/or modify |
5 // it under the terms of the GNU General Public License as published by | 5 // it under the terms of the GNU General Public License as published by |
6 // the Free Software Foundation, either version 3 of the License, or | 6 // the Free Software Foundation, either version 3 of the License, or |
7 // (at your option) any later version. | 7 // (at your option) any later version. |
8 // | 8 // |
9 // help.eyeo.com is distributed in the hope that it will be useful, | 9 // help.eyeo.com is distributed in the hope that it will be useful, |
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
45 bottom: 100%; | 45 bottom: 100%; |
46 left: 0px; | 46 left: 0px; |
47 margin-bottom: 0.5em; | 47 margin-bottom: 0.5em; |
48 padding: 0.7em; | 48 padding: 0.7em; |
49 border: 1px solid $gray-medium; | 49 border: 1px solid $gray-medium; |
50 border-radius: 4px; | 50 border-radius: 4px; |
51 box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3); | 51 box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3); |
52 color: $black; | 52 color: $black; |
53 background: $white; | 53 background: $white; |
54 list-style: none; | 54 list-style: none; |
55 z-index: 2; | |
55 | 56 |
56 a | 57 a |
57 { | 58 { |
58 color: $black; | 59 color: $black; |
59 } | 60 } |
60 } | 61 } |
61 | 62 |
62 .custom-select-options[aria-hidden="true"] | 63 .custom-select-options[aria-hidden="true"] |
63 { | 64 { |
64 display: none; | 65 display: none; |
(...skipping 30 matching lines...) Expand all Loading... | |
95 li:last-child:after | 96 li:last-child:after |
96 { | 97 { |
97 content: none; | 98 content: none; |
98 } | 99 } |
99 | 100 |
100 a | 101 a |
101 { | 102 { |
102 color: inherit; | 103 color: inherit; |
103 } | 104 } |
104 } | 105 } |
106 | |
107 // Custom Dropdown (extends the custom select element) | |
108 | |
juliandoucette
2017/10/24 12:12:29
NIT/Suggest: Move the padding left/right from the
ire
2017/10/27 10:22:58
Done.
| |
109 .custom-select-dropdown img | |
110 { | |
111 @extend .heading-icon; | |
112 } | |
113 | |
114 .custom-select-dropdown .custom-select-selected, | |
115 .custom-select-dropdown .custom-select-options | |
116 { | |
117 width: 100%; | |
118 } | |
119 | |
120 .custom-select-dropdown .custom-select-selected | |
121 { | |
122 position: relative; | |
123 height: 2.5em; | |
124 padding-right: 3.5em; | |
125 color: $primary; | |
126 text-align: left; | |
127 } | |
128 | |
129 [dir="rtl"] .custom-select-dropdown .custom-select-selected | |
130 { | |
131 padding-right: 0.7em; | |
juliandoucette
2017/10/24 12:12:29
NIT/TOL: It's strange that you are padding-right h
ire
2017/10/27 10:22:58
Done.
| |
132 padding-left: 3.5em; | |
133 text-align: right; | |
134 } | |
135 | |
136 .custom-select-dropdown .custom-select-selected:after | |
137 { | |
138 position: absolute; | |
139 top: 0; | |
140 right: 0; | |
141 width: 3em; | |
142 height: 100%; | |
143 border-left: 2px solid $gray-medium; | |
144 background-image: url(/img/png/arrow-icon-down-secondary.png); | |
145 background-image: linear-gradient(transparent, transparent), | |
146 url(/img/svg/arrow-icon-down-secondary.svg); | |
147 background-repeat: no-repeat; | |
148 background-position: center; | |
149 background-size: 0.7em; | |
150 content: ""; | |
151 } | |
152 | |
153 [dir="rtl"] .custom-select-dropdown .custom-select-selected:after | |
154 { | |
155 right: auto; | |
156 left: 0; | |
157 border-right: 2px solid $gray-medium; | |
158 border-left: 0; | |
159 } | |
160 | |
161 .custom-select-dropdown .custom-select-options | |
162 { | |
163 top: 100%; | |
164 bottom: auto; | |
165 } | |
166 | |
167 .custom-select-dropdown .custom-select-options li | |
168 { | |
169 line-height: 2.5em; | |
170 } | |
OLD | NEW |