Browse Source

Removed background change for disabled thumb hover.

pull/4212/head
Gareth Daunton 8 years ago
parent
commit
76c0825b3b
1 changed files with 3 additions and 3 deletions
  1. 6
      src/definitions/modules/range.less

6
src/definitions/modules/range.less

@ -71,12 +71,12 @@
transition: @thumbTransition;
}
.ui.range .inner .thumb:hover {
.ui.range:not(.disabled) .inner .thumb:hover {
pointer: @thumbHoverPointer;
background: @thumbHoverBackground;
}
.ui.range:focus .inner .thumb {
.ui.range:not(.disabled):focus .inner .thumb {
background: @thumbHoverBackground;
}
@ -226,7 +226,7 @@
transition: @hoverOpacityTransition;
}
.ui.hover.range:hover .inner .thumb, .ui.hover.range:focus .inner .thumb {
.ui.hover.range:not(.disabled):hover .inner .thumb, .ui.hover.range:not(.disabled):focus .inner .thumb {
opacity: @hoverVarHoverOpacity;
}

Loading…
Cancel
Save