e78f4055a2f19d688bf41b37876592e225bbefca8417ea36415545755a50d6b552cbb98d2778f1c6ad7831c1ba67db22f81b9281709ea72d972d23ad369696 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .handsontable .wtHider {
  2. position: relative;
  3. }
  4. .handsontable.ht__manualRowMove.after-selection--rows tbody th.ht__highlight {
  5. cursor: move;
  6. cursor: -moz-grab;
  7. cursor: -webkit-grab;
  8. cursor: grab;
  9. }
  10. .handsontable.ht__manualRowMove.on-moving--rows,
  11. .handsontable.ht__manualRowMove.on-moving--rows tbody th.ht__highlight {
  12. cursor: move;
  13. cursor: -moz-grabbing;
  14. cursor: -webkit-grabbing;
  15. cursor: grabbing;
  16. }
  17. .handsontable.ht__manualRowMove.on-moving--rows .manualRowResizer {
  18. display: none;
  19. }
  20. .handsontable .ht__manualRowMove--guideline,
  21. .handsontable .ht__manualRowMove--backlight {
  22. position: absolute;
  23. width: 100%;
  24. display: none;
  25. }
  26. .handsontable .ht__manualRowMove--guideline {
  27. background: #757575;
  28. height: 2px;
  29. left: 0;
  30. margin-top: -1px;
  31. z-index: 105;
  32. }
  33. .handsontable .ht__manualRowMove--backlight {
  34. background: #343434;
  35. background: rgba(52, 52, 52, 0.25);
  36. display: none;
  37. z-index: 105;
  38. pointer-events: none;
  39. }
  40. .handsontable.on-moving--rows.show-ui .ht__manualRowMove--guideline,
  41. .handsontable.on-moving--rows .ht__manualRowMove--backlight {
  42. display: block;
  43. }