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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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-title {
  70. font-weight: bold;
  71. margin-bottom: 10px;
  72. }
  73. .info-dialog-password,
  74. .info-password,
  75. .info-password-form {
  76. align-items: baseline;
  77. display: flex;
  78. }
  79. .info-label {
  80. font-weight: bold;
  81. }
  82. .info-password-field {
  83. overflow: hidden;
  84. text-overflow: ellipsis;
  85. white-space: nowrap;
  86. }
  87. .info-password-none,
  88. .info-password-remote {
  89. opacity: 0.5;
  90. }
  91. .info-password-input {
  92. background-color: transparent;
  93. border: none;
  94. color: inherit;
  95. padding-left: 0;
  96. }
  97. .info-password-local {
  98. user-select: text;
  99. }
  100. }
  101. .dial-in-page {
  102. align-items: center;
  103. display: flex;
  104. flex-direction: column;
  105. font-size: 24px;
  106. height: 100%;
  107. justify-content: center;
  108. width: 100%;
  109. .dial-in-numbers-list {
  110. font-size: 24px;
  111. margin-top: 20px;
  112. }
  113. .dial-in-conference-id {
  114. text-align: center;
  115. width: 30%;
  116. }
  117. }
  118. .info-dialog,
  119. .dial-in-page {
  120. * {
  121. user-select: text;
  122. -moz-user-select: text;
  123. -webkit-user-select: text;
  124. }
  125. }