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 4.6KB

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