Skip to content

Commit

Permalink
refactor(overlay): use full css property name (#1403)
Browse files Browse the repository at this point in the history
BREAKING CHANGE:

Theme property 'overlay-backdrop-bg' renamed to 'overlay-backdrop-background-color'.
  • Loading branch information
yggg committed May 27, 2019
1 parent ab52c0c commit 4133058
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

@mixin nb-overlay-theme {
.overlay-backdrop {
background: nb-theme(overlay-backdrop-bg);
background: nb-theme(overlay-backdrop-background-color);
}

.cdk-overlay-container {
Expand Down
2 changes: 1 addition & 1 deletion src/framework/theme/styles/themes/_default.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1336,7 +1336,7 @@ $theme: (
calendar-year-cell-large-width: calendar-month-cell-width,
calendar-year-cell-large-height: calendar-month-cell-height,

overlay-backdrop-bg: rgba(0, 0, 0, 0.288),
overlay-backdrop-background-color: rgba(0, 0, 0, 0.288),

tooltip-background-color: color-black,
tooltip-border-color: transparent,
Expand Down

0 comments on commit 4133058

Please sign in to comment.