Skip to content

Commit a170147

Browse files
authored
fix(pivot-selector): cropped box shadow of bootstrap input (#13270)
1 parent e6dde84 commit a170147

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

projects/igniteui-angular/src/lib/core/styles/components/grid/_pivot-data-selector-theme.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,20 @@
2525
}
2626

2727
$theme: digest-schema($pivot-data-selector-schema);
28+
$meta: map.get($theme, '_meta');
2829

2930
@return extend($theme, (
3031
name: $name,
32+
_meta: map.merge(if($meta, $meta, ()), (
33+
variant: map.get($schema, '_meta', 'theme')
34+
)),
3135
));
3236
}
3337

3438
/// @param {Map} $theme - The theme used to style the component.
3539
@mixin pivot-data-selector($theme) {
3640
@include css-vars($theme);
41+
$variant: map.get($theme, '_meta', 'variant');
3742

3843
$chip-height-material: (
3944
comfortable: rem(22px),
@@ -139,6 +144,12 @@
139144
flex-direction: column;
140145
overflow: hidden;
141146

147+
igx-input-group {
148+
@if $variant == 'bootstrap' {
149+
padding: rem(4px);
150+
}
151+
}
152+
142153
igx-list {
143154
display: flex;
144155
flex-direction: column;

0 commit comments

Comments
 (0)