Skip to content

Commit

Permalink
fix(css): --ion-item-background > --ion-item-background-color (#15101)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlacombe authored and manucorporat committed Aug 11, 2018
1 parent 35837c3 commit e3010e1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/src/components/card/card.ios.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// --------------------------------------------------

:host {
--ion-color-base: var(--ion-item-background, transparent);
--ion-color-base: var(--ion-item-background-color, transparent);
--ion-color-contrast: #{$card-ios-text-color};

@include margin($card-ios-margin-top, $card-ios-margin-end, $card-ios-margin-bottom, $card-ios-margin-start);
Expand Down
2 changes: 1 addition & 1 deletion core/src/components/card/card.md.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// --------------------------------------------------

:host {
--ion-color-base: var(--ion-item-background, transparent);
--ion-color-base: var(--ion-item-background-color, transparent);
--ion-color-contrast: #{$card-md-text-color};

@include margin($card-md-margin-top, $card-md-margin-end, $card-md-margin-bottom, $card-md-margin-start);
Expand Down
2 changes: 1 addition & 1 deletion core/src/components/item/item.ios.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// --------------------------------------------------

:host {
--ion-color-base: var(--ion-item-background, transparent);
--ion-color-base: var(--ion-item-background-color, transparent);
--ion-color-contrast: #{$item-ios-text-color};
--ion-color-tint: #{$item-ios-background-color-active};
--ion-color-shade: #{$item-ios-border-bottom-color};
Expand Down
2 changes: 1 addition & 1 deletion core/src/components/item/item.md.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// --------------------------------------------------

:host {
--ion-color-base: var(--ion-item-background, transparent);
--ion-color-base: var(--ion-item-background-color, transparent);
--ion-color-contrast: #{$item-md-text-color};
--ion-color-tint: #{$item-md-background-color-active};
--ion-color-shade: #{$item-md-border-bottom-color};
Expand Down

0 comments on commit e3010e1

Please sign in to comment.