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.

_invite_more.scss 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. .invite-more {
  2. &-container {
  3. color: #fff;
  4. font-weight: 600;
  5. position: absolute;
  6. width: 100%;
  7. text-align: center;
  8. z-index: $zindex2;
  9. background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  10. &.elevated {
  11. z-index: $filmstripVideosZ + 1;
  12. }
  13. }
  14. &-header {
  15. font-size: 19px;
  16. line-height: 28px;
  17. margin: 24px 0 16px 0;
  18. }
  19. &-button {
  20. display: flex;
  21. margin: auto;
  22. padding: 8px 16px;
  23. width: fit-content;
  24. width: -moz-fit-content;
  25. height: 24px;
  26. background: #0376DA;
  27. border-radius: 3px;
  28. font-size: 14px;
  29. line-height: 24px;
  30. cursor: pointer;
  31. &:hover {
  32. background: #278ADF;
  33. }
  34. &-text {
  35. margin-left: 8px;
  36. font-size: 15px;
  37. line-height: 24px;
  38. }
  39. }
  40. &-dialog {
  41. color: #fff;
  42. font-size: 15px;
  43. line-height: 24px;
  44. & > span {
  45. font-weight: 600;
  46. }
  47. &.header {
  48. display: flex;
  49. justify-content: space-between;
  50. margin: 16px 16px 24px;
  51. width: calc(100% - 32px);
  52. color: #fff;
  53. font-weight: 600;
  54. font-size: 24px;
  55. line-height: 32px;
  56. & > div > svg {
  57. cursor: pointer;
  58. fill: #A4B8D1;
  59. }
  60. }
  61. &.separator {
  62. margin: 24px 0 24px -20px;
  63. padding: 0 20px;
  64. width: 100%;
  65. height: 1px;
  66. background: #5E6D7A;
  67. }
  68. &.email-container {
  69. display: flex;
  70. justify-content: space-between;
  71. align-items: center;
  72. padding: 8px 8px 8px 16px;
  73. margin-top: 24px;
  74. width: calc(100% - 26px);
  75. height: 22px;
  76. background: #2A3A4B;
  77. border: 1px solid #5E6D7A;
  78. border-radius: 3px;
  79. cursor: pointer;
  80. &.active {
  81. border-radius: 3px 3px 0 0;
  82. }
  83. }
  84. &.icon-container {
  85. display: none;
  86. &.active {
  87. display: flex;
  88. width: calc(100% - 26px);
  89. padding: 8px 8px 8px 16px;
  90. background: #2A3A4B;
  91. border: 1px solid #5E6D7A;
  92. border-top: none;
  93. border-radius: 0 0 3px 3px;
  94. & > * {
  95. display: flex;
  96. justify-content: center;
  97. align-items: center;
  98. height: 40px;
  99. width: 40px;
  100. border-radius: 4px;
  101. cursor: pointer;
  102. }
  103. &:hover > div:hover {
  104. background-color: rgba(255, 255, 255, 0.2);
  105. }
  106. & > :not(:last-child) {
  107. margin-right: 16px;
  108. }
  109. .copy-invite-icon > div > svg > path {
  110. fill: #A4B8D1;
  111. }
  112. }
  113. }
  114. &.dial-in-display {
  115. .info-label {
  116. color: #A4B8D1;
  117. }
  118. .dial-in-copy {
  119. display: inline-block;
  120. vertical-align: middle;
  121. margin-left: 21px;
  122. cursor: pointer;
  123. }
  124. }
  125. &.invite-buttons {
  126. width: 100%;
  127. text-align: right;
  128. margin-top: 8px;
  129. & > a {
  130. display: inline-block;
  131. height: 24px;
  132. width: 48px;
  133. border-radius: 3px;
  134. text-align: center;
  135. text-decoration: none;
  136. cursor: pointer;
  137. }
  138. &-cancel {
  139. margin-right: 16px;
  140. padding: 7px 15px;
  141. background: #2A3A4B;
  142. border: 1px solid #5E6D7A;
  143. }
  144. &-add {
  145. padding: 8px 16px;
  146. background: #0376DA;
  147. }
  148. &.disabled {
  149. & > a {
  150. pointer-events: none;
  151. }
  152. }
  153. }
  154. &.stream {
  155. display: flex;
  156. justify-content: space-between;
  157. align-items: center;
  158. padding: 8px 8px 8px 16px;
  159. margin-top: 8px;
  160. width: calc(100% - 26px);
  161. height: 22px;
  162. background: #2A3A4B;
  163. border: 1px solid #5E6D7A;
  164. border-radius: 3px;
  165. cursor: pointer;
  166. &:hover {
  167. font-weight: 600;
  168. }
  169. &-text {
  170. overflow: hidden;
  171. text-overflow: ellipsis;
  172. white-space: nowrap;
  173. max-width: 292px;
  174. &.selected {
  175. font-weight: 600;
  176. }
  177. }
  178. &.clicked {
  179. background: #31B76A;
  180. border: 1px solid #31B76A;
  181. }
  182. & > div > svg > path {
  183. fill: #fff;
  184. }
  185. }
  186. }
  187. }