2022-02-03 15:28:40 +01:00
|
|
|
@import "~theme/globals";
|
|
|
|
|
2020-12-14 14:50:37 +01:00
|
|
|
:host {
|
|
|
|
|
2022-01-27 18:03:02 +01:00
|
|
|
--addon-calendar-blank-day-background-color: var(--light);
|
2020-12-14 14:50:37 +01:00
|
|
|
|
|
|
|
.item.addon-calendar-event {
|
|
|
|
> ion-icon {
|
|
|
|
color: white;
|
|
|
|
border-radius: 50%;
|
2022-01-18 14:49:44 +01:00
|
|
|
padding: 0.7rem;
|
2022-03-22 12:21:16 +01:00
|
|
|
--margin-vertical: 12px;
|
|
|
|
--margin-end: 12px;
|
|
|
|
margin-top: var(--margin-vertical);
|
|
|
|
margin-bottom: var(--margin-vertical);
|
|
|
|
@include margin-horizontal(null, var(--margin-end));
|
|
|
|
|
2021-09-27 16:44:24 +02:00
|
|
|
}
|
|
|
|
|
2022-02-03 15:28:40 +01:00
|
|
|
@each $category, $value in $calendar-event-category-colors {
|
|
|
|
&.addon-calendar-eventtype-#{$category} > ion-icon {
|
|
|
|
background-color: $value;
|
|
|
|
}
|
2020-12-14 14:50:37 +01:00
|
|
|
}
|
|
|
|
}
|
2021-09-27 16:44:24 +02:00
|
|
|
|
2022-01-18 14:49:44 +01:00
|
|
|
}
|