Skip to content

Commit

Permalink
Merge branch 'master' into schematics-types
Browse files Browse the repository at this point in the history
  • Loading branch information
Lipata committed Feb 9, 2024
2 parents 95f54ea + d0972e5 commit edd5e0d
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 12 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"express": "^4.18.2",
"fflate": "^0.8.1",
"hammerjs": "^2.0.8",
"igniteui-theming": "^4.1.0",
"igniteui-theming": "^4.2.0",
"igniteui-trial-watermark": "^3.0.2",
"lodash-es": "^4.17.21",
"rxjs": "^7.8.0",
Expand Down
2 changes: 1 addition & 1 deletion projects/igniteui-angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"igniteui-trial-watermark": "^3.0.2",
"lodash-es": "^4.17.21",
"uuid": "^9.0.0",
"igniteui-theming": "^4.1.0",
"igniteui-theming": "^4.2.0",
"@igniteui/material-icons-extended": "^3.0.0"
},
"peerDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -464,12 +464,6 @@
map.get($items-gap, 'comfortable')
);


@if ($variant == 'bootstrap') {
// important is needed to override the typography margins
margin: rem(4px) !important;
}

igx-icon {
--component-size: var(--ig-size, var(--ig-size-large));
display: flex;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,11 @@
margin-inline: pad-inline(rem(4px), rem(4px), rem(16px));
margin-block-start: 0;

@if $bootstrap-theme {
// important is needed to override the typography margins
margin-block-end: rem(4px) !important;
}

igx-icon {
width: var(--igx-icon-size, #{rem(18px)});
height: var(--igx-icon-size, #{rem(18px)});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2660,6 +2660,12 @@
[igxIconButton] {
--ig-size: 1;
}

@if ($variant == 'bootstrap') {
[igxButton] {
margin: rem(4px);
}
}
}

%igx-grid__filtering-dropdown-items {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@
box-shadow: var-get($theme, 'shadow');
z-index: 4;
overflow: hidden;

@if $variant == 'bootstrap' {
border-bottom: rem(1px) solid var-get($theme, 'border-color');
}
}

%igx-navbar-part {
Expand Down

0 comments on commit edd5e0d

Please sign in to comment.