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.0KB

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