Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show pointer cursor over slider handle #839

Merged
merged 1 commit into from
Jun 8, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/less/rules.less
Expand Up @@ -198,6 +198,9 @@
filter: none;
.box-shadow(~"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)");
border: 0px solid transparent;
&:hover {
cursor: pointer;
}
&.round {
border-radius: 50%;
}
Expand Down
4 changes: 3 additions & 1 deletion src/sass/_rules.scss
Expand Up @@ -194,7 +194,9 @@
height: $slider-line-height;
background-color: $slider-primary;
border: 0px solid transparent;

&:hover {
cursor: pointer;
}
&.round {
@include slider_border-radius($slider-line-height);
}
Expand Down