Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

_base.scss 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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. body {
  16. margin: 0px;
  17. width: 100%;
  18. height: 100%;
  19. font-size: 12px;
  20. font-weight: 400;
  21. overflow: hidden;
  22. color: $defaultColor;
  23. background: $defaultBackground;
  24. &.filmstrip-only {
  25. background: transparent;
  26. }
  27. }
  28. /**
  29. * AtlasKitThemeProvider sets a background color on an app-wrapping div, thereby
  30. * preventing transparency in filmstrip-only mode. The selector chosen to
  31. * override this behavior is specific to where the AtlasKitThemeProvider might
  32. * be placed within the app hierarchy.
  33. */
  34. .filmstrip-only #react > .ckAJgx {
  35. background: transparent;
  36. }
  37. p {
  38. margin: 0;
  39. }
  40. body, input, textarea, keygen, select, button {
  41. font-family: $baseFontFamily !important;
  42. }
  43. #nowebrtc {
  44. display:none;
  45. }
  46. .no-fa-video-camera, .fa-microphone-slash {
  47. color: #636363;
  48. }
  49. button, input, select, textarea {
  50. margin: 0;
  51. vertical-align: baseline;
  52. font-size: 1em;
  53. }
  54. button, select, input[type="button"],
  55. input[type="reset"], input[type="submit"] {
  56. cursor: pointer;
  57. }
  58. textarea {
  59. overflow: hidden;
  60. word-wrap: break-word;
  61. resize: none;
  62. line-height: 1.5em;
  63. }
  64. input[type='text'], input[type='password'], textarea {
  65. outline: none; /* removes the default outline */
  66. resize: none; /* prevents the user-resizing, adjust to taste */
  67. }
  68. button {
  69. color: #FFF;
  70. background-color: $buttonBackground;
  71. border-radius: $borderRadius;
  72. &.no-icon {
  73. padding: 0 1em;
  74. }
  75. }
  76. button,
  77. form {
  78. display: block;
  79. }
  80. .watermark {
  81. display: block;
  82. position: absolute;
  83. top: 15;
  84. width: $watermarkWidth;
  85. height: $watermarkHeight;
  86. background-size: contain;
  87. background-repeat: no-repeat;
  88. z-index: $zindex2;
  89. }
  90. .leftwatermark {
  91. left: $defaultToolbarSize;
  92. margin-left: 10px;
  93. background-image: url($defaultWatermarkLink);
  94. background-position: center left;
  95. }
  96. .rightwatermark {
  97. right: 15;
  98. background-position: center right;
  99. }
  100. .poweredby {
  101. position: absolute;
  102. left: 25;
  103. bottom: 7;
  104. font-size: 11pt;
  105. color: rgba(255,255,255,.50);
  106. text-decoration: none;
  107. z-index: $poweredByZ;
  108. }
  109. .connected {
  110. color: #21B9FC;
  111. font-size: 12px;
  112. }
  113. .lastN, .disconnected {
  114. color: #a3a3a3;
  115. font-size: 12px;
  116. }
  117. /**
  118. * Dialogs fade
  119. */
  120. .aui-blanket {
  121. background: #000;
  122. transition: opacity 0.2s, visibility 0.2s;
  123. transition-delay: 0.1s;
  124. visibility: visible;
  125. }
  126. #inviteLinkRef {
  127. -webkit-user-select: text;
  128. user-select: text;
  129. }
  130. /**
  131. * Re-style default OS scrollbar.
  132. */
  133. ::-webkit-scrollbar {
  134. background: transparent;
  135. width: 7px;
  136. }
  137. ::-webkit-scrollbar-button {
  138. display: none;
  139. }
  140. ::-webkit-scrollbar-track {
  141. background: transparent;
  142. }
  143. ::-webkit-scrollbar-track-piece {
  144. background: transparent;
  145. }
  146. ::-webkit-scrollbar-thumb {
  147. background: rgba(0, 0, 0, .5);
  148. border-radius: 4px;
  149. }