video-quality-selector.css 751 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*!
  2. LibreVideoJS Selector
  3. Version 1.4
  4. Escrito por Jesús Eduardo
  5. */
  6. @charset "utf-8";
  7. /*
  8. You are free to style the button however you wish. I plan to use
  9. an icon from my site's own icon font to make it more visible. These
  10. are just basic styles to make it look ok with plain text.
  11. */
  12. /* Position the button */
  13. .librevjs-res-button {
  14. font-weight: bold;
  15. float: right;
  16. line-height: 3em;
  17. }
  18. /* Don't show hover effects on title */
  19. ul li.librevjs-menu-title.librevjs-res-menu-title:hover {
  20. cursor: default;
  21. background-color: transparent;
  22. -moz-box-shadow: none;
  23. -webkit-box-shadow: none;
  24. box-shadow: none;
  25. }
  26. /* Needed to keep text visible in video.js 4.9 */
  27. .librevjs-res-button .librevjs-control-text {
  28. width: auto;
  29. height: auto;
  30. clip: auto;
  31. }