Files
FHC-Core/public/css/components/classSchedule.css
T

80 lines
1.1 KiB
CSS

.fhc-pointer-events-none {
pointer-events: none;
}
.fhc-pointer-events-all {
pointer-events: all;
}
.fhc-cursor-pointer {
cursor: pointer;
}
.fhc-resize-vertical {
cursor: ns-resize;
}
.fhc-drag-handle:hover {
cursor: grab;
color: #000;
}
.fhc-w-fit {
width: fit-content;
}
.tabulator-group-level-0 {
background-color: #c6c6c6 !important;
display: flex;
align-items: center;
}
.tabulator-group-level-1 {
background-color: #f5f5f5 !important;
display: flex;
align-items: center;
}
.tabulator-cell {
background-color: transparent !important;
}
div[role="row"] {
background-color: white;
}
.v-enter-active {
transition: opacity 0.5s ease;
}
.v-leave-active {
transition: none;
}
.v-enter-from,
.v-leave-to {
opacity: 0;
}
.scrollable {
overflow: auto;
/* Firefox */
scrollbar-width: thin;
scrollbar-color: #888 transparent;
}
/* Chrome / Edge / Safari */
.scrollable::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.scrollable::-webkit-scrollbar-thumb {
background: #888;
border-radius: 999px;
}
.scrollable::-webkit-scrollbar-track {
background: transparent;
}