nouislider.tooltips.css 429 B

12345678910111213141516171819202122
  1. .noUi-tooltip {
  2. display: block;
  3. position: absolute;
  4. border: 1px solid #D9D9D9;
  5. border-radius: 3px;
  6. background: #fff;
  7. padding: 5px;
  8. text-align: center;
  9. }
  10. .noUi-horizontal .noUi-handle-lower .noUi-tooltip {
  11. top: -32px;
  12. }
  13. .noUi-horizontal .noUi-handle-upper .noUi-tooltip {
  14. bottom: -32px;
  15. }
  16. .noUi-vertical .noUi-handle-lower .noUi-tooltip {
  17. left: 120%;
  18. }
  19. .noUi-vertical .noUi-handle-upper .noUi-tooltip {
  20. right: 120%;
  21. }