From f7a4d485cdc505479778417d2e337fc6140d942a Mon Sep 17 00:00:00 2001 From: Brian <47831340+endocytosis@users.noreply.github.com> Date: Mon, 27 Nov 2023 09:37:01 -0600 Subject: [PATCH 01/39] web-publisher: Update docs/teams/what-is-stackblitz-teams.md (#184) --- docs/teams/what-is-stackblitz-teams.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/teams/what-is-stackblitz-teams.md b/docs/teams/what-is-stackblitz-teams.md index 035d5057..7daa8bd6 100644 --- a/docs/teams/what-is-stackblitz-teams.md +++ b/docs/teams/what-is-stackblitz-teams.md @@ -14,7 +14,7 @@ StackBlitz Teams is designed to allow you to build the web with the web; collabo Traditionally, collaborating on coding projects required setting up complex repositories in local development environments, a high friction, low security process that introduces the classic “it works on my machine” style issues into the code collaboration process. StackBlitz Teams eliminates all of these issues by providing a consistent, performant and secure in-browser development environment where team members can collaborate seamlessly. ### Integrated with your GitHub Organization -StackBlitz Teams seamlessly integrates with your existing GitHub organization and all it’s existing permissions settings. This means that team members can easily access the workspace and collaborate on both public and private GitHub repositories without any additional configuration. +StackBlitz Teams seamlessly integrates with your existing GitHub organization and all its existing permissions settings. This means that team members can easily access the workspace and collaborate on both public and private GitHub repositories without any additional configuration. ### One-click Pull Request Reviews Say goodbye to the cumbersome process of local code reviews. With StackBlitz Teams, you can directly jump into any pull request with a single click. Our in-browser staging server makes the review process swift and efficient and ensures the code is actually executed (not just read over) before being pushed to production. From 372bf828773c9dc2aa58936d26a44b2309b8af14 Mon Sep 17 00:00:00 2001 From: Aleksandr Date: Wed, 29 Nov 2023 21:38:03 +0100 Subject: [PATCH 02/39] feat: add maintenance banner (#185) * feat: add maintenance banner Mostly copy of the vite conf banner. I did adjustments to show it for all screen sizes. Co-authored-by: Yuka Masuda * Update MaintenanceBanner.vue * feat: update maintenance banner colors to be less jazzy * Update MaintenanceBanner.vue --------- Co-authored-by: Yuka Masuda Co-authored-by: Albert Pai --- .vitepress/theme/components/CustomLayout.vue | 5 + .../theme/components/Icons/CloseIcon.vue | 8 + .../theme/components/Icons/WarningIcon.vue | 5 + .../theme/components/MaintenanceBanner.vue | 149 ++++++++++++++++++ .vitepress/theme/styles/fixes.scss | 25 +-- 5 files changed, 181 insertions(+), 11 deletions(-) create mode 100644 .vitepress/theme/components/Icons/CloseIcon.vue create mode 100644 .vitepress/theme/components/Icons/WarningIcon.vue create mode 100644 .vitepress/theme/components/MaintenanceBanner.vue diff --git a/.vitepress/theme/components/CustomLayout.vue b/.vitepress/theme/components/CustomLayout.vue index abbd79a3..ecea0840 100644 --- a/.vitepress/theme/components/CustomLayout.vue +++ b/.vitepress/theme/components/CustomLayout.vue @@ -1,5 +1,7 @@ + + + + diff --git a/.vitepress/theme/styles/fixes.scss b/.vitepress/theme/styles/fixes.scss index 28bef803..2c2521da 100644 --- a/.vitepress/theme/styles/fixes.scss +++ b/.vitepress/theme/styles/fixes.scss @@ -1,16 +1,19 @@ -// ViteConfBanner related +// MaintenanceBanner related // Only show it in big screen for now .Layout.with-banner { - @media (min-width: 960px) { - .VPNav { - --vp-layout-top-height: 48px; - } - .VPContent .VPDoc { - padding: 90px 32px 0; - } - .VPSidebar { - --vp-nav-height: 90px; - } + --sbdocs-top-banner-height: 48px; + .VPNav { + --vp-layout-top-height: var(--sbdocs-top-banner-height); + } + .VPContent .VPDoc { + padding: 90px 32px 0; + } + .VPSidebar { + --vp-nav-height: 90px; + } + + @media (max-width: 600px) { + --sbdocs-top-banner-height: 60px; } } From af0a869bdc342cfe4046db082aef83dac25f5037 Mon Sep 17 00:00:00 2001 From: Albert Pai Date: Sat, 2 Dec 2023 09:32:49 -0800 Subject: [PATCH 03/39] chore: remove maintenance banner (#187) --- .vitepress/theme/components/CustomLayout.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.vitepress/theme/components/CustomLayout.vue b/.vitepress/theme/components/CustomLayout.vue index ecea0840..95278742 100644 --- a/.vitepress/theme/components/CustomLayout.vue +++ b/.vitepress/theme/components/CustomLayout.vue @@ -1,6 +1,5 @@ + + diff --git a/.vitepress/theme/components/CustomLayout.vue b/.vitepress/theme/components/CustomLayout.vue index 95278742..142fed67 100644 --- a/.vitepress/theme/components/CustomLayout.vue +++ b/.vitepress/theme/components/CustomLayout.vue @@ -4,6 +4,7 @@ import DefaultTheme from 'vitepress/theme'; const { Layout } = DefaultTheme; import Feedback from '@theme/components/Feedback/Feedback.vue'; +import Chatlio from '@theme/components/Chatlio.vue';