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