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.

_variables.scss 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. @import "themes/light";
  2. /**
  3. * Style variables
  4. */
  5. $baseFontFamily: -apple-system, BlinkMacSystemFont, 'open_sanslight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  6. $hangupColor:#DD3849;
  7. $hangupHoverColor: #F25363;
  8. $hangupFontSize: 2em;
  9. /**
  10. * Size variables.
  11. */
  12. // Video layout.
  13. $thumbnailToolbarHeight: 22px;
  14. $thumbnailIndicatorBorder: 2px;
  15. $thumbnailIndicatorSize: $thumbnailToolbarHeight;
  16. $thumbnailVideoMargin: 2px;
  17. $thumbnailsBorder: 2px;
  18. $thumbnailVideoBorder: 2px;
  19. $filmstripToggleButtonWidth: 17px;
  20. /**
  21. * Color variables.
  22. */
  23. $defaultColor: #F1F1F1;
  24. $defaultSideBarFontColor: #44A5FF;
  25. $defaultSemiDarkColor: #ACACAC;
  26. $defaultDarkColor: #2b3d5c;
  27. $defaultWarningColor: rgb(215, 121, 118);
  28. $participantsPaneBgColor: #141414;
  29. $presence-available: rgb(110, 176, 5);
  30. $presence-away: rgb(250, 201, 20);
  31. $presence-busy: rgb(233, 0, 27);
  32. $presence-idle: rgb(172, 172, 172);
  33. /**
  34. * Toolbar
  35. */
  36. $newToolbarBackgroundColor: #131519;
  37. $newToolbarButtonHoverColor: rgba(255, 255, 255, 0.2);
  38. $newToolbarButtonToggleColor: rgba(255, 255, 255, 0.15);
  39. $AOTToolbarButtonHoverColor: rgba(14, 20, 35, 0.6);
  40. $AOTToolbarButtonToggleColor: rgba(14, 20, 35, 1);
  41. $menuBG:#242528;
  42. $newToolbarFontSize: 24px;
  43. $newToolbarHangupFontSize: 32px;
  44. $newToolbarSize: 48px;
  45. $newToolbarSizeWithPadding: calc(#{$newToolbarSize} + 24px);
  46. $toolbarTitleFontSize: 19px;
  47. $overflowMenuItemColor: #fff;
  48. $overflowMenuItemBackground: #36383C;
  49. /**
  50. * Video layout
  51. */
  52. $videoThumbnailHovered: rgba(22, 94, 204, .4);
  53. $videoThumbnailSelected: #165ECC;
  54. $participantNameColor: #fff;
  55. $thumbnailPictogramColor: #fff;
  56. $dominantSpeakerBg: #165ecc;
  57. $raiseHandBg: #D6D61E;
  58. $audioLevelBg: #44A5FF;
  59. $connectionIndicatorBg: #165ecc;
  60. $audioLevelShadow: rgba(9, 36, 77, 0.9);
  61. $videoStateIndicatorColor: $defaultColor;
  62. $videoStateIndicatorBackground: $toolbarBackground;
  63. $videoStateIndicatorSize: 40px;
  64. $remoteVideoMenuIconMargin: initial;
  65. /**
  66. * Feedback Modal
  67. */
  68. $feedbackContentBg: #fff;
  69. $feedbackInputBg: #fff;
  70. $feedbackTextColor: #000;
  71. $feedbackInputTextColor: #333;
  72. $feedbackInputPlaceholderColor: #777;
  73. /**
  74. * Modals
  75. */
  76. $modalButtonFontSize: 14px;
  77. $modalMockAKInputBackground: #fafbfc;
  78. $modalMockAKInputBorder: 1px solid #f4f5f7;
  79. $modalTextColor: #333;
  80. /**
  81. * Chat
  82. */
  83. $chatActionsSeparatorColor: rgb(173, 105, 112);
  84. $chatBackgroundColor: #131519;
  85. $chatInputSeparatorColor: #A4B8D1;
  86. $chatLocalMessageBackgroundColor: #484A4F;
  87. $chatPrivateMessageBackgroundColor: rgb(153, 69, 77);
  88. $chatRemoteMessageBackgroundColor: #242528;
  89. $sidebarWidth: 315px;
  90. /**
  91. * Misc.
  92. */
  93. $borderRadius: 4px;
  94. $popoverMenuPadding: 13px;
  95. $happySoftwareBackground: transparent;
  96. $desktopAppDragBarHeight: 25px;
  97. $scrollHeight: 7px;
  98. /**
  99. * Z-indexes. TODO: Replace this by a function.
  100. */
  101. $zindex0: 0;
  102. $zindex1: 1;
  103. $zindex2: 2;
  104. $zindex3: 3;
  105. $toolbarBackgroundZ: 4;
  106. $labelsZ: 5;
  107. $filmstripVideosZ: 6;
  108. $subtitlesZ: 7;
  109. $popoverZ: 8;
  110. $zindex10: 10;
  111. $reloadZ: 20;
  112. $poweredByZ: 100;
  113. $ringingZ: 300;
  114. $sideToolbarContainerZ: 200;
  115. $toolbarZ: 250;
  116. $drawerZ: 351;
  117. $tooltipsZ: 401;
  118. $dropdownMaskZ: 900;
  119. $dropdownZ: 901;
  120. $centeredVideoLabelZ: 1010;
  121. $overlayZ: 1016;
  122. /**
  123. * Font Colors
  124. */
  125. $defaultFontColor: #777;
  126. $defaultLightFontColor: #F1F1F1;
  127. $defaultDarkFontColor: #000;
  128. /**
  129. * Forms
  130. */
  131. //inputs
  132. $inputControlEmColor: #f29424;
  133. //buttons
  134. $linkFontColor: #489afe;
  135. $linkHoverFontColor: #287ade;
  136. $formPadding: 16px;
  137. /**
  138. * Unsupported browser
  139. */
  140. $primaryUnsupportedBrowserButtonBgColor: #0052CC;
  141. $unsupportedBrowserButtonBgColor: rgba(9, 30, 66, 0.04);
  142. $unsupportedBrowserTextColor: #4a4a4a;
  143. $unsupportedBrowserTextSmallFontSize: 17px;
  144. $unsupportedBrowserTitleColor: #fff;
  145. $unsupportedBrowserTitleFontSize: 24px;
  146. $unsupportedDesktopBrowserTextColor: rgba(255, 255, 255, 0.7);
  147. $unsupportedDesktopBrowserTextFontSize: 21px;
  148. /**
  149. * The size of the default watermark.
  150. */
  151. $watermarkWidth: 71px;
  152. $watermarkHeight: 32px;
  153. $welcomePageWatermarkWidth: 71px;
  154. $welcomePageWatermarkHeight: 32px;
  155. /**
  156. * Welcome page variables.
  157. */
  158. $welcomePageDescriptionColor: #fff;
  159. $welcomePageFontFamily: inherit;
  160. $welcomePageBackground: none;
  161. $welcomePageTitleColor: #fff;
  162. $welcomePageHeaderBackground: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/welcome-background.png');
  163. $welcomePageHeaderBackgroundPosition: center;
  164. $welcomePageHeaderBackgroundRepeat: none;
  165. $welcomePageHeaderBackgroundSize: cover;
  166. $welcomePageHeaderPaddingBottom: 0px;
  167. $welcomePageHeaderTitleMaxWidth: initial;
  168. $welcomePageHeaderTextAlign: center;
  169. $welcomePageHeaderContainerDisplay: flex;
  170. $welcomePageHeaderContainerMargin: 104px 32px 0 32px;
  171. $welcomePageHeaderTextTitleMarginBottom: 0;
  172. $welcomePageHeaderTextTitleFontSize: 42px;
  173. $welcomePageHeaderTextTitleFontWeight: normal;
  174. $welcomePageHeaderTextTitleLineHeight: 50px;
  175. $welcomePageHeaderTextTitleOpacity: 1;
  176. $welcomePageEnterRoomDisplay: flex;
  177. $welcomePageEnterRoomWidth: calc(100% - 32px);
  178. $welcomePageEnterRoomPadding: 4px;
  179. $welcomePageEnterRoomMargin: 0 auto;
  180. $welcomePageTabContainerDisplay: flex;
  181. $welcomePageTabContentDisplay: inherit;
  182. $welcomePageTabButtonsDisplay: flex;
  183. $welcomePageTabDisplay: block;
  184. /**
  185. * Deep-linking page variables.
  186. */
  187. $deepLinkingMobileLogoHeight: 40px;
  188. $deepLinkingMobileHeaderBackground: #f1f2f5;
  189. $deepLinkingMobileLinkColor: inherit;
  190. $deepLinkingMobileTextFontSize: inherit;
  191. $deepLinkingMobileTextLineHeight: inherit;
  192. $deepLinkingDialInConferenceIdMargin: 10px 0 10px 0;
  193. $deepLinkingDialInConferenceIdPadding: inherit;
  194. $deepLinkingDialInConferenceIdBackgroundColor: inherit;
  195. $deepLinkingDialInConferenceIdBorderRadius: inherit;
  196. $deepLinkingDialInConferenceNameFontSize: inherit;
  197. $deepLinkingDialInConferenceNameLineHeight: inherit;
  198. $deepLinkingDialInConferenceNameMarginBottom: none;
  199. $deepLinkingDialInConferenceNameFontWeight: inherit;
  200. $deepLinkingDialInConferenceDescriptionFontSize: 0.8em;
  201. $deepLinkingDialInConferenceDescriptionLineHeight: inherit;
  202. $deepLinkingDialInConferenceDescriptionMarginBottom: none;
  203. $deepLinkingDialInConferencePinFontSize: inherit;
  204. $deepLinkingDialInConferencePinLineHeight: inherit;
  205. $depLinkingMobileHrefLineHeight: 2.2857142857142856em;
  206. $deepLinkingMobileHrefFontWeight: bolder;
  207. $deepLinkingMobileHrefFontSize: inherit;
  208. $deepLinkingMobileButtonHeight: 2.2857142857142856em;
  209. $deepLinkingMobileButtonLineHeight: 2.2857142857142856em;
  210. $deepLinkingMobileButtonMargin: 18px auto 10px;
  211. $deepLinkingMobileButtonWidth: auto;
  212. $deepLinkingMobileButtonFontWeight: bold;
  213. $deepLinkingMobileButtonFontSize: inherit;
  214. $primaryDeepLinkingMobileButtonBorderRadius: inherit;
  215. /**
  216. * Chrome extension banner variables.
  217. */
  218. $chromeExtensionBannerDontShowAgainDisplay: flex;
  219. $chromeExtensionBannerHeight: 128px;
  220. $chromeExtensionBannerTop: 80px;
  221. $chromeExtensionBannerRight: 16px;
  222. $chromeExtensionBannerTopInMeeting: 10px;
  223. $chromeExtensionBannerRightInMeeeting: 10px;
  224. /**
  225. * media type thresholds
  226. */
  227. $smallScreen: 700px;
  228. $verySmallScreen: 500px;