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 2.9KB

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