Skip to content

Commit

Permalink
Merge pull request #6239 from nextcloud-libraries/backport/6227/next
Browse files Browse the repository at this point in the history
[next] fix(NcAppContent): white splitter in dark mode when using split-horizontal mode
  • Loading branch information
susnux authored Nov 19, 2024
2 parents ed5f78d + c163e33 commit be1c74e
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 be1c74e

Please sign in to comment.