Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

_base.scss 2.3KB

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