Skip to content

Commit a3e97a1

Browse files
authored
fix(list): discrepancies with UI Kit (#15089)
1 parent c19cc0e commit a3e97a1

File tree

4 files changed

+10
-14
lines changed

4 files changed

+10
-14
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
@@ -74,7 +74,7 @@
7474
"@types/source-map": "0.5.2",
7575
"express": "^4.21.1",
7676
"fflate": "^0.8.1",
77-
"igniteui-theming": "^14.2.0",
77+
"igniteui-theming": "^14.3.0",
7878
"igniteui-trial-watermark": "^3.0.2",
7979
"lodash-es": "^4.17.21",
8080
"rxjs": "^7.8.0",

projects/igniteui-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"tslib": "^2.3.0",
7474
"igniteui-trial-watermark": "^3.0.2",
7575
"lodash-es": "^4.17.21",
76-
"igniteui-theming": "^14.2.0",
76+
"igniteui-theming": "^14.3.0",
7777
"@igniteui/material-icons-extended": "^3.1.0"
7878
},
7979
"peerDependencies": {

projects/igniteui-angular/src/lib/core/styles/components/list/_list-theme.scss

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@
373373
color: var-get($theme, 'item-text-color');
374374
background: var-get($theme, 'item-background');
375375

376-
@if $bootstrap-theme {
376+
@if $bootstrap-theme or $variant == 'fluent' {
377377
border-bottom: var-get($theme, 'border-width') solid var-get($theme, 'border-color');
378378

379379
&:last-of-type {
@@ -435,10 +435,7 @@
435435
display: flex;
436436
flex-direction: column;
437437
flex: 1 0 0%;
438-
439-
@if $variant == 'indigo' {
440-
gap: rem(2px);
441-
}
438+
gap: rem(2px);
442439

443440
&:empty {
444441
display: none;
@@ -447,7 +444,6 @@
447444

448445
%igx-list__item-line-subtitle {
449446
color: var-get($theme, 'item-subtitle-color');
450-
opacity: .74
451447
}
452448

453449
%igx-list__item-line-title {
@@ -563,13 +559,13 @@
563559
/// Uses the 'caption' and 'subtitle-1'
564560
/// categories from the typographic scale.
565561
/// @group typography
566-
/// @param {Map} $categories [(header: 'overline', item: 'subtitle-1', title: 'subtitle-1', subtitle: 'caption')] - The categories from the typographic scale used for type styles.
562+
/// @param {Map} $categories [(header: 'overline', item: 'subtitle-1', title: 'subtitle-1', subtitle: 'body-2')] - The categories from the typographic scale used for type styles.
567563
@mixin list-typography(
568564
$categories: (
569565
header: 'overline',
570566
item: 'subtitle-1',
571567
title: 'subtitle-1',
572-
subtitle: 'caption'
568+
subtitle: 'body-2'
573569
)
574570
) {
575571
$header: map.get($categories, 'header');

0 commit comments

Comments
 (0)