Sha256: fc219325a66e2d4331c14df58b5057e39e1b85c896b24344bd223967a1318174
Contents?: true
Size: 1.31 KB
Versions: 2
Compression:
Stored size: 1.31 KB
Contents
/* * Metro UI CSS * (c) 2012-2013 by Sergey Pimenov * Licensed under the MIT License and Commercial * * Slider.less * */ @slider-color: #c6c6c6; @slider-color-disabled: #dbdbdb; @slider-color-rest-state: #00828b; @slider-color-hover-state: #219297; @slider-color-active-state: #25bbc4; @slider-color-disabled-state: #bababa; @slider-marker-color: #000; @slider-marker-color-disabled: #a0a0a0; .slider { height: 12px; width: auto; position: relative; background-color: @slider-color; margin-bottom: 10px; .marker { height: 12px; width: 12px; cursor: pointer; position: absolute; top: 0; left: 0; background-color: @slider-marker-color; z-index: 3; } .complete { height: 100%; width: auto; background-color: @slider-color-rest-state; z-index: 2; } &.vertical { height: auto; width: 12px; .complete { position: absolute; height: auto; width: 12px; bottom: 0; } } &:hover { .complete { background-color: @slider-color-hover-state; } } &:active, &:active + .marker:active { .complete { background-color: @slider-color-active-state; } } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
metro-ui-rails-0.15.8.15 | vendor/toolkit/metro-ui/slider.less |
metro-ui-rails-0.15.8.14 | vendor/toolkit/metro-ui/slider.less |