Skip to content

Instantly share code, notes, and snippets.

@theaccordance
Created June 24, 2013 17:49
Show Gist options
  • Select an option

  • Save theaccordance/5852011 to your computer and use it in GitHub Desktop.

Select an option

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.
.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