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.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. word-wrap: break-word;
  60. resize: none;
  61. line-height: 1.5em;
  62. }
  63. input[type='text'], input[type='password'], textarea {
  64. outline: none; /* removes the default outline */
  65. resize: none; /* prevents the user-resizing, adjust to taste */
  66. }
  67. button {
  68. color: #FFF;
  69. background-color: $buttonBackground;
  70. border-radius: $borderRadius;
  71. &.no-icon {
  72. padding: 0 1em;
  73. }
  74. }
  75. button,
  76. form {
  77. display: block;
  78. }
  79. .watermark {
  80. display: block;
  81. position: absolute;
  82. top: 15;
  83. width: $watermarkWidth;
  84. height: $watermarkHeight;
  85. background-size: contain;
  86. background-repeat: no-repeat;
  87. z-index: $zindex2;
  88. }
  89. .leftwatermark {
  90. left: $defaultToolbarSize;
  91. margin-left: 10px;
  92. background-image: url($defaultWatermarkLink);
  93. background-position: center left;
  94. }
  95. .rightwatermark {
  96. right: 15;
  97. background-position: center right;
  98. }
  99. .poweredby {
  100. position: absolute;
  101. left: 25;
  102. bottom: 7;
  103. font-size: 11pt;
  104. color: rgba(255,255,255,.50);
  105. text-decoration: none;
  106. z-index: $poweredByZ;
  107. }
  108. .connected {
  109. color: #21B9FC;
  110. font-size: 12px;
  111. }
  112. .lastN, .disconnected {
  113. color: #a3a3a3;
  114. font-size: 12px;
  115. }
  116. /**
  117. * Dialogs fade
  118. */
  119. .aui-blanket {
  120. background: #000;
  121. transition: opacity 0.2s, visibility 0.2s;
  122. transition-delay: 0.1s;
  123. visibility: visible;
  124. }
  125. #inviteLinkRef {
  126. -webkit-user-select: text;
  127. user-select: text;
  128. }
  129. /**
  130. * Re-style default OS scrollbar.
  131. */
  132. ::-webkit-scrollbar {
  133. background: transparent;
  134. width: 7px;
  135. }
  136. ::-webkit-scrollbar-button {
  137. display: none;
  138. }
  139. ::-webkit-scrollbar-track {
  140. background: transparent;
  141. }
  142. ::-webkit-scrollbar-track-piece {
  143. background: transparent;
  144. }
  145. ::-webkit-scrollbar-thumb {
  146. background: rgba(0, 0, 0, .5);
  147. border-radius: 4px;
  148. }