68 lines
1.2 KiB
CSS
68 lines
1.2 KiB
CSS
/* 여기에 light css 작성 */
|
|
|
|
|
|
.display-block {
|
|
display: block !important;
|
|
}
|
|
|
|
|
|
/* 휴가 */
|
|
.half-day-buttons {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
margin-top: 20px;
|
|
}
|
|
.half-day-buttons .btn.active {
|
|
border: 2px solid black;
|
|
}
|
|
|
|
.fc-daygrid-day-events {
|
|
max-height: 100px !important;
|
|
overflow-y: auto !important;
|
|
}
|
|
|
|
.fc-event {
|
|
border: none;
|
|
}
|
|
.fc-daygrid-event-harness {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
justify-content: flex-start;
|
|
width: 100%;
|
|
}
|
|
.fc-daygrid-event.half-day-am {
|
|
width: 45% !important;
|
|
left: 0 !important;
|
|
}
|
|
.fc-daygrid-event.half-day-pm {
|
|
width: 45% !important;
|
|
left: auto !important;
|
|
right: 0 !important;
|
|
}
|
|
.fc-daygrid-event.full-day {
|
|
width: calc(100% - 4px) !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 {
|
|
margin-right: auto;
|
|
}
|
|
|
|
.grayscaleImg {
|
|
filter: grayscale(100%);
|
|
}
|
|
|
|
|
|
/* scrollbar 안보이게 */
|
|
.scrollbar-none {
|
|
scrollbar-width: none;
|
|
}
|
|
|