You are here

media_vimeo.wysiwyg.css in Media: Vimeo 7

Overlay for Vimeo thumbnails in the media library browser.

@TODO: Is this all for the Media Browser Providers logos? If so, they've been removed in latest Media dev and this file can be removed.

File

css/media_vimeo.wysiwyg.css
View source
  1. /**
  2. * @file
  3. * Overlay for Vimeo thumbnails in the media library browser.
  4. *
  5. * @TODO: Is this all for the Media Browser Providers logos? If so,
  6. * they've been removed in latest Media dev and this file can be removed.
  7. *
  8. */
  9. #media-browser .styles-container-media_vimeo {
  10. /* Relative wrapper for the overlay. */
  11. position: relative;
  12. }
  13. #media-browser .styles-container-media_vimeo span {
  14. /* Here's the overlay image. */
  15. background: url(images/stream-vimeo.png) no-repeat;
  16. /* Absolute positioning in the relative wrapper creates the overlay. */
  17. position: absolute;
  18. /* Size of the overlay */
  19. width: 69px;
  20. height: 22px;
  21. /* Position of the overlay */
  22. left: 33px;
  23. top: 80px;
  24. }
  25. #media-browser .styles-container-media_vimeo span:hover {
  26. /* The */
  27. background-position: 0px -22px;
  28. }
  29. #media-browser .styles-container-media_vimeo img {
  30. }