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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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. .copy-invite-icon, .provider-icon {
  87. align-items: center;
  88. cursor: pointer;
  89. display: flex;
  90. height: 40px;
  91. place-content: center;
  92. width: 40px;
  93. }
  94. &:hover > div:hover {
  95. background-color: rgba(255, 255, 255, 0.2);
  96. border-radius: 4px;
  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. height: 24px;
  115. }
  116. }
  117. &.invite-buttons {
  118. width: 100%;
  119. text-align: right;
  120. margin-top: 8px;
  121. & > a {
  122. display: inline-block;
  123. height: 24px;
  124. min-width: 48px;
  125. border-radius: 3px;
  126. text-align: center;
  127. text-decoration: none;
  128. cursor: pointer;
  129. }
  130. &-cancel {
  131. margin-right: 16px;
  132. padding: 7px 15px;
  133. background: #2A3A4B;
  134. border: 1px solid #5E6D7A;
  135. }
  136. &-add {
  137. padding: 8px 16px;
  138. background: #0376DA;
  139. }
  140. &.disabled {
  141. & > a {
  142. pointer-events: none;
  143. }
  144. }
  145. }
  146. &.stream {
  147. display: flex;
  148. justify-content: space-between;
  149. align-items: center;
  150. padding: 8px 8px 8px 16px;
  151. margin-top: 8px;
  152. width: calc(100% - 26px);
  153. height: 22px;
  154. background: #2A3A4B;
  155. border: 1px solid #5E6D7A;
  156. border-radius: 3px;
  157. cursor: pointer;
  158. &:hover {
  159. font-weight: 600;
  160. }
  161. &-text {
  162. overflow: hidden;
  163. text-overflow: ellipsis;
  164. white-space: nowrap;
  165. max-width: 292px;
  166. &.selected {
  167. font-weight: 600;
  168. }
  169. }
  170. &.clicked {
  171. background: #31B76A;
  172. border: 1px solid #31B76A;
  173. }
  174. & > div > svg > path {
  175. fill: #fff;
  176. }
  177. }
  178. }
  179. }
  180. .mobile-browser {
  181. .invite-more-content {
  182. font-size: 16px;
  183. }
  184. .invite-more-button {
  185. height: 48px;
  186. padding: 12px 16px;
  187. }
  188. }