@quantlab/handsontable
Version:
Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs
44 lines (43 loc) • 1.2 kB
CSS
.handsontable .wtHider {
position: relative;
}
.handsontable.ht__manualColumnMove.after-selection--columns thead th.ht__highlight {
cursor: move;
cursor: -moz-grab;
cursor: -webkit-grab;
cursor: grab;
}
.handsontable.ht__manualColumnMove.on-moving--columns,
.handsontable.ht__manualColumnMove.on-moving--columns thead th.ht__highlight {
cursor: move;
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
cursor: grabbing;
}
.handsontable.ht__manualColumnMove.on-moving--columns .manualColumnResizer {
display: none;
}
.handsontable .ht__manualColumnMove--guideline,
.handsontable .ht__manualColumnMove--backlight {
position: absolute;
height: 100%;
display: none;
}
.handsontable .ht__manualColumnMove--guideline {
background: #757575;
width: 2px;
top: 0;
margin-left: -1px;
z-index: 105;
}
.handsontable .ht__manualColumnMove--backlight {
background: #343434;
background: rgba(52, 52, 52, 0.25);
display: none;
z-index: 105;
pointer-events: none;
}
.handsontable.on-moving--columns.show-ui .ht__manualColumnMove--guideline,
.handsontable.on-moving--columns .ht__manualColumnMove--backlight {
display: block;
}