You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_premeeting-screens.scss 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. /**
  2. * Shared style for full screen local track based dialogs/modals.
  3. */
  4. .premeeting-screen {
  5. align-items: stretch;
  6. background: #1C2025;
  7. bottom: 0;
  8. display: flex;
  9. flex-direction: column;
  10. font-size: 1.3em;
  11. left: 0;
  12. position: absolute;
  13. right: 0;
  14. top: 0;
  15. z-index: $toolbarZ + 1;
  16. .action-btn {
  17. border-radius: 3px;
  18. color: #fff;
  19. cursor: pointer;
  20. display: inline-block;
  21. font-size: 15px;
  22. line-height: 24px;
  23. margin-top: 16px;
  24. padding: 7px 16px;
  25. position: relative;
  26. text-align: center;
  27. width: 286px;
  28. &.primary {
  29. background: #0376DA;
  30. border: 1px solid #0376DA;
  31. }
  32. &.secondary {
  33. background: transparent;
  34. border: 1px solid #5E6D7A;
  35. }
  36. &.text {
  37. width: auto;
  38. font-size: 13px;
  39. margin: 0;
  40. padding: 0;
  41. }
  42. &.disabled {
  43. background: #5E6D7A;
  44. border: 1px solid #5E6D7A;
  45. color: #AFB6BC;
  46. cursor: initial;
  47. .icon {
  48. & > svg {
  49. fill: #AFB6BC;
  50. }
  51. }
  52. .options {
  53. border-left: 1px solid #AFB6BC;
  54. }
  55. }
  56. .options {
  57. align-items: center;
  58. border-left: 1px solid #fff;
  59. display: flex;
  60. height: 100%;
  61. justify-content: center;
  62. position: absolute;
  63. right: 0;
  64. top: 0;
  65. width: 40px;
  66. }
  67. }
  68. .content {
  69. align-items: center;
  70. background-image: linear-gradient(transparent, black);
  71. display: flex;
  72. flex: 1;
  73. flex-direction: column;
  74. justify-content: flex-end;
  75. z-index: $toolbarZ + 2;
  76. .title {
  77. color: #fff;
  78. font-size: 24px;
  79. line-height: 32px;
  80. margin-bottom: 16px;
  81. }
  82. .copy-meeting {
  83. align-items: center;
  84. cursor: pointer;
  85. color: #fff;
  86. display: flex;
  87. flex-direction: row;
  88. font-size: 15px;
  89. font-weight: 300;
  90. justify-content: center;
  91. line-height: 24px;
  92. margin-bottom: 16px;
  93. .url {
  94. display: flex;
  95. padding: 8px 10px;
  96. &:hover {
  97. background: #1C2025;
  98. border-radius: 4px;
  99. }
  100. &.done {
  101. background: #31B76A;
  102. }
  103. .jitsi-icon {
  104. margin-left: 10px;
  105. }
  106. }
  107. .copy-meeting-text {
  108. width: 266px;
  109. white-space: nowrap;
  110. overflow: hidden;
  111. text-overflow: ellipsis;
  112. }
  113. &:hover {
  114. align-self: stretch;
  115. }
  116. textarea {
  117. border-width: 0;
  118. height: 0;
  119. opacity: 0;
  120. padding: 0;
  121. width: 0;
  122. }
  123. }
  124. input.field {
  125. background-color: transparent;
  126. border: 1px solid transparent;
  127. color: white;
  128. outline-width: 0;
  129. padding: 8px 0;
  130. text-align: center;
  131. width: 100%;
  132. &.focused {
  133. border-bottom: 1px solid white;
  134. }
  135. &.error::placeholder {
  136. color: $defaultWarningColor;
  137. }
  138. }
  139. }
  140. .media-btn-container {
  141. display: flex;
  142. justify-content: center;
  143. margin: 32px 0;
  144. width: 100%;
  145. &> div {
  146. margin: 0 12px;
  147. }
  148. .settings-button-small-icon {
  149. right: -8px;
  150. &--hovered {
  151. right: -10px;
  152. }
  153. }
  154. }
  155. }
  156. #preview {
  157. height: 100%;
  158. position: absolute;
  159. width: 100%;
  160. &.no-video {
  161. background: radial-gradient(50% 50% at 50% 50%, #5B6F80 0%, #365067 100%), #FFFFFF;
  162. text-align: center;
  163. }
  164. .avatar {
  165. background: #A4B8D1;
  166. margin: 200px auto 0 auto;
  167. }
  168. video {
  169. height: 100%;
  170. object-fit: cover;
  171. position: absolute;
  172. width: 100%;
  173. }
  174. }