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.

_base.scss 3.2KB

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