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.

_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. $menuBG:#242528;
  40. $newToolbarFontSize: 24px;
  41. $newToolbarHangupFontSize: 32px;
  42. $newToolbarSize: 48px;
  43. $newToolbarSizeWithPadding: calc(#{$newToolbarSize} + 24px);
  44. $toolbarTitleFontSize: 19px;
  45. $overflowMenuItemColor: #fff;
  46. $overflowMenuItemBackground: #36383C;
  47. /**
  48. * Video layout
  49. */
  50. $videoThumbnailHovered: rgba(22, 94, 204, .4);
  51. $videoThumbnailSelected: #165ECC;
  52. $participantNameColor: #fff;
  53. $thumbnailPictogramColor: #fff;
  54. $dominantSpeakerBg: #165ecc;
  55. $raiseHandBg: #D6D61E;
  56. $audioLevelBg: #44A5FF;
  57. $connectionIndicatorBg: #165ecc;
  58. $audioLevelShadow: rgba(9, 36, 77, 0.9);
  59. $videoStateIndicatorColor: $defaultColor;
  60. $videoStateIndicatorBackground: $toolbarBackground;
  61. $videoStateIndicatorSize: 40px;
  62. $remoteVideoMenuIconMargin: initial;
  63. /**
  64. * Feedback Modal
  65. */
  66. $feedbackContentBg: #fff;
  67. $feedbackInputBg: #fff;
  68. $feedbackTextColor: #000;
  69. $feedbackInputTextColor: #333;
  70. $feedbackInputPlaceholderColor: #777;
  71. /**
  72. * Modals
  73. */
  74. $modalButtonFontSize: 14px;
  75. $modalMockAKInputBackground: #fafbfc;
  76. $modalMockAKInputBorder: 1px solid #f4f5f7;
  77. $modalTextColor: #333;
  78. /**
  79. * Chat
  80. */
  81. $chatActionsSeparatorColor: rgb(173, 105, 112);
  82. $chatBackgroundColor: #131519;
  83. $chatInputSeparatorColor: #A4B8D1;
  84. $chatLocalMessageBackgroundColor: #484A4F;
  85. $chatPrivateMessageBackgroundColor: rgb(153, 69, 77);
  86. $chatRemoteMessageBackgroundColor: #242528;
  87. $sidebarWidth: 315px;
  88. /**
  89. * Misc.
  90. */
  91. $borderRadius: 4px;
  92. $popoverMenuPadding: 13px;
  93. $happySoftwareBackground: transparent;
  94. $desktopAppDragBarHeight: 25px;
  95. $scrollHeight: 7px;
  96. /**
  97. * Z-indexes. TODO: Replace this by a function.
  98. */
  99. $zindex0: 0;
  100. $zindex1: 1;
  101. $zindex2: 2;
  102. $zindex3: 3;
  103. $toolbarBackgroundZ: 4;
  104. $labelsZ: 5;
  105. $subtitlesZ: 7;
  106. $popoverZ: 8;
  107. $zindex10: 10;
  108. $reloadZ: 20;
  109. $poweredByZ: 100;
  110. $ringingZ: 300;
  111. $sideToolbarContainerZ: 200;
  112. $toolbarZ: 250;
  113. $drawerZ: 351;
  114. $tooltipsZ: 401;
  115. $dropdownMaskZ: 900;
  116. $dropdownZ: 901;
  117. $centeredVideoLabelZ: 1010;
  118. $overlayZ: 1016;
  119. // Place filmstrip videos over toolbar in order
  120. // to make connection info visible.
  121. $filmstripVideosZ: $toolbarZ + 1;
  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;