dd2d7aba66c4ba1698b8a79938e057ea9388e6ad0edeeb01f7a81f522758e187931163622af1db3dfd3d822a64f4343eec799b8e83fa7063c9c1cfc823c19d 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .handsontable .wtHider {
  2. position: relative;
  3. }
  4. .handsontable.ht__manualColumnMove.after-selection--columns thead th.ht__highlight {
  5. cursor: move;
  6. cursor: -moz-grab;
  7. cursor: -webkit-grab;
  8. cursor: grab;
  9. }
  10. .handsontable.ht__manualColumnMove.on-moving--columns,
  11. .handsontable.ht__manualColumnMove.on-moving--columns thead th.ht__highlight {
  12. cursor: move;
  13. cursor: -moz-grabbing;
  14. cursor: -webkit-grabbing;
  15. cursor: grabbing;
  16. }
  17. .handsontable.ht__manualColumnMove.on-moving--columns .manualColumnResizer {
  18. display: none;
  19. }
  20. .handsontable .ht__manualColumnMove--guideline,
  21. .handsontable .ht__manualColumnMove--backlight {
  22. position: absolute;
  23. height: 100%;
  24. display: none;
  25. }
  26. .handsontable .ht__manualColumnMove--guideline {
  27. background: #757575;
  28. width: 2px;
  29. top: 0;
  30. margin-left: -1px;
  31. z-index: 105;
  32. }
  33. .handsontable .ht__manualColumnMove--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--columns.show-ui .ht__manualColumnMove--guideline,
  41. .handsontable.on-moving--columns .ht__manualColumnMove--backlight {
  42. display: block;
  43. }