diff --git a/src/components/ui/QCalendarMonthWrapper.vue b/src/components/ui/QCalendarMonthWrapper.vue index 896fb1974..6736d30d8 100644 --- a/src/components/ui/QCalendarMonthWrapper.vue +++ b/src/components/ui/QCalendarMonthWrapper.vue @@ -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 diff --git a/src/pages/Worker/Card/WorkerCalendarItem.vue b/src/pages/Worker/Card/WorkerCalendarItem.vue index 65ed8522a..e2c9e525c 100644 --- a/src/pages/Worker/Card/WorkerCalendarItem.vue +++ b/src/pages/Worker/Card/WorkerCalendarItem.vue @@ -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; }