v-splitter.css 399 B

123456789101112131415161718192021
  1. .v-split {
  2. position: absolute;
  3. /*height: 100%;*/
  4. width: 6px;
  5. background: gray;
  6. opacity: 0.3;
  7. box-sizing: border-box;
  8. cursor: ew-resize;
  9. z-index: 2;
  10. margin-left: 3px;
  11. border-radius: 3px;
  12. margin-top: 2px;
  13. height: calc(100% - 4px);
  14. }
  15. .v-moving .v-split-active, .v-split:hover {
  16. opacity: 0.5;
  17. }
  18. .v-moving .v-split-panel {
  19. pointer-events: none;
  20. }