_relatedpopup.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. @import "globals";
  2. /* POPUP */
  3. .related-popup {
  4. position: absolute;
  5. top: 0;
  6. right: 0;
  7. bottom: 0;
  8. left: 0;
  9. z-index: 4;
  10. padding-left: 250px;
  11. box-sizing: border-box;
  12. display: none;
  13. background: $background-color;
  14. background-clip: content-box;
  15. -webkit-overflow-scrolling: touch;
  16. overflow-y: scroll;
  17. @include for-mobile {
  18. padding-left: 0;
  19. }
  20. iframe {
  21. border: 0;
  22. width: 100%;
  23. height: 100%;
  24. }
  25. &-container {
  26. display: none;
  27. background-color: transparentize($sidebar-popup-overlay-color, 0.5);
  28. position: fixed;
  29. top: 0;
  30. left: 0;
  31. bottom: 0;
  32. right: 0;
  33. z-index: 5;
  34. .loading-indicator {
  35. display: none;
  36. font-size: 96px;
  37. color: $content-contrast2-text-color;
  38. position: absolute;
  39. top: 50%;
  40. left: 50%;
  41. margin-left: -48px;
  42. margin-top: -48px;
  43. animation: spin 4s linear infinite;
  44. }
  45. }
  46. &-back {
  47. &, &:visited, &:hover {
  48. display: none;
  49. background: $content-contrast2-background-color;
  50. color: $content-contrast2-text-color;
  51. position: absolute;
  52. top: 20px;
  53. left: 250px;
  54. z-index: 5;
  55. width: 100px;
  56. padding: 14px 6px 14px 0;
  57. text-align: center;
  58. margin-left: -100px;
  59. box-sizing: border-box;
  60. text-transform: uppercase;
  61. border-radius: 6px 0 0 6px;
  62. transition: background-color $transitions-duration, color $transitions-duration;
  63. @include for-mobile {
  64. margin-left: 0;
  65. top: auto;
  66. bottom: 10px;
  67. left: 10px;
  68. width: auto;
  69. padding: 10px;
  70. border-radius: 6px;
  71. }
  72. }
  73. &:hover, &:focus {
  74. background: $background-color;
  75. color: $text-color;
  76. @include for-mobile {
  77. background: $button-hover-background-color;
  78. color: $button-hover-text-color;
  79. }
  80. }
  81. &-icon {
  82. vertical-align: middle;
  83. font-weight: bold;
  84. font-size: 18px;
  85. }
  86. &-label {
  87. @include for-mobile {
  88. display: none;
  89. }
  90. }
  91. }
  92. }