Skip to content

Commit

Permalink
Merge pull request #38908 from nextcloud/backport/38897/stable26
Browse files Browse the repository at this point in the history
[stable26] fix(core): Do not invert app menu text color
  • Loading branch information
nickvergessen committed Jun 26, 2023
2 parents 100c2e1 + 0ca3879 commit 78f6498
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion core/src/components/AppMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ $header-icon-size: 20px;
position: relative;
display: flex;
opacity: .7;
filter: var(--background-image-invert-if-bright);
&.app-menu-entry__active {
opacity: 1;
Expand Down Expand Up @@ -188,6 +187,7 @@ $header-icon-size: 20px;
height: $header-icon-size;
padding: calc((100% - $header-icon-size) / 2);
box-sizing: content-box;
filter: var(--background-image-invert-if-bright);
}
.app-menu-entry--label {
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/theming/admin-settings.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ describe.only('Remove the default background with a bright color', function() {

it('See the header being inverted', function() {
cy.waitUntil(() => cy.window().then((win) => {
const firstEntry = win.document.querySelector('.app-menu-main li')
const firstEntry = win.document.querySelector('.app-menu-main li img')
if (!firstEntry) {
return false
}
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/theming/user-background.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ describe('User select a bright custom color and remove background', function() {

it('See the header being inverted', function() {
cy.waitUntil(() => cy.window().then((win) => {
const firstEntry = win.document.querySelector('.app-menu-main li')
const firstEntry = win.document.querySelector('.app-menu-main li img')
if (!firstEntry) {
return false
}
Expand Down
4 changes: 2 additions & 2 deletions dist/core-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/core-main.js.map

Large diffs are not rendered by default.

0 comments on commit 78f6498

Please sign in to comment.