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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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. white-space: nowrap;
  59. .conference-id,
  60. .phone-number {
  61. user-select: text;
  62. }
  63. }
  64. .info-dialog-icon {
  65. color: #6453C0;
  66. font-size: 16px;
  67. }
  68. .info-dialog-url-text,
  69. .info-dialog-url-text:hover {
  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. box-sizing: border-box;
  108. display: flex;
  109. flex-direction: column;
  110. font-size: 24px;
  111. max-height: 100%;
  112. overflow: auto;
  113. padding: 25px;
  114. position: absolute;
  115. transform: translateY(-50%);
  116. top: 50%;
  117. width: 100%;
  118. .dial-in-numbers-list {
  119. font-size: 24px;
  120. margin-top: 20px;
  121. }
  122. .dial-in-conference-id {
  123. text-align: center;
  124. min-width: 200px;
  125. width: 30%;
  126. }
  127. }
  128. .info-dialog,
  129. .dial-in-page {
  130. * {
  131. user-select: text;
  132. -moz-user-select: text;
  133. -webkit-user-select: text;
  134. }
  135. }