|
181 | 181 | @mixin igx-drop-down($theme) {
|
182 | 182 | @include igx-root-css-vars($theme);
|
183 | 183 |
|
184 |
| - $desktop-item-height: 48px; |
185 |
| - $mobile-item-height: 32px; |
| 184 | + $item-height: ( |
| 185 | + confortable: rem(48px), |
| 186 | + cosy: rem(32px), |
| 187 | + compact: rem(24px) |
| 188 | + ); |
186 | 189 |
|
187 |
| - $item-padding: 16px; |
| 190 | + $item-padding-confortable:rem(16px); |
| 191 | + $item-padding-cosy:rem(8px); |
| 192 | + $item-padding-compact:rem(16px); |
188 | 193 |
|
189 |
| - $desktop-header-padding: 16px; |
190 |
| - $mobile-header-padding: 8px; |
| 194 | + $item-padding: ( |
| 195 | + confortable: 0 $item-padding-confortable, |
| 196 | + cosy: 0 $item-padding-cosy, |
| 197 | + compact: 0 $item-padding-compact |
| 198 | + ); |
191 | 199 |
|
192 | 200 | %igx-drop-down {
|
193 | 201 | max-height: 100%;
|
|
212 | 220 | }
|
213 | 221 | }
|
214 | 222 |
|
215 |
| - %igx-drop-down__list--select { |
216 |
| - max-width: calc(100% + #{$item-padding} * 2); |
217 |
| - } |
218 |
| - |
219 | 223 | %igx-drop-down__header,
|
220 | 224 | %igx-drop-down__item {
|
221 | 225 | display: flex;
|
222 | 226 | justify-content: flex-start;
|
223 | 227 | align-items: center;
|
224 | 228 | width: 100%;
|
225 | 229 | white-space: nowrap;
|
| 230 | + height: map-get($item-height, 'confortable'); |
| 231 | + } |
| 232 | + |
| 233 | + %igx-drop-down__item--cosy { |
| 234 | + height: map-get($item-height, 'cosy'); |
| 235 | + padding: map-get($item-padding, 'cosy'); |
| 236 | + // |
| 237 | + //&%igx-drop-down__list--select { |
| 238 | + // max-width: calc(100% + #{$item-padding-cosy} * 2); |
| 239 | + //} |
| 240 | + } |
| 241 | + |
| 242 | + %igx-drop-down__item--compact { |
| 243 | + height: map-get($item-height, 'compact'); |
| 244 | + padding: map-get($item-padding, 'compact'); |
| 245 | + // |
| 246 | + //&%igx-drop-down__list--select { |
| 247 | + // max-width: calc(100% + #{$item-padding-compact} * 2); |
| 248 | + //} |
226 | 249 | }
|
227 | 250 |
|
228 | 251 | %igx-drop-down__item {
|
229 | 252 | color: --var($theme, 'item-text-color');
|
230 | 253 | cursor: pointer;
|
231 |
| - height: rem($desktop-item-height); |
232 |
| - padding: 0 rem($item-padding); |
| 254 | + padding: map-get($item-padding, 'confortable'); |
| 255 | + |
| 256 | + //&%igx-drop-down__list--select { |
| 257 | + // max-width: calc(100% + #{$item-padding-confortable} * 2); |
| 258 | + //} |
233 | 259 |
|
234 | 260 | &:focus {
|
235 | 261 | outline: 0;
|
|
254 | 280 | %igx-drop-down__header {
|
255 | 281 | color: --var($theme, 'header-text-color');
|
256 | 282 | pointer-events: none;
|
257 |
| - padding: rem(8px) rem($desktop-header-padding); |
| 283 | + padding: map-get($item-padding, 'confortable'); |
| 284 | + } |
| 285 | + |
| 286 | + %igx-drop-down__header--cosy { |
| 287 | + height: map-get($item-height, 'cosy'); |
| 288 | + padding: map-get($item-padding, 'confortable'); |
| 289 | + |
| 290 | + } |
| 291 | + |
| 292 | + %igx-drop-down__header--compact { |
| 293 | + height: map-get($item-height, 'compact'); |
| 294 | + padding: map-get($item-padding, 'confortable'); |
258 | 295 | }
|
259 | 296 |
|
260 | 297 | %igx-drop-down__group {
|
|
265 | 302 | }
|
266 | 303 |
|
267 | 304 | %igx-drop-down__item {
|
268 |
| - text-indent: rem($desktop-header-padding); |
| 305 | + text-indent: map-get($item-padding, 'confortable') ; |
269 | 306 | }
|
270 | 307 | }
|
271 | 308 |
|
|
0 commit comments