0
0
Fork 0

refs #6332 color red button

This commit is contained in:
Carlos Satorres 2024-05-21 16:14:55 +02:00
parent 99d16d215f
commit 27c86288e1
2 changed files with 8 additions and 3 deletions

View File

@ -109,7 +109,13 @@ const containerClasses = computed(() => {
cursor: pointer;
}
}
.q-calendar-month__day--label .q-calendar__button {
color: red;
&::before {
content: '';
color: transparent !important;
}
}
.q-calendar-month__week--days > div:nth-child(6),
.q-calendar-month__week--days > div:nth-child(7) {
// Cambia el color de los días sábado y domingo

View File

@ -152,7 +152,7 @@ const getEventAttrs = (timestamp) => {
if (isFestive) {
attrs.class = '--festive';
attrs.label = event.absenceId ? timestamp.day : '';
attrs.label = timestamp.day;
}
return attrs;
@ -237,7 +237,6 @@ watch(_year, (newValue) => {
}
&.--festive {
border: 2px solid $negative;
color: $negative;
}