diff --git a/packages/theme/styles/_colors.scss b/packages/theme/styles/_colors.scss index a78a677c6be..19e4f1cf8d4 100644 --- a/packages/theme/styles/_colors.scss +++ b/packages/theme/styles/_colors.scss @@ -124,7 +124,7 @@ --theme-refinput-border: rgba(255, 255, 255, .1); // Be aware to update defineAlpha() function in colors.ts - --theme-bg-color: #1A1A28; + --theme-bg-color: #14141f; --theme-bg-accent-color: rgba(0, 0, 0, .08); --theme-bg-dark-color: rgba(0, 0, 0, .2); --theme-back-color: #0f0f18; @@ -188,6 +188,7 @@ --theme-popup-shadow: 0 0 .5rem rgba(0, 0, 0, .2); --theme-popup-checkicon: #FFFFFF99; --theme-panel-color: #1A1A28; + --theme-workbench-color: #1A1A28; --theme-calendar-today-color: #fff; --theme-calendar-holiday-color: #eb5757; --theme-calendar-weekend-color: rgba(242, 153, 74, 1); @@ -447,6 +448,7 @@ --theme-popup-shadow: 0 0 .5rem rgba(0, 0, 0, .2); --theme-popup-checkicon: #205DC2; --theme-panel-color: #FFFFFF; + --theme-workbench-color: #FFFFFF; --theme-calendar-today-color: #000; --theme-calendar-holiday-color: #eb5757; --theme-calendar-weekend-color: rgba(242, 153, 74, 1); diff --git a/packages/theme/styles/common.scss b/packages/theme/styles/common.scss index edaa02262a2..fc46e94b509 100644 --- a/packages/theme/styles/common.scss +++ b/packages/theme/styles/common.scss @@ -113,8 +113,9 @@ flex-direction: column; min-width: var(--app-panel-width); width: var(--app-panel-width); - height: 100%; - border-right: 1px solid var(--theme-navpanel-divider); + margin: var(--spacing-1); + border: 1px solid var(--theme-divider-color); + border-radius: var(--medium-BorderRadius) !important; } &.horizonatl { min-height: var(--app-panel-width); @@ -130,7 +131,6 @@ .antiPanel-navigator, .antiPanel-component { display: flex; - height: 100%; min-height: 0; &.header { background-color: var(--theme-comp-header-color); } @@ -142,7 +142,12 @@ .antiPanel-navigator { position: relative; - &:not(.second) { background-color: var(--theme-navpanel-color); } + &:not(.second) { + background-color: var(--theme-workbench-color); + margin-right: var(--spacing-2); + border: 1px solid var(--theme-divider-color); + border-radius: var(--small-focus-BorderRadius); + } &:not(.right) { min-width: 12.5rem; max-width: 22.5rem; diff --git a/packages/theme/styles/components.scss b/packages/theme/styles/components.scss index 924821fcdad..f7790fd43e9 100644 --- a/packages/theme/styles/components.scss +++ b/packages/theme/styles/components.scss @@ -18,11 +18,11 @@ display: flex; flex-direction: column; flex-grow: 1; - height: 100%; min-height: 0; min-width: 0; border: 1px solid var(--theme-divider-color); // var(--global-surface-02-BorderColor); border-radius: var(--small-focus-BorderRadius); + padding: var(--spacing-2); &:not(.modal) { background-color: var(--theme-panel-color); // var(--global-surface-02-BackgroundColor); @@ -30,6 +30,7 @@ &.modal { overflow: hidden; background-color: var(--theme-comp-header-color); // var(--global-surface-02-BackgroundColor); + margin-left: var(--spacing-2); } &.beforeAside { border-right: none; diff --git a/packages/theme/styles/global.scss b/packages/theme/styles/global.scss index 801bf1d7f01..10693f35a31 100644 --- a/packages/theme/styles/global.scss +++ b/packages/theme/styles/global.scss @@ -77,7 +77,7 @@ scrollbar-color: var(--theme-navpanel-divider) transparent; scrollbar-width: none; --body-font-size: .875rem; - --status-bar-height: 36px; + --status-bar-height: 42px; --status-bar-normal-height: 36px; --panel-aside-width: 25rem; // 20rem; --font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto; diff --git a/packages/theme/styles/panel.scss b/packages/theme/styles/panel.scss index 0702583cd8d..5b95bf77996 100644 --- a/packages/theme/styles/panel.scss +++ b/packages/theme/styles/panel.scss @@ -20,7 +20,6 @@ height: 100%; min-width: 0; min-height: 0; - background-color: var(--theme-navpanel-color); // var(--global-surface-01-BackgroundColor); border-radius: 0 var(--small-focus-BorderRadius) var(--small-focus-BorderRadius) 0; // .antiPanel-navigator { diff --git a/packages/ui/src/components/internal/Root.svelte b/packages/ui/src/components/internal/Root.svelte index ccdfc624868..4418d112ed2 100644 --- a/packages/ui/src/components/internal/Root.svelte +++ b/packages/ui/src/components/internal/Root.svelte @@ -280,6 +280,8 @@ font-size: 0.75rem; line-height: 150%; background-color: var(--theme-statusbar-color); + margin: var(--spacing-2) var(--spacing-2) 0 var(--spacing-2); + border-radius: var(--medium-focus-BorderRadius); // border-bottom: 1px solid var(--theme-navpanel-divider); .history-box { diff --git a/plugins/time-resources/src/components/PlanView.svelte b/plugins/time-resources/src/components/PlanView.svelte index 260432bd1f6..05bed7cc776 100644 --- a/plugins/time-resources/src/components/PlanView.svelte +++ b/plugins/time-resources/src/components/PlanView.svelte @@ -86,10 +86,10 @@ {#if $deviceInfo.navigator.visible} - + {/if}
@@ -105,3 +105,15 @@ on:dragDrop={drop} /> {/if} + + diff --git a/plugins/time-resources/src/components/PlanningCalendar.svelte b/plugins/time-resources/src/components/PlanningCalendar.svelte index 3a03fd7e1b1..77f222b447b 100644 --- a/plugins/time-resources/src/components/PlanningCalendar.svelte +++ b/plugins/time-resources/src/components/PlanningCalendar.svelte @@ -175,7 +175,7 @@