Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

_info.scss 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. .info-dialog-live-stream-url {
  53. width: max-content;
  54. width: -moz-max-content;
  55. width: -webkit-max-content;
  56. word-break: break-all;
  57. max-width: 400px;
  58. }
  59. .info-dialog-dial-in {
  60. white-space: nowrap;
  61. .conference-id,
  62. .phone-number {
  63. user-select: text;
  64. }
  65. }
  66. .info-dialog-icon {
  67. color: #6453C0;
  68. font-size: 16px;
  69. }
  70. .info-dialog-url-text,
  71. .info-dialog-url-text:hover {
  72. color: inherit;
  73. cursor: inherit;
  74. }
  75. .info-dialog-title {
  76. font-weight: bold;
  77. margin-bottom: 10px;
  78. }
  79. .info-dialog-password,
  80. .info-password,
  81. .info-password-form {
  82. align-items: baseline;
  83. display: flex;
  84. }
  85. .info-label {
  86. font-weight: bold;
  87. }
  88. .info-password-field {
  89. overflow: hidden;
  90. text-overflow: ellipsis;
  91. white-space: nowrap;
  92. }
  93. .info-password-none,
  94. .info-password-remote {
  95. opacity: 0.5;
  96. }
  97. .info-password-input {
  98. background-color: transparent;
  99. border: none;
  100. color: inherit;
  101. padding-left: 0;
  102. }
  103. .info-password-local {
  104. user-select: text;
  105. }
  106. }
  107. .dial-in-page {
  108. align-items: center;
  109. display: flex;
  110. flex-direction: column;
  111. font-size: 24px;
  112. height: 100%;
  113. justify-content: center;
  114. width: 100%;
  115. .dial-in-numbers-list {
  116. font-size: 24px;
  117. margin-top: 20px;
  118. }
  119. .dial-in-conference-id {
  120. text-align: center;
  121. width: 30%;
  122. }
  123. }
  124. .info-dialog,
  125. .dial-in-page {
  126. * {
  127. user-select: text;
  128. -moz-user-select: text;
  129. -webkit-user-select: text;
  130. }
  131. }