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

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