Aggiunta visualizzazione mensile in agenda

This commit is contained in:
2025-05-13 09:43:00 +02:00
parent bc3809b61c
commit 6f08ba87be
15 changed files with 397 additions and 59 deletions

View File

@@ -101,6 +101,13 @@ h1:focus { outline: none; }
padding-right: 12px !important;
}
.divider {
display: block;
width: 100%;
border: 1px solid var(--card-border-color);
margin: 1.5rem 0;
}
@supports (-webkit-touch-callout: none) {
.status-bar-safe-area {
display: flex;
@@ -119,4 +126,15 @@ h1:focus { outline: none; }
}
.flex-column, .navbar-brand { padding-left: env(safe-area-inset-left); }
}
/*MudBlazor Personalization*/
.mud-button-group-horizontal:not(.mud-button-group-rtl) > .mud-button-root:not(:last-child), .mud-button-group-horizontal:not(.mud-button-group-rtl) > :not(:last-child) .mud-button-root {
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
}
.mud-button-group-horizontal:not(.mud-button-group-rtl) > .mud-button-root:not(:first-child), .mud-button-group-horizontal:not(.mud-button-group-rtl) > :not(:first-child) .mud-button-root {
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}

View File

@@ -1,5 +1,7 @@
:root {
--primary-color: #5352ed;
--ligther-color: #f7f7ff;
--darker-color: hsl(240, 81%, 30%);
}
/*Color*/
--card-border-color: hsl(from var(--mud-palette-gray-light) h s 86%);
--gray-for-shadow: hsl(from var(--mud-palette-gray-light) h s 95%);
/*Utility*/
--card-shadow: 5px 5px 10px 0 var(--gray-for-shadow);
}