2016-09-02 12:53:22 +03:00
|
|
|
/**
|
2016-09-08 13:22:50 -05:00
|
|
|
* Style variables
|
|
|
|
|
*/
|
2018-07-24 12:26:17 -07:00
|
|
|
$baseFontFamily: -apple-system, BlinkMacSystemFont, 'open_sanslight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
2016-09-08 13:22:50 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Size variables.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-09-14 21:20:54 -05:00
|
|
|
// Video layout.
|
2016-11-11 18:52:36 +02:00
|
|
|
$thumbnailsBorder: 2px;
|
2016-09-14 21:20:54 -05:00
|
|
|
|
2016-10-26 17:52:55 +03:00
|
|
|
/**
|
|
|
|
|
* Toolbar
|
|
|
|
|
*/
|
2021-03-16 14:25:30 +02:00
|
|
|
$newToolbarBackgroundColor: #131519;
|
2021-02-23 13:09:22 +02:00
|
|
|
$newToolbarSize: 48px;
|
2021-07-22 09:37:44 +03:00
|
|
|
$newToolbarSizeMobile: 60px;
|
2018-05-04 13:10:48 -07:00
|
|
|
$newToolbarSizeWithPadding: calc(#{$newToolbarSize} + 24px);
|
2017-04-11 10:30:14 -07:00
|
|
|
|
2016-09-11 16:54:32 -05:00
|
|
|
/**
|
2019-05-02 15:14:09 -07:00
|
|
|
* Chat
|
|
|
|
|
*/
|
2021-03-18 09:08:34 +02:00
|
|
|
$chatBackgroundColor: #131519;
|
2019-05-02 15:14:09 -07:00
|
|
|
|
2022-10-25 11:01:53 +03:00
|
|
|
/**
|
2016-09-11 16:54:32 -05:00
|
|
|
* Misc.
|
|
|
|
|
*/
|
2017-01-09 15:32:25 -06:00
|
|
|
$borderRadius: 4px;
|
2019-12-16 17:57:53 +00:00
|
|
|
$scrollHeight: 7px;
|
2016-11-01 13:13:07 -05:00
|
|
|
|
2016-09-12 23:10:18 -05:00
|
|
|
/**
|
|
|
|
|
* Z-indexes. TODO: Replace this by a function.
|
|
|
|
|
*/
|
2017-03-30 10:13:00 -07:00
|
|
|
$zindex0: 0;
|
|
|
|
|
$zindex1: 1;
|
|
|
|
|
$zindex2: 2;
|
|
|
|
|
$zindex3: 3;
|
2021-02-23 13:09:22 +02:00
|
|
|
$toolbarZ: 250;
|
2025-03-06 09:14:51 +00:00
|
|
|
$watermarkZ: 253;
|
|
|
|
|
|
2021-06-02 10:39:02 +03:00
|
|
|
// Place filmstrip videos over toolbar in order
|
|
|
|
|
// to make connection info visible.
|
|
|
|
|
$filmstripVideosZ: $toolbarZ + 1;
|
2017-03-30 10:13:00 -07:00
|
|
|
|
2016-12-22 14:50:20 +02:00
|
|
|
/**
|
2017-02-07 16:45:51 +02:00
|
|
|
* Unsupported browser
|
2017-01-13 16:37:53 -06:00
|
|
|
*/
|
2017-12-04 17:16:16 -06:00
|
|
|
$primaryUnsupportedBrowserButtonBgColor: #0052CC;
|
|
|
|
|
$unsupportedBrowserButtonBgColor: rgba(9, 30, 66, 0.04);
|
2017-01-19 17:47:22 +02:00
|
|
|
$unsupportedBrowserTextColor: #4a4a4a;
|
2025-04-10 16:06:52 +03:00
|
|
|
$unsupportedBrowserTextSmallFontSize: 1rem;
|
2017-02-07 16:45:51 +02:00
|
|
|
$unsupportedBrowserTitleColor: #fff;
|
2025-04-10 16:06:52 +03:00
|
|
|
$unsupportedBrowserTitleFontSize: 1.5rem;
|
2017-02-07 16:45:51 +02:00
|
|
|
$unsupportedDesktopBrowserTextColor: rgba(255, 255, 255, 0.7);
|
2025-04-10 16:06:52 +03:00
|
|
|
$unsupportedDesktopBrowserTextFontSize: 1.25rem;
|
2017-08-30 14:01:41 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The size of the default watermark.
|
|
|
|
|
*/
|
2020-10-19 10:37:19 +03:00
|
|
|
$watermarkWidth: 71px;
|
|
|
|
|
$watermarkHeight: 32px;
|
2018-02-21 20:58:55 -08:00
|
|
|
|
2020-10-19 10:37:19 +03:00
|
|
|
$welcomePageWatermarkWidth: 71px;
|
|
|
|
|
$welcomePageWatermarkHeight: 32px;
|
2020-08-11 17:44:19 -05:00
|
|
|
|
2018-02-21 20:58:55 -08:00
|
|
|
/**
|
|
|
|
|
* Welcome page variables.
|
|
|
|
|
*/
|
2018-10-22 13:49:18 -05:00
|
|
|
$welcomePageDescriptionColor: #fff;
|
2018-02-22 15:08:17 -08:00
|
|
|
$welcomePageFontFamily: inherit;
|
2020-10-19 10:37:19 +03:00
|
|
|
$welcomePageBackground: none;
|
2018-02-21 20:58:55 -08:00
|
|
|
$welcomePageTitleColor: #fff;
|
2019-03-15 11:07:45 +00:00
|
|
|
|
2020-11-11 15:11:31 +02:00
|
|
|
$welcomePageHeaderBackground: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/welcome-background.png');
|
2020-11-09 10:11:14 +02:00
|
|
|
$welcomePageHeaderBackgroundPosition: center;
|
2019-10-15 10:33:36 +03:00
|
|
|
$welcomePageHeaderBackgroundRepeat: none;
|
2020-10-19 10:37:19 +03:00
|
|
|
$welcomePageHeaderBackgroundSize: cover;
|
2025-03-04 15:59:49 +02:00
|
|
|
$welcomePageHeaderPadding: 1rem;
|
2020-10-19 10:37:19 +03:00
|
|
|
$welcomePageHeaderTitleMaxWidth: initial;
|
|
|
|
|
$welcomePageHeaderTextAlign: center;
|
2025-03-04 15:59:49 +02:00
|
|
|
$welcomePageButtonBg: #0074E0;
|
|
|
|
|
$welcomePageButtonHoverBg: #4687ED;
|
|
|
|
|
$welcomePageButtonFocusOutline: #00225A;
|
2019-10-15 10:33:36 +03:00
|
|
|
|
2022-12-22 15:18:06 +02:00
|
|
|
$welcomePageHeaderContainerMarginTop: 104px;
|
2020-10-19 10:37:19 +03:00
|
|
|
$welcomePageHeaderContainerDisplay: flex;
|
2022-12-22 15:18:06 +02:00
|
|
|
$welcomePageHeaderContainerMargin: $welcomePageHeaderContainerMarginTop auto 0;
|
2019-10-15 10:33:36 +03:00
|
|
|
|
2020-10-19 10:37:19 +03:00
|
|
|
$welcomePageHeaderTextTitleMarginBottom: 0;
|
2025-04-10 16:06:52 +03:00
|
|
|
$welcomePageHeaderTextTitleFontSize: 2.625rem;
|
2020-10-19 10:37:19 +03:00
|
|
|
$welcomePageHeaderTextTitleFontWeight: normal;
|
2025-08-07 03:07:27 +03:00
|
|
|
$welcomePageHeaderTextTitleLineHeight: 3.125rem;
|
2019-10-22 12:53:33 +03:00
|
|
|
$welcomePageHeaderTextTitleOpacity: 1;
|
2019-10-15 10:33:36 +03:00
|
|
|
|
2020-08-06 17:30:56 +03:00
|
|
|
$welcomePageEnterRoomDisplay: flex;
|
2020-10-19 10:37:19 +03:00
|
|
|
$welcomePageEnterRoomWidth: calc(100% - 32px);
|
|
|
|
|
$welcomePageEnterRoomPadding: 4px;
|
|
|
|
|
$welcomePageEnterRoomMargin: 0 auto;
|
2019-10-15 10:33:36 +03:00
|
|
|
|
|
|
|
|
$welcomePageTabContainerDisplay: flex;
|
|
|
|
|
$welcomePageTabContentDisplay: inherit;
|
|
|
|
|
$welcomePageTabButtonsDisplay: flex;
|
2019-10-15 14:39:52 +03:00
|
|
|
$welcomePageTabDisplay: block;
|
2019-10-15 10:33:36 +03:00
|
|
|
|
2019-03-15 11:07:45 +00:00
|
|
|
/**
|
|
|
|
|
* Deep-linking page variables.
|
|
|
|
|
*/
|
|
|
|
|
$deepLinkingMobileLogoHeight: 40px;
|
2019-11-05 14:02:39 +02:00
|
|
|
|
2019-03-15 11:07:45 +00:00
|
|
|
$deepLinkingMobileHeaderBackground: #f1f2f5;
|
2019-11-05 14:02:39 +02:00
|
|
|
|
|
|
|
|
$deepLinkingMobileLinkColor: inherit;
|
|
|
|
|
$deepLinkingMobileTextFontSize: inherit;
|
|
|
|
|
$deepLinkingMobileTextLineHeight: inherit;
|
|
|
|
|
|
|
|
|
|
$deepLinkingDialInConferenceIdMargin: 10px 0 10px 0;
|
|
|
|
|
$deepLinkingDialInConferenceIdPadding: inherit;
|
|
|
|
|
$deepLinkingDialInConferenceIdBackgroundColor: inherit;
|
|
|
|
|
$deepLinkingDialInConferenceIdBorderRadius: inherit;
|
|
|
|
|
|
|
|
|
|
$deepLinkingDialInConferenceDescriptionFontSize: 0.8em;
|
|
|
|
|
$deepLinkingDialInConferenceDescriptionLineHeight: inherit;
|
|
|
|
|
$deepLinkingDialInConferenceDescriptionMarginBottom: none;
|
|
|
|
|
|
|
|
|
|
$deepLinkingDialInConferencePinFontSize: inherit;
|
|
|
|
|
$deepLinkingDialInConferencePinLineHeight: inherit;
|
|
|
|
|
|
|
|
|
|
$depLinkingMobileHrefLineHeight: 2.2857142857142856em;
|
|
|
|
|
$deepLinkingMobileHrefFontWeight: bolder;
|
|
|
|
|
$deepLinkingMobileHrefFontSize: inherit;
|
|
|
|
|
|
|
|
|
|
$deepLinkingMobileButtonHeight: 2.2857142857142856em;
|
|
|
|
|
$deepLinkingMobileButtonLineHeight: 2.2857142857142856em;
|
|
|
|
|
$deepLinkingMobileButtonMargin: 18px auto 10px;
|
|
|
|
|
$deepLinkingMobileButtonWidth: auto;
|
|
|
|
|
$deepLinkingMobileButtonFontWeight: bold;
|
|
|
|
|
$deepLinkingMobileButtonFontSize: inherit;
|
|
|
|
|
|
|
|
|
|
$primaryDeepLinkingMobileButtonBorderRadius: inherit;
|
2020-01-23 11:32:52 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Chrome extension banner variables.
|
|
|
|
|
*/
|
|
|
|
|
$chromeExtensionBannerDontShowAgainDisplay: flex;
|
|
|
|
|
$chromeExtensionBannerHeight: 128px;
|
|
|
|
|
$chromeExtensionBannerTop: 80px;
|
|
|
|
|
$chromeExtensionBannerRight: 16px;
|
|
|
|
|
$chromeExtensionBannerTopInMeeting: 10px;
|
|
|
|
|
$chromeExtensionBannerRightInMeeeting: 10px;
|
2020-07-31 13:53:19 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* media type thresholds
|
|
|
|
|
*/
|
|
|
|
|
$verySmallScreen: 500px;
|
2021-08-20 11:53:11 +03:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Prejoin / premeeting screen
|
|
|
|
|
*/
|
|
|
|
|
|
2021-10-21 09:43:01 +03:00
|
|
|
$prejoinDefaultContentWidth: 336px;
|