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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. .info-dialog {
  2. cursor: default;
  3. display: flex;
  4. .info-dialog-action-link {
  5. display: inline-block;
  6. line-height: 1.5em;
  7. a {
  8. cursor: pointer;
  9. vertical-align: middle;
  10. }
  11. }
  12. .info-dialog-action-link:before {
  13. color: $linkFontColor;
  14. content: '\2022';
  15. font-size: 1.5em;
  16. padding: 0 10px;
  17. vertical-align: middle;
  18. }
  19. .info-dialog-action-link:first-child:before {
  20. content: '';
  21. padding: 0;
  22. }
  23. .info-dialog-action-links {
  24. font-weight: bold;
  25. margin-top: 10px;
  26. white-space: nowrap;
  27. }
  28. .info-dialog-action-separator {
  29. display: inline-block;
  30. }
  31. .info-dialog-copy-element {
  32. opacity: 0;
  33. pointer-events: none;
  34. position: fixed;
  35. -webkit-user-select: text;
  36. user-select: text;
  37. }
  38. .info-dialog-column {
  39. margin-right: 10px;
  40. overflow: hidden;
  41. a,
  42. a:active,
  43. a:focus,
  44. a:hover {
  45. text-decoration: none;
  46. }
  47. }
  48. .info-dialog-conference-url {
  49. max-width: 250px;
  50. overflow: hidden;
  51. text-overflow: ellipsis;
  52. user-select: text;
  53. white-space: nowrap;
  54. }
  55. .info-dialog-dial-in {
  56. white-space: nowrap;
  57. .conference-id,
  58. .phone-number {
  59. user-select: text;
  60. }
  61. }
  62. .info-dialog-icon {
  63. color: #6453C0;
  64. font-size: 16px;
  65. }
  66. .info-dialog-title {
  67. font-weight: bold;
  68. margin-bottom: 10px;
  69. }
  70. .info-password,
  71. .info-dialog-password,
  72. .info-password-form {
  73. display: flex;
  74. }
  75. .info-password-field {
  76. margin-left: 2px;
  77. overflow: hidden;
  78. text-overflow: ellipsis;
  79. white-space: nowrap;
  80. }
  81. .info-password-none,
  82. .info-password-remote {
  83. opacity: 0.5;
  84. }
  85. .info-password-input {
  86. background-color: transparent;
  87. border: none;
  88. color: inherit;
  89. padding-left: 0;
  90. }
  91. .info-password-local {
  92. user-select: text;
  93. }
  94. .conference-id {
  95. margin-left: 5px;
  96. }
  97. }
  98. .dial-in-page {
  99. align-items: center;
  100. display: flex;
  101. flex-direction: column;
  102. font-size: 24px;
  103. height: 100%;
  104. justify-content: center;
  105. width: 100%;
  106. * {
  107. user-select: text;
  108. }
  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. }