2024-03-05 11:36:21 +03:00

285 lines
6.5 KiB
CSS

.tabulator {
position: relative;
font-size: 14px;
text-align: left;
overflow: hidden;
transform: translateZ(0);
}
.tabulator .tabulator-header {
position: relative;
box-sizing: border-box;
width: 100%;
color: rgb(54, 54, 51);
font-weight: bold;
white-space: nowrap;
overflow: hidden;
padding-left: 5px;
}
.tabulator-header-hidden {
display: none;
}
.tabulator .tabulator-header .tabulator-header-contents {
position: relative;
overflow: hidden;
}
.tabulator .tabulator-header .tabulator-col {
display: inline-flex;
position: relative;
box-sizing: border-box;
flex-direction: column;
justify-content: flex-start;
text-align: left;
vertical-align: middle;
overflow: hidden;
height: fit-content !important;
margin-right: 3px;
}
/* .tabulator-col-resize-handle {
height: fit-content !important;
} */
.tabulator .tabulator-headers {
}
.tabulator .tabulator-headers .tabulator-col-resize-handle {
width: 3px;
height: 25px !important;
}
.tabulator .tabulator-tableholder {
position: relative;
width: 100%;
white-space: nowrap;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.tabulator .tabulator-tableholder .tabulator-table {
position: relative;
display: inline-block;
white-space: nowrap;
overflow: visible;
color: #333;
}
.tabulator-row {
position: relative;
box-sizing: border-box;
min-height: 22px;
background-color: rgb(var(--color-slate-50));
width: calc(100% - 15px);
overflow: hidden;
}
.tabulator-row:first-child {
margin-top: 0;
}
.tabulator-row .tabulator-cell {
display: inline-block;
position: relative;
box-sizing: border-box;
vertical-align: middle;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.tabulator-cell:first-child {
padding: 0 0.25rem;
}
.tabulator-placeholder-contents {
text-align: center;
}
.tabulator .tabulator-col-resize-handle {
position: relative;
display: inline-block;
width: 6px;
margin-left: -3px;
margin-right: -3px;
z-index: 10;
vertical-align: middle;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
box-sizing: border-box;
position: relative;
padding: 4px;
}
.tabulator
.tabulator-header
.tabulator-col
.tabulator-col-content
.tabulator-col-title-holder {
position: relative;
cursor: pointer;
}
.tabulator-col-title {
display: none;
text-align: center;
color: #7d7d7d;
font-size: 14px;
font-weight: 900;
}
/* .tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title { */
/* padding-right: 25px; */
/* } */
/*
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
box-sizing: border-box;
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: bottom;
text-align: center;
} */
.tabulator
.tabulator-header
.tabulator-col.tabulator-sortable[aria-sort="none"]
.tabulator-col-content
.tabulator-col-sorter {
color: #bbb;
}
.tabulator
.tabulator-header
.tabulator-col
.tabulator-col-content
.tabulator-col-sorter {
display: flex;
align-items: center;
position: absolute;
top: 10px;
bottom: 0;
right: 4px;
}
.tabulator
.tabulator-header
.tabulator-col.tabulator-sortable[aria-sort="none"]
.tabulator-col-content
.tabulator-col-sorter
.tabulator-arrow {
border-top: none;
border-bottom: 6px solid #bbb;
}
.tabulator
.tabulator-header
.tabulator-col
.tabulator-col-content
.tabulator-col-sorter
.tabulator-arrow {
width: 0;
height: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #bbb;
}
.tabulator-header-filter > input {
padding: 0px 0.5rem !important;
font-size: 10px;
background-color: transparent;
}
.tabulator-header-filter {
margin-right: 20px;
}
.tabulator-header-filter > input {
border-radius: 0;
border: none;
border-bottom: 1px solid rgb(var(--color-slate-200));
}
.tabulator
.tabulator-header
.tabulator-col.tabulator-col-sorter-element[aria-sort="descending"]
.tabulator-col-sorter
.tabulator-arrow {
transform: rotate(180deg);
}
.tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box .tabulator-row-handle-bar {
width: 100%;
height: 2px;
border-radius: 100px;
margin-top: 2px;
background: rgb(115, 115, 121);
}
.tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box {
width: 80%;
cursor: grab;
}
.tabulator-row .tabulator-cell.tabulator-frozen {
display: inline-block;
position: sticky;
left: 0;
background-color: inherit;
z-index: 10;
}
.tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {
border-right: 2px solid #aaa;
}
.tabulator-row.tabulator-moving{
position:absolute;
border-top:1px solid #aaa;
border-bottom:1px solid #aaa;
pointer-events:none;
z-index:15;
cursor: grabbing;
}
.tabulator-row .tabulator-row-resize-handle{position:absolute;right:0;bottom:0;left:0;height:5px}
.tabulator-row .tabulator-row-resize-handle.prev{top:0;bottom:auto}
.tabulator-row .tabulator-row-resize-handle:hover{cursor:ns-resize}
.tabulator-row .tabulator-responsive-collapse{box-sizing:border-box;padding:5px;border-top:1px solid #aaa;border-bottom:1px solid #aaa}
.tabulator-row .tabulator-responsive-collapse:empty{display:none}
.tabulator-row .tabulator-responsive-collapse table{font-size:14px}
.tabulator-row .tabulator-responsive-collapse table tr td{position:relative}
.tabulator-row .tabulator-responsive-collapse table tr td:first-of-type{padding-right:10px}
.tabulator-row .tabulator-cell{display:inline-block;position:relative;box-sizing:border-box;padding:4px;border-right:1px solid #aaa;vertical-align:middle;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.tabulator-row .tabulator-cell.tabulator-frozen{display:inline-block;position:sticky;left:0;background-color:inherit;z-index:10}
.tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left{border-right:2px solid #aaa}.tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right{border-left:2px solid #aaa}
.tabulator-row .tabulator-cell.tabulator-editing{border:1px solid #1d68cd;outline:none;padding:0}
.tabulator-row .tabulator-cell.tabulator-validation-fail{border:1px solid #d00}
.tabulator-row .tabulator-cell.tabulator-row-handle {
display: inline-flex;
align-items: center;
justify-content: center;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
}
/*# sourceMappingURL=tabulator.min.css.map */