You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been able to override all of the SCSS entries to customize the bdc-walk-popup class...except for the arrow color. How can I change the arrow color using CSS-only (see attachment)?
The text was updated successfully, but these errors were encountered:
I use these styles to get theme colors and so the arrow. Blue style is also nice 👍
The variables have been set in @mixin with $theme parameter: the way Angular Material wants.
/* WALK-THROUGH */.mat-mdc-menu-panel.bdc-walk-popup {
box-shadow: 0010pxmat.get-color-from-palette($primary, default, 0.3);
border: 1pxsolid$primaryColor;
&.arrow.mat-menu-after.horizontal {
&::before {
border-right-color: $primaryColor;
}
&::after {
border-right-color: $backgroundColor;
}
}
// Hide the 'x' icon (useless with the buttons).titlea.close {
display: none;
}
// Must use theme colors, increased readability (was too small).container {
background: $backgroundColor; //<-- in the library white background is hardcoded: this is a bugcolor: $primaryText;
font-size: 16px;
font-weight: normal;
}
.buttonsbutton, .title.header {
color: $primaryColor;
font-size: 18px;
}
}
I've been able to override all of the SCSS entries to customize the bdc-walk-popup class...except for the arrow color. How can I change the arrow color using CSS-only (see attachment)?
The text was updated successfully, but these errors were encountered: