Skip to content

Commit c6dccb1

Browse files
author
MPopov
committed
style(drop-down): Aadding classes for different density types
Closes #2960
1 parent a2cf288 commit c6dccb1

File tree

2 files changed

+66
-13
lines changed

2 files changed

+66
-13
lines changed

projects/igniteui-angular/src/lib/core/styles/components/drop-down/_drop-down-component.scss

+16
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@
2424
@extend %igx-drop-down__item !optional;
2525
}
2626

27+
@include e(item, $m: cosy) {
28+
@extend %igx-drop-down__item--cosy !optional;
29+
}
30+
31+
@include e(item, $m: compact) {
32+
@extend %igx-drop-down__item--compact !optional;
33+
}
34+
2735
@include e(item, $m: focused) {
2836
@extend %igx-drop-down__item--focused !optional;
2937
}
@@ -44,6 +52,14 @@
4452
@extend %igx-drop-down__header !optional;
4553
}
4654

55+
@include e(header, $m: cosy) {
56+
@extend %igx-drop-down__header--cosy !optional;
57+
}
58+
59+
@include e(header, $m: compact) {
60+
@extend %igx-drop-down__header--compact !optional;
61+
}
62+
4763
@include e(group) {
4864
@extend %igx-drop-down__group !optional;
4965
}

projects/igniteui-angular/src/lib/core/styles/components/drop-down/_drop-down-theme.scss

+50-13
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,21 @@
181181
@mixin igx-drop-down($theme) {
182182
@include igx-root-css-vars($theme);
183183

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+
);
186189

187-
$item-padding: 16px;
190+
$item-padding-confortable:rem(16px);
191+
$item-padding-cosy:rem(8px);
192+
$item-padding-compact:rem(16px);
188193

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+
);
191199

192200
%igx-drop-down {
193201
max-height: 100%;
@@ -212,24 +220,42 @@
212220
}
213221
}
214222

215-
%igx-drop-down__list--select {
216-
max-width: calc(100% + #{$item-padding} * 2);
217-
}
218-
219223
%igx-drop-down__header,
220224
%igx-drop-down__item {
221225
display: flex;
222226
justify-content: flex-start;
223227
align-items: center;
224228
width: 100%;
225229
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+
//}
226249
}
227250

228251
%igx-drop-down__item {
229252
color: --var($theme, 'item-text-color');
230253
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+
//}
233259

234260
&:focus {
235261
outline: 0;
@@ -254,7 +280,18 @@
254280
%igx-drop-down__header {
255281
color: --var($theme, 'header-text-color');
256282
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');
258295
}
259296

260297
%igx-drop-down__group {
@@ -265,7 +302,7 @@
265302
}
266303

267304
%igx-drop-down__item {
268-
text-indent: rem($desktop-header-padding);
305+
text-indent: map-get($item-padding, 'confortable') ;
269306
}
270307
}
271308

0 commit comments

Comments
 (0)