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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. }
  29. .info-password-none,
  30. .info-password-remote {
  31. opacity: 0.5;
  32. }
  33. .info-password-input {
  34. width: 100%;
  35. background-color: transparent;
  36. border: none;
  37. color: inherit;
  38. padding-left: 0;
  39. }
  40. .info-password-local {
  41. user-select: text;
  42. }
  43. }
  44. .dial-in-numbers-list {
  45. margin-top: 20px;
  46. font-size: 12px;
  47. line-height: 24px;
  48. border-collapse: collapse;
  49. thead {
  50. text-align: left;
  51. }
  52. tr {
  53. border-bottom: 1px solid #d1dbe8;
  54. }
  55. .flag-cell {
  56. vertical-align: top;
  57. width: 30px;
  58. }
  59. .flag {
  60. display: block;
  61. margin: 5px 5px 0px 5px;
  62. }
  63. .country {
  64. font-weight: bold;
  65. vertical-align: top;
  66. padding: 0 20px 0 0;
  67. }
  68. ul {
  69. padding: 0px 0px 0px 0px;
  70. }
  71. .numbers-list {
  72. list-style: none;
  73. padding: 0 20px 0 0;
  74. }
  75. .toll-free-list {
  76. font-weight: bold;
  77. list-style: none;
  78. vertical-align: top;
  79. }
  80. li.toll-free:empty:before {
  81. content: '.';
  82. visibility: hidden;
  83. }
  84. }
  85. .dial-in-page {
  86. align-items: center;
  87. box-sizing: border-box;
  88. display: flex;
  89. flex-direction: column;
  90. font-size: 12px;
  91. max-height: 100%;
  92. overflow: auto;
  93. padding: 15pt;
  94. position: absolute;
  95. transform: translateY(-50%);
  96. top: 50%;
  97. width: 100%;
  98. .dial-in-conference-id {
  99. text-align: center;
  100. min-width: 200px;
  101. margin-top: 40px;
  102. }
  103. .dial-in-conference-name,
  104. .dial-in-conference-pin {
  105. font-size: 18px;
  106. }
  107. .dial-in-conference-description {
  108. margin: 12px;
  109. }
  110. }
  111. .info-dialog,
  112. .dial-in-page {
  113. * {
  114. user-select: text;
  115. -moz-user-select: text;
  116. -webkit-user-select: text;
  117. }
  118. }