Skip to content

Commit edd5e0d

Browse files
authored
Merge branch 'master' into schematics-types
2 parents 95f54ea + d0972e5 commit edd5e0d

File tree

7 files changed

+21
-12
lines changed

7 files changed

+21
-12
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"express": "^4.18.2",
7373
"fflate": "^0.8.1",
7474
"hammerjs": "^2.0.8",
75-
"igniteui-theming": "^4.1.0",
75+
"igniteui-theming": "^4.2.0",
7676
"igniteui-trial-watermark": "^3.0.2",
7777
"lodash-es": "^4.17.21",
7878
"rxjs": "^7.8.0",

projects/igniteui-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"igniteui-trial-watermark": "^3.0.2",
7777
"lodash-es": "^4.17.21",
7878
"uuid": "^9.0.0",
79-
"igniteui-theming": "^4.1.0",
79+
"igniteui-theming": "^4.2.0",
8080
"@igniteui/material-icons-extended": "^3.0.0"
8181
},
8282
"peerDependencies": {

projects/igniteui-angular/src/lib/core/styles/components/button/_button-theme.scss

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -464,12 +464,6 @@
464464
map.get($items-gap, 'comfortable')
465465
);
466466

467-
468-
@if ($variant == 'bootstrap') {
469-
// important is needed to override the typography margins
470-
margin: rem(4px) !important;
471-
}
472-
473467
igx-icon {
474468
--component-size: var(--ig-size, var(--ig-size-large));
475469
display: flex;

projects/igniteui-angular/src/lib/core/styles/components/grid/_excel-filtering-theme.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,11 @@
459459
margin-inline: pad-inline(rem(4px), rem(4px), rem(16px));
460460
margin-block-start: 0;
461461

462+
@if $bootstrap-theme {
463+
// important is needed to override the typography margins
464+
margin-block-end: rem(4px) !important;
465+
}
466+
462467
igx-icon {
463468
width: var(--igx-icon-size, #{rem(18px)});
464469
height: var(--igx-icon-size, #{rem(18px)});

projects/igniteui-angular/src/lib/core/styles/components/grid/_grid-theme.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2660,6 +2660,12 @@
26602660
[igxIconButton] {
26612661
--ig-size: 1;
26622662
}
2663+
2664+
@if ($variant == 'bootstrap') {
2665+
[igxButton] {
2666+
margin: rem(4px);
2667+
}
2668+
}
26632669
}
26642670

26652671
%igx-grid__filtering-dropdown-items {

projects/igniteui-angular/src/lib/core/styles/components/navbar/_navbar-theme.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@
108108
box-shadow: var-get($theme, 'shadow');
109109
z-index: 4;
110110
overflow: hidden;
111+
112+
@if $variant == 'bootstrap' {
113+
border-bottom: rem(1px) solid var-get($theme, 'border-color');
114+
}
111115
}
112116

113117
%igx-navbar-part {

0 commit comments

Comments
 (0)