Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

_responsive.scss 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. @mixin small-button-size() {
  2. .new-toolbox {
  3. .toolbox-content {
  4. .button-group-center, .button-group-left, .button-group-right {
  5. .toolbox-button {
  6. .toolbox-icon {
  7. width: 28px;
  8. height: 28px;
  9. svg {
  10. width: 18px;
  11. height: 18px;
  12. }
  13. }
  14. &:nth-child(2) {
  15. .toolbox-icon {
  16. width: 30px;
  17. height: 30px;
  18. }
  19. }
  20. }
  21. }
  22. }
  23. }
  24. }
  25. @mixin very-small-button-size() {
  26. .new-toolbox {
  27. .toolbox-content {
  28. .button-group-center, .button-group-left, .button-group-right {
  29. .settings-button-small-icon {
  30. display: none;
  31. }
  32. .toolbox-button {
  33. .toolbox-icon {
  34. width: 18px;
  35. height: 18px;
  36. svg {
  37. width: 12px;
  38. height: 12px;
  39. }
  40. }
  41. &:nth-child(2) {
  42. .toolbox-icon {
  43. width: 20px;
  44. height: 20px;
  45. }
  46. }
  47. }
  48. }
  49. }
  50. }
  51. }
  52. @mixin full-size-modal-positioner() {
  53. height: 100%;
  54. left: 0;
  55. position: fixed;
  56. top: 0;
  57. max-width: 100%;
  58. width: 100%;
  59. }
  60. @mixin full-size-modal-dialog() {
  61. height: 100%;
  62. max-height: 100%;
  63. border-radius: 0;
  64. }
  65. @media only screen and (max-width: $verySmallScreen) {
  66. .welcome {
  67. display: block;
  68. #enter_room {
  69. position: relative;
  70. height: 42px;
  71. .welcome-page-button {
  72. font-size: 16px;
  73. left: 0;
  74. position: absolute;
  75. top: 68px;
  76. text-align: center;
  77. width: 100%;
  78. }
  79. }
  80. .header {
  81. background-color: #002637;
  82. #enter_room {
  83. .enter-room-input-container {
  84. padding-right: 0;
  85. }
  86. .warning-without-link,
  87. .warning-with-link {
  88. top: 120px;
  89. }
  90. }
  91. }
  92. .welcome-tabs {
  93. display: none;
  94. }
  95. .header-text-title {
  96. text-align: center;
  97. }
  98. .welcome-cards-container {
  99. padding: 0;
  100. }
  101. &.without-content {
  102. .header {
  103. height: 100%;
  104. }
  105. }
  106. #moderated-meetings {
  107. display: none;
  108. }
  109. .welcome-footer-row-block {
  110. display: block;
  111. }
  112. .welcome-badge {
  113. margin-right: 16px;
  114. }
  115. .welcome-footer {
  116. display: none;
  117. }
  118. }
  119. }
  120. .desktop-browser {
  121. @media only screen and (max-width: $smallScreen) {
  122. @include small-button-size();
  123. }
  124. @media only screen and (max-width: $verySmallScreen) {
  125. @include very-small-button-size();
  126. }
  127. &.shift-right {
  128. @media only screen and (max-width: $smallScreen + $sidebarWidth) {
  129. @include small-button-size()
  130. }
  131. @media only screen and (max-width: $verySmallScreen + $sidebarWidth) {
  132. @include very-small-button-size();
  133. #videoResolutionLabel {
  134. display: none;
  135. }
  136. .vertical-filmstrip .filmstrip {
  137. display: none;
  138. }
  139. .chrome-extension-banner {
  140. display: none;
  141. }
  142. }
  143. }
  144. }
  145. @media (min-width: 480px) and (max-width: 580px) {
  146. .shift-right [class^="Modal__PositionerAbsolute"] {
  147. @include full-size-modal-positioner();
  148. }
  149. .shift-right [class^="Modal__Dialog-"] {
  150. @include full-size-modal-dialog();
  151. }
  152. }
  153. @media (min-width: 580px) and (max-width: 680px) {
  154. .mobile-browser {
  155. &.shift-right [class^="Modal__PositionerAbsolute"] {
  156. @include full-size-modal-positioner();
  157. }
  158. &.shift-right [class^="Modal__Dialog-"] {
  159. @include full-size-modal-dialog();
  160. }
  161. }
  162. }