forked from verdnatura/salix-front
fix: 9-12
This commit is contained in:
parent
3d6fac5338
commit
0e0f649ff9
|
@ -110,13 +110,6 @@ const containerClasses = computed(() => {
|
||||||
cursor: pointer;
|
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(6),
|
||||||
.q-calendar-month__week--days > div:nth-child(7) {
|
.q-calendar-month__week--days > div:nth-child(7) {
|
||||||
// Cambia el color de los días sábado y domingo
|
// Cambia el color de los días sábado y domingo
|
||||||
|
|
|
@ -162,7 +162,7 @@ const getEventAttrs = (timestamp) => {
|
||||||
|
|
||||||
if (isFestive) {
|
if (isFestive) {
|
||||||
attrs.class = '--festive';
|
attrs.class = '--festive';
|
||||||
attrs.label = event.absenceId ? timestamp.day : '';
|
attrs.label = event.absenceId ?? timestamp.day;
|
||||||
// attrs.style = 'color: red';
|
// attrs.style = 'color: red';
|
||||||
}
|
}
|
||||||
// if(type === 'holiday')
|
// if(type === 'holiday')
|
||||||
|
@ -250,12 +250,9 @@ watch(_year, (newValue) => {
|
||||||
|
|
||||||
&.--festive {
|
&.--festive {
|
||||||
color: $negative;
|
color: $negative;
|
||||||
|
border: 2px solid $negative;
|
||||||
}
|
}
|
||||||
&.--holiday {
|
|
||||||
& > span:nth-child(2) .block {
|
|
||||||
color: $negative;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
&.--holiday {
|
&.--holiday {
|
||||||
& > span:nth-child(2) .block {
|
& > span:nth-child(2) .block {
|
||||||
color: $negative;
|
color: $negative;
|
||||||
|
|
Loading…
Reference in New Issue