Skip to content

Instantly share code, notes, and snippets.

@bonomiandreia
Last active August 16, 2022 10:18
Show Gist options
  • Save bonomiandreia/6987c58316a174dbaff0b6cb2fa17f25 to your computer and use it in GitHub Desktop.
Save bonomiandreia/6987c58316a174dbaff0b6cb2fa17f25 to your computer and use it in GitHub Desktop.
scss example to change / override dates hover to mat-calendar angular material
@media(hover: hover) {
::ng-deep .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
background-color: red !important;
border-radius: 0 !important;
}
::ng-deep .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
background-color: green !important;
border: 0 !important;
border-radius: 0 !important;
}
}
@bonomiandreia
Copy link
Author

today date:
image
hover:
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment