Skip to content

Commit

Permalink
Merge pull request #1511 from nextcloud/backport/1510/stable28
Browse files Browse the repository at this point in the history
[stable28] fix wrongly inverted icon
  • Loading branch information
szaimen committed Jan 15, 2024
2 parents 0eca901 + 72720a1 commit b727144
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/activity-app.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/activity-app.mjs.map

Large diffs are not rendered by default.

11 changes: 10 additions & 1 deletion src/views/ActivityAppNavigation.vue
Expand Up @@ -126,8 +126,17 @@ async function copyRSSLink() {
max-width: 100%;
}
.app-navigation-entry {
&.active .navigation-icon {
filter: var(--primary-invert-if-dark);
}
&:not(.active) .navigation-icon {
filter: var(--background-invert-if-dark);
}
}
.navigation-icon {
filter: var(--background-invert-if-dark);
height: 16px;
width: 16px;
}
Expand Down

0 comments on commit b727144

Please sign in to comment.