diff --git a/src/components/ui/QCalendarMonthWrapper.vue b/src/components/ui/QCalendarMonthWrapper.vue index 7b604bd0be..05a598a1b8 100644 --- a/src/components/ui/QCalendarMonthWrapper.vue +++ b/src/components/ui/QCalendarMonthWrapper.vue @@ -110,13 +110,6 @@ 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 a116c93f9a..9156d7a307 100644 --- a/src/pages/Worker/Card/WorkerCalendarItem.vue +++ b/src/pages/Worker/Card/WorkerCalendarItem.vue @@ -162,7 +162,7 @@ const getEventAttrs = (timestamp) => { if (isFestive) { attrs.class = '--festive'; - attrs.label = event.absenceId ? timestamp.day : ''; + attrs.label = event.absenceId ?? timestamp.day; // attrs.style = 'color: red'; } // if(type === 'holiday') @@ -250,12 +250,9 @@ watch(_year, (newValue) => { &.--festive { color: $negative; + border: 2px solid $negative; } - &.--holiday { - & > span:nth-child(2) .block { - color: $negative; - } - } + &.--holiday { & > span:nth-child(2) .block { color: $negative;