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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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: $watermarkWidth;
  71. height: $watermarkHeight;
  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. * Dialogs fade
  105. */
  106. .aui-blanket {
  107. visibility: visible;
  108. }
  109. #inviteLinkRef {
  110. -webkit-user-select: text;
  111. user-select: text;
  112. }
  113. /**
  114. * Re-style default OS scrollbar.
  115. */
  116. ::-webkit-scrollbar {
  117. background: transparent;
  118. width: 7px;
  119. }
  120. ::-webkit-scrollbar-button {
  121. display: none;
  122. }
  123. ::-webkit-scrollbar-track {
  124. background: transparent;
  125. }
  126. ::-webkit-scrollbar-track-piece {
  127. background: transparent;
  128. }
  129. ::-webkit-scrollbar-thumb {
  130. background: rgba(0, 0, 0, .5);
  131. border-radius: 4px;
  132. }