Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

_base.scss 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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. }
  10. input,
  11. textarea {
  12. -webkit-user-select: text;
  13. user-select: text;
  14. }
  15. html {
  16. height: 100%;
  17. width: 100%;
  18. overflow: hidden;
  19. }
  20. body {
  21. margin: 0px;
  22. width: 100%;
  23. height: 100%;
  24. font-size: 12px;
  25. font-weight: 400;
  26. overflow: hidden;
  27. color: $defaultColor;
  28. background: $defaultBackground;
  29. }
  30. /**
  31. * This will hide the focus indicator if an element receives focus via the mouse,
  32. * but it will still show up on keyboard focus, thus preserving accessibility.
  33. */
  34. .js-focus-visible :focus:not(.focus-visible) {
  35. outline: none;
  36. }
  37. /**
  38. * AtlasKit sets a default margin on the rendered modals, so
  39. * when the shift-right class is set when the chat opens, we
  40. * pad the modal container in order for the modals to be centered
  41. * while also taking the chat size into consideration.
  42. */
  43. @media (min-width: 480px + $sidebarWidth) {
  44. .shift-right [class^="Modal__FillScreen"] {
  45. padding-left: $sidebarWidth;
  46. }
  47. }
  48. /**
  49. * Similarly, we offset the notifications when the chat is open by
  50. * padding the container.
  51. */
  52. .shift-right [class^="styledFlagGroup-"] {
  53. padding-left: $sidebarWidth;
  54. }
  55. .jitsi-icon svg {
  56. fill: white;
  57. }
  58. .jitsi-icon.gray svg {
  59. fill: #5E6D7A;
  60. cursor: pointer;
  61. }
  62. p {
  63. margin: 0;
  64. }
  65. body, input, textarea, keygen, select, button {
  66. font-family: $baseFontFamily !important;
  67. }
  68. #nowebrtc {
  69. display:none;
  70. }
  71. button, input, select, textarea {
  72. margin: 0;
  73. vertical-align: baseline;
  74. font-size: 1em;
  75. }
  76. button, select, input[type="button"],
  77. input[type="reset"], input[type="submit"] {
  78. cursor: pointer;
  79. }
  80. textarea {
  81. word-wrap: break-word;
  82. resize: none;
  83. line-height: 1.5em;
  84. }
  85. input[type='text'], input[type='password'], textarea {
  86. outline: none; /* removes the default outline */
  87. resize: none; /* prevents the user-resizing, adjust to taste */
  88. }
  89. button {
  90. color: #FFF;
  91. background-color: $buttonBackground;
  92. border-radius: $borderRadius;
  93. &.no-icon {
  94. padding: 0 1em;
  95. }
  96. }
  97. button,
  98. form {
  99. display: block;
  100. }
  101. .watermark {
  102. display: block;
  103. position: absolute;
  104. top: 15;
  105. width: $watermarkWidth;
  106. height: $watermarkHeight;
  107. background-size: contain;
  108. background-repeat: no-repeat;
  109. z-index: $zindex2;
  110. }
  111. .leftwatermark {
  112. left: 32px;
  113. top: 32px;
  114. background-position: center left;
  115. background-repeat: no-repeat;
  116. background-size: contain;
  117. }
  118. .rightwatermark {
  119. right: 32px;
  120. top: 32px;
  121. background-position: center right;
  122. }
  123. .poweredby {
  124. position: absolute;
  125. left: 25;
  126. bottom: 7;
  127. font-size: 11pt;
  128. color: rgba(255,255,255,.50);
  129. text-decoration: none;
  130. z-index: $poweredByZ;
  131. }
  132. .connected {
  133. color: #21B9FC;
  134. font-size: 12px;
  135. }
  136. .lastN, .disconnected {
  137. color: #a3a3a3;
  138. font-size: 12px;
  139. }
  140. /**
  141. * Dialogs fade
  142. */
  143. .aui-blanket {
  144. background: #000;
  145. transition: opacity 0.2s, visibility 0.2s;
  146. transition-delay: 0.1s;
  147. visibility: visible;
  148. }
  149. #inviteLinkRef {
  150. -webkit-user-select: text;
  151. user-select: text;
  152. }
  153. /**
  154. * Re-style default OS scrollbar.
  155. */
  156. ::-webkit-scrollbar {
  157. background: transparent;
  158. width: 7px;
  159. height: $scrollHeight;
  160. }
  161. ::-webkit-scrollbar-button {
  162. display: none;
  163. }
  164. ::-webkit-scrollbar-track {
  165. background: transparent;
  166. }
  167. ::-webkit-scrollbar-track-piece {
  168. background: transparent;
  169. }
  170. ::-webkit-scrollbar-thumb {
  171. background: rgba(0, 0, 0, .5);
  172. border-radius: 4px;
  173. }