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

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