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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. .use-new-toolbox {
  2. font-size: 14px;
  3. }
  4. .info-dialog {
  5. cursor: default;
  6. display: flex;
  7. .info-dialog-action-link {
  8. display: inline-block;
  9. line-height: 1.5em;
  10. a {
  11. cursor: pointer;
  12. vertical-align: middle;
  13. }
  14. }
  15. .info-dialog-action-link:before {
  16. color: $linkFontColor;
  17. content: '\2022';
  18. font-size: 1.5em;
  19. padding: 0 10px;
  20. vertical-align: middle;
  21. }
  22. .info-dialog-action-link:first-child:before {
  23. content: '';
  24. padding: 0;
  25. }
  26. .info-dialog-action-links {
  27. font-weight: bold;
  28. margin-top: 10px;
  29. white-space: nowrap;
  30. }
  31. .info-dialog-action-separator {
  32. display: inline-block;
  33. }
  34. .info-dialog-copy-element {
  35. opacity: 0;
  36. pointer-events: none;
  37. position: absolute;
  38. -webkit-user-select: text;
  39. user-select: text;
  40. }
  41. .info-dialog-column {
  42. margin-right: 10px;
  43. overflow: hidden;
  44. a,
  45. a:active,
  46. a:focus,
  47. a:hover {
  48. text-decoration: none;
  49. }
  50. }
  51. .info-dialog-conference-url {
  52. width: max-content;
  53. width: -moz-max-content;
  54. width: -webkit-max-content;
  55. word-break: break-all;
  56. max-width: 400px;
  57. }
  58. .info-dialog-dial-in {
  59. white-space: nowrap;
  60. .conference-id,
  61. .phone-number {
  62. user-select: text;
  63. }
  64. }
  65. .info-dialog-icon {
  66. color: #6453C0;
  67. font-size: 16px;
  68. }
  69. .info-dialog-invite-link,
  70. .info-dialog-invite-link: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-page {
  107. align-items: center;
  108. display: flex;
  109. flex-direction: column;
  110. font-size: 24px;
  111. height: 100%;
  112. justify-content: center;
  113. width: 100%;
  114. .dial-in-numbers-list {
  115. font-size: 24px;
  116. margin-top: 20px;
  117. }
  118. .dial-in-conference-id {
  119. text-align: center;
  120. width: 30%;
  121. }
  122. }
  123. .info-dialog,
  124. .dial-in-page {
  125. * {
  126. user-select: text;
  127. -moz-user-select: text;
  128. -webkit-user-select: text;
  129. }
  130. }