Skip to content

Commit

Permalink
fix(NcAppContent): white splitter in dark mode when using split-horiz…
Browse files Browse the repository at this point in the history
…ontal mode

Signed-off-by: Wolfgang <[email protected]>
  • Loading branch information
wofferl authored and backportbot[bot] committed Nov 19, 2024
1 parent ed5f78d commit c163e33
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions src/components/NcAppContent/NcAppContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -419,16 +419,20 @@ export default {
}
}

&.splitpanes--vertical {
.splitpanes__splitter {
background-color: var(--color-main-background);
border-left: 1px solid var(--color-border);

&::before, &::after {
background-color: var(--color-border);
}
.splitpanes__splitter {
background-color: var(--color-main-background);
&::before, &::after {
background-color: var(--color-border);
}
}

&.splitpanes--vertical .splitpanes__splitter {
border-left: 1px solid var(--color-border);
}

&.splitpanes--horizontal .splitpanes__splitter {
border-top: 1px solid var(--color-border);
}
}

.app-content-wrapper--show-list {
Expand Down

0 comments on commit c163e33

Please sign in to comment.