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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. .info-dialog {
  2. cursor: default;
  3. display: flex;
  4. font-size: 14px;
  5. .info-dialog-column {
  6. margin-right: 10px;
  7. overflow: hidden;
  8. a,
  9. a:active,
  10. a:focus,
  11. a:hover {
  12. text-decoration: none;
  13. }
  14. }
  15. .info-dialog-password,
  16. .info-password,
  17. .info-password-form {
  18. align-items: baseline;
  19. display: flex;
  20. }
  21. .info-label {
  22. font-weight: bold;
  23. }
  24. .info-password-field {
  25. overflow: hidden;
  26. text-overflow: ellipsis;
  27. white-space: nowrap;
  28. margin-right: 5px;
  29. }
  30. .info-password-none,
  31. .info-password-remote {
  32. color: #fff;
  33. }
  34. .info-password-input {
  35. width: 100%;
  36. background-color: #0E1624;
  37. border-radius: 3px;
  38. border: 2px solid #202B3D;
  39. color: inherit;
  40. padding-left: 0;
  41. }
  42. .info-password-input:focus ,
  43. .info-password-input:active {
  44. border: 2px solid #B8C7E0;
  45. }
  46. .info-password-local {
  47. user-select: text;
  48. }
  49. }
  50. .dial-in-number {
  51. display: flex;
  52. justify-content: space-between;
  53. padding-right: 8px;
  54. }
  55. .dial-in-numbers-list {
  56. margin-top: 20px;
  57. font-size: 12px;
  58. line-height: 24px;
  59. border-collapse: collapse;
  60. thead {
  61. text-align: left;
  62. }
  63. tr {
  64. border-bottom: 1px solid #d1dbe8;
  65. }
  66. .flag-cell {
  67. vertical-align: top;
  68. width: 30px;
  69. }
  70. .flag {
  71. display: block;
  72. margin: 5px 5px 0px 5px;
  73. }
  74. .country {
  75. font-weight: bold;
  76. vertical-align: top;
  77. padding: 0 20px 0 0;
  78. }
  79. ul {
  80. padding: 0px 0px 0px 0px;
  81. }
  82. .numbers-list {
  83. list-style: none;
  84. padding: 0 20px 0 0;
  85. }
  86. .toll-free-list {
  87. font-weight: bold;
  88. list-style: none;
  89. vertical-align: top;
  90. }
  91. li.toll-free:empty:before {
  92. content: '.';
  93. visibility: hidden;
  94. }
  95. }
  96. .dial-in-page {
  97. align-items: center;
  98. box-sizing: border-box;
  99. display: flex;
  100. flex-direction: column;
  101. font-size: 12px;
  102. max-height: 100%;
  103. overflow: auto;
  104. padding: 15pt;
  105. position: absolute;
  106. transform: translateY(-50%);
  107. top: 50%;
  108. width: 100%;
  109. .dial-in-conference-id {
  110. text-align: center;
  111. min-width: 200px;
  112. margin-top: 40px;
  113. }
  114. .dial-in-conference-name,
  115. .dial-in-conference-pin {
  116. font-size: 18px;
  117. }
  118. .dial-in-conference-description {
  119. margin: 12px;
  120. }
  121. }
  122. .info-dialog,
  123. .dial-in-page {
  124. * {
  125. user-select: text;
  126. -moz-user-select: text;
  127. -webkit-user-select: text;
  128. }
  129. }