選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_premeeting-screens.scss 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. /**
  2. * Shared style for full screen local track based dialogs/modals.
  3. */
  4. .premeeting-screen {
  5. position: absolute;
  6. left: 0;
  7. right: 0;
  8. top: 0;
  9. bottom: 0;
  10. }
  11. .premeeting-screen {
  12. align-items: stretch;
  13. background: radial-gradient(50% 50% at 50% 50%, #2A3A4B 20.83%, #1E2A36 100%);
  14. display: flex;
  15. flex-direction: column;
  16. font-size: 1.3em;
  17. z-index: $toolbarZ + 1;
  18. &-avatar {
  19. background-color: #A4B8D1;
  20. margin-bottom: 24px;
  21. text {
  22. fill: black;
  23. font-size: 26px;
  24. font-weight: 400;
  25. }
  26. }
  27. .action-btn {
  28. border-radius: 3px;
  29. box-sizing: border-box;
  30. color: #fff;
  31. cursor: pointer;
  32. display: inline-block;
  33. font-size: 15px;
  34. line-height: 24px;
  35. padding: 7px 16px;
  36. position: relative;
  37. text-align: center;
  38. width: 320px;
  39. @include adjust-for-max-width(320px, 8px);
  40. &.primary {
  41. background: #0376DA;
  42. border: 1px solid #0376DA;
  43. }
  44. &.secondary {
  45. background: transparent;
  46. border: 1px solid #5E6D7A;
  47. }
  48. &.text {
  49. width: auto;
  50. font-size: 13px;
  51. margin: 0;
  52. padding: 0;
  53. }
  54. &.disabled {
  55. background: #5E6D7A;
  56. border: 1px solid #5E6D7A;
  57. color: #AFB6BC;
  58. cursor: initial;
  59. .icon {
  60. & > svg {
  61. fill: #AFB6BC;
  62. }
  63. }
  64. }
  65. .options {
  66. border-radius: 3px;
  67. align-items: center;
  68. display: flex;
  69. height: 100%;
  70. justify-content: center;
  71. position: absolute;
  72. right: 0;
  73. top: 0;
  74. width: 36px;
  75. &:hover {
  76. background-color: #0262B6;
  77. }
  78. svg {
  79. pointer-events: none;
  80. }
  81. }
  82. }
  83. .content {
  84. align-items: center;
  85. display: flex;
  86. flex: 1;
  87. flex-direction: column;
  88. justify-content: flex-end;
  89. padding-bottom: 24px;
  90. z-index: $toolbarZ + 2;
  91. .title {
  92. color: #fff;
  93. font-size: 24px;
  94. line-height: 32px;
  95. margin-bottom: 16px;
  96. }
  97. .copy-meeting {
  98. align-items: center;
  99. cursor: pointer;
  100. color: #fff;
  101. display: flex;
  102. flex-direction: column;
  103. font-size: 15px;
  104. font-weight: 300;
  105. justify-content: center;
  106. line-height: 24px;
  107. margin-bottom: 16px;
  108. .url {
  109. background: rgba(28, 32, 37, 0.5);
  110. border-radius: 4px;
  111. display: flex;
  112. padding: 8px 10px;
  113. transition: background 0.16s ease-out;
  114. &:hover {
  115. background: #1C2025;
  116. }
  117. &.done {
  118. background: #31B76A;
  119. }
  120. .jitsi-icon {
  121. margin-left: 10px;
  122. }
  123. }
  124. .copy-button{
  125. width: 298px;
  126. }
  127. .copy-meeting-text {
  128. width: 266px;
  129. white-space: nowrap;
  130. overflow: hidden;
  131. text-overflow: ellipsis;
  132. }
  133. &:hover {
  134. align-self: stretch;
  135. }
  136. textarea {
  137. border-width: 0;
  138. height: 0;
  139. opacity: 0;
  140. padding: 0;
  141. width: 0;
  142. }
  143. }
  144. input.field {
  145. background-color: white;
  146. border: none;
  147. outline: none;
  148. border-radius: 3px;
  149. font-size: 15px;
  150. line-height: 24px;
  151. color: #1C2025;
  152. padding: 8px 0;
  153. text-align: center;
  154. width: 320px;
  155. @include adjust-for-max-width(320px, 8px);
  156. &.error {
  157. box-shadow: 0px 0px 4px 3px rgba(225, 45, 45, 0.4);
  158. }
  159. &.focused {
  160. box-shadow: 0px 0px 1px 1.5px black, 0px 0px 1.3px 4px white;
  161. }
  162. }
  163. }
  164. .media-btn-container {
  165. display: flex;
  166. justify-content: center;
  167. margin: 24px 0 16px 0;
  168. width: 100%;
  169. &> div {
  170. margin: 0 12px;
  171. }
  172. }
  173. }
  174. #preview {
  175. height: 100%;
  176. position: absolute;
  177. width: 100%;
  178. &.no-video {
  179. background: radial-gradient(50% 50% at 50% 50%, #5B6F80 0%, #365067 100%), #FFFFFF;
  180. text-align: center;
  181. }
  182. .avatar {
  183. background: #A4B8D1;
  184. margin: 0 auto;
  185. }
  186. video {
  187. height: 100%;
  188. object-fit: cover;
  189. position: absolute;
  190. width: 100%;
  191. }
  192. }
  193. @mixin flex-centered() {
  194. align-items: center;
  195. display: flex;
  196. justify-content: center;
  197. }
  198. @mixin icon-container($bg, $fill) {
  199. .toggle-button-icon-container {
  200. background: $bg;
  201. svg {
  202. fill: $fill
  203. }
  204. }
  205. }
  206. .toggle-button {
  207. border-radius: 3px;
  208. cursor: pointer;
  209. color: #fff;
  210. font-size: 13px;
  211. height: 40px;
  212. margin: 0 auto;
  213. transition: background 0.16s ease-out;
  214. width: 320px;
  215. @include adjust-for-max-width(320px, 8px);
  216. @include flex-centered();
  217. svg {
  218. fill: transparent;
  219. }
  220. label {
  221. cursor: pointer;
  222. }
  223. &:hover {
  224. background: rgba(255, 255, 255, 0.1);
  225. .toggle-button-icon-container {
  226. display: none;
  227. }
  228. }
  229. &-container {
  230. position: relative;
  231. @include flex-centered();
  232. }
  233. &-icon-container {
  234. border-radius: 50%;
  235. left: -22px;
  236. padding: 2px;
  237. position: absolute;
  238. }
  239. &--toggled {
  240. @include icon-container(white, #1C2025);
  241. &:hover {
  242. .toggle-button-icon-container {
  243. display: block;
  244. }
  245. }
  246. .toggle-button-icon-container {
  247. display: block;
  248. }
  249. }
  250. }