您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_base.scss 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. * {
  2. -webkit-user-select: none;
  3. user-select: none;
  4. }
  5. body {
  6. margin: 0px;
  7. width: 100%;
  8. height: 100%;
  9. font-size: 12px;
  10. font-weight: 400;
  11. overflow: hidden;
  12. color: $defaultColor;
  13. background: $defaultBackground;
  14. &.filmstrip-only {
  15. background: transparent;
  16. }
  17. }
  18. p {
  19. margin: 0;
  20. }
  21. body, input, textarea, keygen, select, button {
  22. font-family: $baseFontFamily !important;
  23. }
  24. #nowebrtc {
  25. display:none;
  26. }
  27. .no-fa-video-camera, .fa-microphone-slash {
  28. color: #636363;
  29. }
  30. button, input, select, textarea {
  31. margin: 0;
  32. vertical-align: baseline;
  33. color: $inputColor;
  34. font-size: 1em;
  35. }
  36. button, select, input[type="button"],
  37. input[type="reset"], input[type="submit"] {
  38. height: 32px;
  39. line-height: 32px;
  40. padding-left: 4px;
  41. padding-right: 4px;
  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: 2;
  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: 100;
  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. }