Просмотр исходного кода

fix(core): Do not invert app menu text color

* Also fixes other cypress test
* Build assets

Signed-off-by: Philipp Hempel <Philipp.Hempel1@web.de>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
tags/v28.0.0beta1
Ferdinand Thiessen 1 год назад
Родитель
Сommit
7f861980a3
Аккаунт пользователя с таким Email не найден

+ 1
- 1
core/src/components/AppMenu.vue Просмотреть файл

@@ -146,7 +146,6 @@ $header-icon-size: 20px;
height: 50px;
position: relative;
display: flex;
filter: var(--background-image-invert-if-bright);

&.app-menu-entry__active {
opacity: 1;
@@ -187,6 +186,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 {

+ 1
- 1
cypress/e2e/theming/admin-settings.cy.ts Просмотреть файл

@@ -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
}

+ 1
- 1
cypress/e2e/theming/user-background.cy.ts Просмотреть файл

@@ -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
}

Загрузка…
Отмена
Сохранить