视频播放器仓库

Captions.css 811B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .component {
  2. position: relative;
  3. }
  4. .component:hover {
  5. background-color: #000;
  6. }
  7. .button {
  8. width: 34px;
  9. height: 34px;
  10. background: none;
  11. border: 0;
  12. color: inherit;
  13. font: inherit;
  14. line-height: normal;
  15. overflow: visible;
  16. padding: 0;
  17. cursor: pointer;
  18. }
  19. .button:focus {
  20. outline: 0;
  21. }
  22. .icon {
  23. padding: 5px;
  24. }
  25. .trackList {
  26. position: absolute;
  27. right: 0;
  28. bottom: 100%;
  29. display: none;
  30. background-color: rgba(0,0,0,0.7);
  31. list-style: none;
  32. padding: 0;
  33. margin: 0;
  34. color: #fff;
  35. }
  36. .component:hover .trackList {
  37. display: block;
  38. }
  39. .trackItem {
  40. padding: 7px;
  41. cursor: pointer;
  42. }
  43. .activeTrackItem,
  44. .trackItem:hover {
  45. background: #000;
  46. }
  47. .activeTrackItem {
  48. composes: trackItem;
  49. text-decoration: underline;
  50. }