56 lines
1006 B
CSS
56 lines
1006 B
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.half-day-am {
|
|
width: calc(50% - 4px) !important;
|
|
}
|
|
.fc-daygrid-event.half-day-pm {
|
|
width: calc(50% - 4px) !important;
|
|
margin-left: auto !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;
|
|
}
|
|
|