From 7afd536202e3b8e66fc5a07ebc4ff00119771436 Mon Sep 17 00:00:00 2001 From: Nilay Majorwar Date: Thu, 3 Feb 2022 18:13:22 +0530 Subject: [PATCH] Add custom theme file to react-mosaic --- pages/_app.tsx | 1 + styles/mosaic.scss | 187 +++++++++++++++++++++++++++++++++++++++++++++ ui/MainLayout.tsx | 2 +- 3 files changed, 189 insertions(+), 1 deletion(-) create mode 100644 styles/mosaic.scss diff --git a/pages/_app.tsx b/pages/_app.tsx index 21129ec..b2794ae 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,5 +1,6 @@ import "../styles/globals.css"; import "../styles/editor.css"; +import "../styles/mosaic.scss"; import "@blueprintjs/core/lib/css/blueprint.css"; import "@blueprintjs/icons/lib/css/blueprint-icons.css"; import "react-mosaic-component/react-mosaic-component.css"; diff --git a/styles/mosaic.scss b/styles/mosaic.scss new file mode 100644 index 0000000..3588d63 --- /dev/null +++ b/styles/mosaic.scss @@ -0,0 +1,187 @@ +@import "../node_modules/@blueprintjs/core/lib/scss/variables.scss"; + +.mosaic.mosaic-custom-theme { + background: $gray4; + + .mosaic-zero-state { + background: $light-gray3; + border-radius: $pt-border-radius; + box-shadow: $pt-elevation-shadow-0; + + .default-zero-state-icon { + font-size: 120px; + } + } + + .mosaic-split:hover { + background: none; + .mosaic-split-line { + box-shadow: 0 0 0 1px $blue4; + } + } + + &.mosaic-drop-target, + .mosaic-drop-target { + .drop-target-container .drop-target { + background: fade($blue5, 20%); + border: 2px solid $blue4; + transition: opacity 100ms; + border-radius: $pt-border-radius; + } + } + + .mosaic-window, + .mosaic-preview { + box-shadow: $pt-elevation-shadow-0; + border-radius: $pt-border-radius; + + .mosaic-window-toolbar { + box-shadow: 0 1px 1px $pt-divider-black; + border-top-right-radius: $pt-border-radius; + border-top-left-radius: $pt-border-radius; + + &.draggable:hover { + .mosaic-window-title { + color: $black; + } + background: linear-gradient(to bottom, $white, $light-gray5); + } + } + + .mosaic-window-title { + font-weight: 600; + color: $dark-gray5; + } + + .mosaic-window-controls { + .separator { + border-left: 1px solid $light-gray2; + } + .bp3-button { + &, + &:before { + color: $gray2; + } + } + } + + .default-preview-icon { + font-size: 72px; + } + + .mosaic-window-body { + border-top-width: 0; + background: $pt-app-background-color; + border-bottom-right-radius: $pt-border-radius; + border-bottom-left-radius: $pt-border-radius; + } + + .mosaic-window-additional-actions-bar { + transition: height 250ms; + box-shadow: 0 1px 1px $pt-divider-black; + + .bp3-button { + &, + &:before { + color: $gray2; + } + } + } + + &.additional-controls-open { + .mosaic-window-toolbar { + box-shadow: 0 1px 0 $pt-elevation-shadow-0; + } + } + + .mosaic-preview { + border: 1px solid $gray3; + + h4 { + color: $dark-gray5; + } + } + } + + &.bp3-dark { + background: $dark-gray2; + + .mosaic-zero-state { + background: $dark-gray4; + box-shadow: $pt-dark-elevation-shadow-0; + } + + .mosaic-split:hover .mosaic-split-line { + box-shadow: 0 0 0 1px $blue3; + } + + &.mosaic-drop-target, + .mosaic-drop-target { + .drop-target-container .drop-target { + background: fade($blue2, 20%); + border-color: $blue3; + } + } + + .mosaic-window-toolbar, + .mosaic-window-additional-actions-bar { + background: $dark-gray4; + box-shadow: 0 1px 1px $pt-dark-divider-black; + } + + .mosaic-window, + .mosaic-preview { + box-shadow: $pt-dark-elevation-shadow-0; + + .mosaic-window-toolbar.draggable:hover { + .mosaic-window-title { + color: $white; + } + background: linear-gradient(to bottom, $dark-gray5, $dark-gray4); + } + + .mosaic-window-title { + color: $light-gray2; + } + + .mosaic-window-controls { + .separator { + border-color: $gray1; + } + .bp3-button { + &, + &:before { + color: $gray4; + } + } + } + + .mosaic-window-body { + background: $pt-dark-app-background-color; + } + + .mosaic-window-additional-actions-bar { + .bp3-button { + &, + &:before { + color: $gray5; + } + } + } + + &.additional-controls-open { + .mosaic-window-toolbar { + box-shadow: $pt-dark-elevation-shadow-0; + } + } + + .mosaic-preview { + border-color: $gray1; + + h4 { + color: $light-gray4; + } + } + } + } +} diff --git a/ui/MainLayout.tsx b/ui/MainLayout.tsx index 7f750a4..5e36394 100644 --- a/ui/MainLayout.tsx +++ b/ui/MainLayout.tsx @@ -25,7 +25,7 @@ type Props = { export const MainLayout = (props: Props) => { const { isDark } = useDarkMode(); - const mosaicClass = "mosaic-blueprint-theme" + (isDark ? " bp3-dark" : ""); + const mosaicClass = "mosaic-custom-theme" + (isDark ? " bp3-dark" : ""); const MOSAIC_MAP = { editor: props.renderEditor,