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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. white-space: nowrap;
  53. }
  54. .info-dialog-dial-in {
  55. white-space: nowrap;
  56. }
  57. .info-dialog-icon {
  58. color: #6453C0;
  59. font-size: 16px;
  60. }
  61. .info-dialog-title {
  62. font-weight: bold;
  63. margin-bottom: 10px;
  64. }
  65. .info-password,
  66. .info-dialog-password,
  67. .info-password-form {
  68. display: flex;
  69. }
  70. .info-password-field {
  71. margin-left: 2px;
  72. overflow: hidden;
  73. text-overflow: ellipsis;
  74. white-space: nowrap;
  75. }
  76. .info-password-none,
  77. .info-password-remote {
  78. opacity: 0.5;
  79. }
  80. .info-password-input {
  81. background-color: transparent;
  82. border: none;
  83. color: inherit;
  84. padding-left: 0;
  85. }
  86. .conference-id {
  87. margin-left: 5px;
  88. }
  89. }
  90. .dial-in-page {
  91. align-items: center;
  92. display: flex;
  93. flex-direction: column;
  94. font-size: 24px;
  95. height: 100%;
  96. justify-content: center;
  97. width: 100%;
  98. .dial-in-numbers-list {
  99. font-size: 24px;
  100. margin-top: 20px;
  101. }
  102. .dial-in-conference-id {
  103. text-align: center;
  104. width: 30%;
  105. }
  106. }