Created
June 24, 2013 17:49
-
-
Save theaccordance/5852011 to your computer and use it in GitHub Desktop.
CSS styling ruleset for slider.tooltip.js. The first rule, .ui-slider .ui-btn-inner controls applies a padding to the content within the tooltip, and the second rule .ui-slider-popup defines the tooltip itself.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .ui-slider .ui-btn-inner { | |
| padding: 4px 0 0 0 !important; | |
| } | |
| .ui-slider-popup { | |
| position: absolute !important; | |
| width: 64px; | |
| height: 64px; | |
| text-align: center; | |
| font-size: 36px; | |
| padding-top: 14px; | |
| z-index: 100; | |
| opacity: 0.8; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment