Skip to content

Commit

Permalink
Merge pull request #5953 from nextcloud-libraries/feat/add-navigation…
Browse files Browse the repository at this point in the history
…-border

fix(NcAppNavigation): add border-right
  • Loading branch information
marcoambrosini authored Aug 20, 2024
2 parents 55aa6c6 + 3bf8bae commit 8ecdf87
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/components/NcAppNavigation/NcAppNavigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,7 @@ export default {
background-color: var(--color-main-background-blur, var(--color-main-background));
-webkit-backdrop-filter: var(--filter-background-blur, none);
backdrop-filter: var(--filter-background-blur, none);
border-inline-end: 1px solid var(--color-border);

&--close {
margin-left: calc(-1 * min($navigation-width, var(--app-navigation-max-width)));
Expand Down Expand Up @@ -388,13 +389,6 @@ export default {
}
}

// add extra border for high contrast mode
[data-themes*='highcontrast'] {
.app-navigation {
border-right: 1px solid var(--color-border);
}
}

// When on mobile, we make the navigation slide over the NcAppContent
@media only screen and (max-width: $breakpoint-mobile) {
.app-navigation {
Expand Down

0 comments on commit 8ecdf87

Please sign in to comment.