-
-
Notifications
You must be signed in to change notification settings - Fork 658
Open
Description
The css .noUi-pips-horizontal in nouislider.css defines
.noUi-pips-horizontal {
padding: 10px 0;
height: 80px;
}This gives the pips a hard-coded height of 100px (10px + 80px + 10px), independent of the actual height. Now the pips extend 100px downwards from the slider.
Unfortunately this can overlap the next line – and if the next line has an input, this cannot be selected with the mouse!
I modified this to
.noUi-pips-horizontal {
padding: 10px 0 0 0;
height: 0;
}which keeps the space between the slider and the pips, but now it's possible to select anything in the next row.
I wonder if this should be changed in the css coming with noUiSlider …
Metadata
Metadata
Assignees
Labels
No labels