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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. 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-page {
  106. align-items: center;
  107. display: flex;
  108. flex-direction: column;
  109. font-size: 24px;
  110. height: 100%;
  111. justify-content: center;
  112. width: 100%;
  113. .dial-in-numbers-list {
  114. font-size: 24px;
  115. margin-top: 20px;
  116. }
  117. .dial-in-conference-id {
  118. text-align: center;
  119. width: 30%;
  120. }
  121. }
  122. .info-dialog,
  123. .dial-in-page {
  124. * {
  125. user-select: text;
  126. -moz-user-select: text;
  127. -webkit-user-select: text;
  128. }
  129. }