custom css 수정

This commit is contained in:
yoon 2025-02-22 14:03:39 +09:00
parent ac5cf6077c
commit ddea199e85

View File

@ -8,69 +8,53 @@
/* 휴가 */ /* 휴가 */
.half-day-buttons { .half-day-buttons {
display: flex; display: flex;
justify-content: center; justify-content: center;
gap: 10px; gap: 10px;
margin-top: 20px; margin-top: 20px;
} }
.half-day-buttons .btn.active { .half-day-buttons .btn.active {
border: 2px solid black; border: 2px solid black;
} }
.fc-daygrid-day-frame {
min-height: 80px !important; .fc-daygrid-day-events {
max-height: 120px !important; max-height: 100px !important;
overflow: hidden !important; overflow-y: auto !important;
padding-top: 25px !important; }
}
.fc-daygrid-day-events { .fc-event {
max-height: 100px !important; border: none;
overflow-y: auto !important; }
} .fc-daygrid-event-harness {
.fc-daygrid-event { display: flex;
position: absolute !important; flex-direction: column;
height: 20px !important; align-items: flex-start;
width: 100% !important; justify-content: flex-start;
left: 0 !important; width: 100%;
margin: 2px 0 !important; }
padding: 0 !important; .fc-daygrid-event.half-day-am {
border-radius: 2px !important; width: 45% !important;
border: none !important; left: 0 !important;
} }
.fc-daygrid-event-harness { .fc-daygrid-event.half-day-pm {
display: flex; width: 45% !important;
flex-direction: column; left: auto !important;
align-items: flex-start; right: 0 !important;
justify-content: flex-start; }
width: 100%; .fc-daygrid-event.full-day {
gap: 22px; width: calc(100% - 4px) !important;
} }
.fc-daygrid-event.half-day-am { .fc-day-sun .fc-daygrid-day-number,
width: 45% !important; .fc-col-header-cell:first-child .fc-col-header-cell-cushion {
left: 0 !important; color: #ff4500 !important;
} }
.fc-daygrid-event.half-day-pm { .fc-day-sat .fc-daygrid-day-number,
width: 45% !important; .fc-col-header-cell:last-child .fc-col-header-cell-cushion {
left: auto !important; color: #6076e0 !important;
right: 0 !important; }
} .fc-daygrid-day-number {
.fc-daygrid-event.full-day { margin-right: auto;
width: 100% !important; }
left: 0 !important;
}
.fc-day-sun .fc-daygrid-day-number,
.fc-col-header-cell:first-child .fc-col-header-cell-cushion {
color: #ff4500 !important;
}
.fc-day-sat .fc-daygrid-day-number,
.fc-col-header-cell:last-child .fc-col-header-cell-cushion {
color: #6076e0 !important;
}
.fc-daygrid-day-number {
position: absolute !important;
top: 0px !important;
left: 5px !important;
text-align: left !important;
}
.grayscaleImg { .grayscaleImg {
filter: grayscale(100%); filter: grayscale(100%);