forked from verdnatura/salix-front
refs #6332 color red button
This commit is contained in:
parent
99d16d215f
commit
27c86288e1
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue