You are here

gridstack.skin.css in GridStack 8

Same filename and directory in other branches
  1. 8.2 css/gridstack.skin.css

File

css/gridstack.skin.css
View source
  1. /**
  2. * @file
  3. */
  4. /** Prevents hover-event blocking for lightbox trigger below caption. */
  5. .gridstack .box__caption,
  6. .gridstack .blazy__caption {
  7. padding: 15px;
  8. pointer-events: none;
  9. z-index: 2;
  10. }
  11. .gridstack .box__caption a,
  12. .gridstack .blazy__caption a,
  13. .gridstack .box__caption input {
  14. pointer-events: auto;
  15. }
  16. .box.box--caption--bottom .box__caption {
  17. bottom: 0;
  18. top: auto;
  19. }
  20. .box.box--caption--top .box__caption {
  21. top: 0;
  22. }
  23. .box.box--caption--center .box__caption {
  24. top: 50%;
  25. -ms-transform: translateY(-50%);
  26. -webkit-transform: translateY(-50%);
  27. transform: translateY(-50%);
  28. }
  29. .gridstack .media--loading .box__caption {
  30. -webkit-transition: opacity 500ms ease-in-out;
  31. transition: opacity 500ms ease-in-out;
  32. }