Skip to content

Commit

Permalink
Merge pull request #5843 from nextcloud-libraries/fix/splitpane_style
Browse files Browse the repository at this point in the history
fix(NcAppContent): splitpane splitter styles with dark theme
  • Loading branch information
mejo- authored Jul 22, 2024
2 parents 314b5e9 + 8cf88c3 commit 2c8d7a4
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions src/components/NcAppContent/NcAppContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -418,25 +418,17 @@ export default {
}
}
}
.app-content-wrapper--vertical-split {
&.splitpanes--vertical {
.splitpanes__splitter {
width: 9px;
margin-left: -5px;
background-color: transparent;
border-left: none;
background-color: var(--color-main-background);
border-left: 1px solid var(--color-border);
&:before,
&:after {
display: none;
&::before, &::after {
background-color: var(--color-border);
}
}
}
.app-content-wrapper--horizontal-split {
.splitpanes__splitter {
height: 9px;
margin-top: -5px;
}
}
}
.app-content-wrapper--show-list {
Expand Down

0 comments on commit 2c8d7a4

Please sign in to comment.