nathancahill / split

Unopinionated utilities for resizeable split views
https://split.js.org/
MIT License
6.1k stars 448 forks source link

Style : gutter cursor style when hover #791

Open dearlsh94 opened 1 year ago

dearlsh94 commented 1 year ago

I think it would be better if the cursor changed in the hover state as well as the active state. (use mouseenter and mouseleave?)

liviu-macsen commented 9 months ago

use css

.gutter-horizontal:hover {
    cursor: col-resize;
}
dearlsh94 commented 9 months ago

That's right, your code that can help implement this style.

when vertical, I use

.gutter-vertical:hover {
  cursor: row-resize;
}

I thought it would be nice to see this in the library as well.