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.

_info.scss 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. .info-dialog {
  2. cursor: default;
  3. display: flex;
  4. font-size: 14px;
  5. .info-dialog-action-link {
  6. display: inline-block;
  7. line-height: 1.5em;
  8. a {
  9. cursor: pointer;
  10. vertical-align: middle;
  11. }
  12. }
  13. .info-dialog-action-link:before {
  14. color: $linkFontColor;
  15. content: '\2022';
  16. font-size: 1.5em;
  17. padding: 0 10px;
  18. vertical-align: middle;
  19. }
  20. .info-dialog-action-link:first-child:before {
  21. content: '';
  22. padding: 0;
  23. }
  24. .info-dialog-action-links {
  25. font-weight: bold;
  26. margin-top: 10px;
  27. white-space: nowrap;
  28. }
  29. .info-dialog-action-separator {
  30. display: inline-block;
  31. }
  32. .info-dialog-copy-element {
  33. opacity: 0;
  34. pointer-events: none;
  35. position: absolute;
  36. -webkit-user-select: text;
  37. user-select: text;
  38. }
  39. .info-dialog-column {
  40. margin-right: 10px;
  41. overflow: hidden;
  42. a,
  43. a:active,
  44. a:focus,
  45. a:hover {
  46. text-decoration: none;
  47. }
  48. }
  49. .info-dialog-conference-url,
  50. .info-dialog-live-stream-url {
  51. width: max-content;
  52. width: -moz-max-content;
  53. width: -webkit-max-content;
  54. word-break: break-all;
  55. max-width: 400px;
  56. display: flex;
  57. align-items: center;
  58. }
  59. .info-dialog-dial-in {
  60. word-break: break-all;
  61. .conference-id,
  62. .phone-number {
  63. user-select: text;
  64. }
  65. }
  66. .info-dialog-icon {
  67. color: #6453C0;
  68. font-size: 16px;
  69. min-width: 30px;
  70. }
  71. .info-dialog-url-text,
  72. .info-dialog-url-text:hover {
  73. color: inherit;
  74. cursor: inherit;
  75. }
  76. .info-dialog-url-icon {
  77. display: inline-block;
  78. margin-left: 5px;
  79. svg {
  80. cursor: pointer;
  81. }
  82. }
  83. .info-dialog-title {
  84. font-weight: bold;
  85. margin-bottom: 10px;
  86. }
  87. .info-dialog-password,
  88. .info-password,
  89. .info-password-form {
  90. align-items: baseline;
  91. display: flex;
  92. }
  93. .info-label {
  94. font-weight: bold;
  95. }
  96. .info-password-field {
  97. overflow: hidden;
  98. text-overflow: ellipsis;
  99. white-space: nowrap;
  100. }
  101. .info-password-none,
  102. .info-password-remote {
  103. opacity: 0.5;
  104. }
  105. .info-password-input {
  106. background-color: transparent;
  107. border: none;
  108. color: inherit;
  109. padding-left: 0;
  110. }
  111. .info-password-local {
  112. user-select: text;
  113. }
  114. }
  115. .dial-in-numbers-list {
  116. margin-top: 20px;
  117. font-size: 12px;
  118. line-height: 24px;
  119. border-collapse: separate;
  120. border-spacing: 0 5px;
  121. thead {
  122. text-align: left;
  123. }
  124. td,
  125. th {
  126. border-bottom: 1px solid #d1dbe8;
  127. }
  128. .flag-cell {
  129. vertical-align: top;
  130. width: 30px;
  131. }
  132. .flag {
  133. display: block;
  134. margin: 5px 5px 0px 5px;
  135. }
  136. .country {
  137. font-weight: bold;
  138. vertical-align: top;
  139. padding: 0 20px 0 0;
  140. }
  141. ul {
  142. padding: 0px 0px 0px 0px;
  143. }
  144. .numbers-list {
  145. list-style: none;
  146. padding: 0 20px 0 0;
  147. }
  148. .toll-free-list {
  149. font-weight: bold;
  150. list-style: none;
  151. vertical-align: top;
  152. }
  153. li.toll-free:empty:before {
  154. content: '.';
  155. visibility: hidden;
  156. }
  157. }
  158. .dial-in-page {
  159. align-items: center;
  160. box-sizing: border-box;
  161. display: flex;
  162. flex-direction: column;
  163. font-size: 12px;
  164. max-height: 100%;
  165. overflow: auto;
  166. padding: 15pt;
  167. position: absolute;
  168. transform: translateY(-50%);
  169. top: 50%;
  170. width: 100%;
  171. .dial-in-conference-id {
  172. text-align: center;
  173. min-width: 200px;
  174. margin-top: 40px;
  175. }
  176. .dial-in-conference-name,
  177. .dial-in-conference-pin {
  178. font-size: 18px;
  179. }
  180. .dial-in-conference-description {
  181. margin: 12px;
  182. }
  183. }
  184. .info-dialog,
  185. .dial-in-page {
  186. * {
  187. user-select: text;
  188. -moz-user-select: text;
  189. -webkit-user-select: text;
  190. }
  191. .info-dialog-url-text-unselectable {
  192. user-select: none;
  193. -moz-user-select: none;
  194. -webkit-user-select: none;
  195. }
  196. }