您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_info.scss 3.8KB

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