Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

_base.scss 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /**
  2. * Safari will limit input in input elements to one character when user-select
  3. * none is applied. Other browsers already support selecting within inputs while
  4. * user-select is none. As such, disallow user-select except on inputs.
  5. */
  6. * {
  7. -webkit-user-select: none;
  8. user-select: none;
  9. // Firefox only
  10. scrollbar-width: thin;
  11. scrollbar-color: rgba(0, 0, 0, .5) transparent;
  12. }
  13. input,
  14. textarea {
  15. -webkit-user-select: text;
  16. user-select: text;
  17. }
  18. html {
  19. height: 100%;
  20. width: 100%;
  21. overflow: hidden;
  22. }
  23. body {
  24. margin: 0px;
  25. width: 100%;
  26. height: 100%;
  27. font-size: 12px;
  28. font-weight: 400;
  29. overflow: hidden;
  30. color: #F1F1F1;
  31. background: #040404; // should match DEFAULT_BACKGROUND from interface_config
  32. }
  33. /**
  34. * This will hide the focus indicator if an element receives focus via the mouse,
  35. * but it will still show up on keyboard focus, thus preserving accessibility.
  36. */
  37. .js-focus-visible :focus:not(.focus-visible) {
  38. outline: none;
  39. }
  40. .jitsi-icon {
  41. &-default svg {
  42. fill: white;
  43. }
  44. }
  45. .disabled .jitsi-icon svg {
  46. fill: #929292;
  47. }
  48. .jitsi-icon.gray svg {
  49. fill: #5E6D7A;
  50. cursor: pointer;
  51. }
  52. p {
  53. margin: 0;
  54. }
  55. body, input, textarea, keygen, select, button {
  56. font-family: $baseFontFamily !important;
  57. }
  58. button, input, select, textarea {
  59. margin: 0;
  60. vertical-align: baseline;
  61. font-size: 1em;
  62. }
  63. button, select, input[type="button"],
  64. input[type="reset"], input[type="submit"] {
  65. cursor: pointer;
  66. }
  67. textarea {
  68. word-wrap: break-word;
  69. resize: none;
  70. line-height: 1.5em;
  71. }
  72. input[type='text'], input[type='password'], textarea {
  73. outline: none; /* removes the default outline */
  74. resize: none; /* prevents the user-resizing, adjust to taste */
  75. }
  76. button {
  77. color: #FFF;
  78. background-color: #44A5FF;
  79. border-radius: $borderRadius;
  80. &.no-icon {
  81. padding: 0 1em;
  82. }
  83. }
  84. button,
  85. form {
  86. display: block;
  87. }
  88. .watermark {
  89. display: block;
  90. position: absolute;
  91. top: 15;
  92. width: $watermarkWidth;
  93. height: $watermarkHeight;
  94. background-size: contain;
  95. background-repeat: no-repeat;
  96. z-index: $zindex2;
  97. }
  98. .leftwatermark {
  99. max-width: 140px;
  100. max-height:70px;
  101. left: 32px;
  102. top: 32px;
  103. background-position: center left;
  104. background-repeat: no-repeat;
  105. background-size: contain;
  106. &.no-margin {
  107. left:0;
  108. top:0;
  109. }
  110. }
  111. .rightwatermark {
  112. right: 32px;
  113. top: 32px;
  114. background-position: center right;
  115. }
  116. .poweredby {
  117. position: absolute;
  118. left: 25;
  119. bottom: 7;
  120. font-size: 11pt;
  121. color: rgba(255,255,255,.50);
  122. text-decoration: none;
  123. z-index: 100;
  124. }
  125. /**
  126. * Re-style default OS scrollbar.
  127. */
  128. ::-webkit-scrollbar {
  129. background: transparent;
  130. width: 7px;
  131. height: $scrollHeight;
  132. }
  133. ::-webkit-scrollbar-button {
  134. display: none;
  135. }
  136. ::-webkit-scrollbar-track {
  137. background: transparent;
  138. }
  139. ::-webkit-scrollbar-track-piece {
  140. background: transparent;
  141. }
  142. ::-webkit-scrollbar-thumb {
  143. background: #3D3D3D;
  144. border-radius: 4px;
  145. }
  146. /* Necessary for the new icons to work properly. */
  147. .jitsi-icon svg path {
  148. fill: inherit !important;
  149. }
  150. .sr-only {
  151. border: 0 !important;
  152. clip: rect(1px, 1px, 1px, 1px) !important;
  153. clip-path: inset(50%) !important;
  154. height: 1px !important;
  155. margin: -1px !important;
  156. overflow: hidden !important;
  157. padding: 0 !important;
  158. position: absolute !important;
  159. width: 1px !important;
  160. white-space: nowrap !important;
  161. }