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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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. }
  57. .info-dialog-dial-in {
  58. white-space: nowrap;
  59. .conference-id,
  60. .phone-number {
  61. user-select: text;
  62. }
  63. }
  64. .info-dialog-icon {
  65. color: #6453C0;
  66. font-size: 16px;
  67. }
  68. .info-dialog-url-text,
  69. .info-dialog-url-text:hover {
  70. color: inherit;
  71. cursor: inherit;
  72. }
  73. .info-dialog-title {
  74. font-weight: bold;
  75. margin-bottom: 10px;
  76. }
  77. .info-dialog-password,
  78. .info-password,
  79. .info-password-form {
  80. align-items: baseline;
  81. display: flex;
  82. }
  83. .info-label {
  84. font-weight: bold;
  85. }
  86. .info-password-field {
  87. overflow: hidden;
  88. text-overflow: ellipsis;
  89. white-space: nowrap;
  90. }
  91. .info-password-none,
  92. .info-password-remote {
  93. opacity: 0.5;
  94. }
  95. .info-password-input {
  96. background-color: transparent;
  97. border: none;
  98. color: inherit;
  99. padding-left: 0;
  100. }
  101. .info-password-local {
  102. user-select: text;
  103. }
  104. }
  105. .dial-in-numbers-list {
  106. margin-top: 20px;
  107. font-size: 12px;
  108. line-height: 24px;
  109. border-collapse: separate;
  110. border-spacing: 0 5px;
  111. thead {
  112. text-align: left;
  113. }
  114. td,
  115. th {
  116. border-bottom: 1px solid #d1dbe8;
  117. }
  118. .flag-cell {
  119. vertical-align: top;
  120. width: 30px;
  121. }
  122. .flag {
  123. display: block;
  124. margin: 5px 5px 0px 5px;
  125. }
  126. .country {
  127. font-weight: bold;
  128. vertical-align: top;
  129. padding: 0 20px 0 0;
  130. }
  131. ul {
  132. padding: 0px 0px 0px 0px;
  133. }
  134. .numbers-list {
  135. list-style: none;
  136. padding: 0 20px 0 0;
  137. }
  138. .toll-free-list {
  139. font-weight: bold;
  140. list-style: none;
  141. vertical-align: top;
  142. }
  143. li.toll-free:empty:before {
  144. content: '.';
  145. visibility: hidden;
  146. }
  147. }
  148. .dial-in-page {
  149. align-items: center;
  150. box-sizing: border-box;
  151. display: flex;
  152. flex-direction: column;
  153. font-size: 12px;
  154. max-height: 100%;
  155. overflow: auto;
  156. position: absolute;
  157. transform: translateY(-50%);
  158. top: 50%;
  159. width: 100%;
  160. .dial-in-conference-id {
  161. text-align: center;
  162. min-width: 200px;
  163. }
  164. .dial-in-conference-name,
  165. .dial-in-conference-pin {
  166. font-size: 18px;
  167. }
  168. .dial-in-conference-description {
  169. margin: 12px;
  170. }
  171. }
  172. .info-dialog,
  173. .dial-in-page {
  174. * {
  175. user-select: text;
  176. -moz-user-select: text;
  177. -webkit-user-select: text;
  178. }
  179. }