From 74ad98de680f8b56e42886cd1e33874bd05772fa Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Fri, 18 Nov 2022 13:59:38 +0100 Subject: [PATCH] fix: icon offset and color --- cypress/e2e/list/list.spec.ts | 4 +- src/components/home/navigation.vue | 41 ++++++++++++------- .../list/list-settings-dropdown.vue | 11 ++++- src/components/misc/dropdown.vue | 4 -- .../namespace/namespace-settings-dropdown.vue | 15 +++++++ src/views/list/ListKanban.vue | 1 - 6 files changed, 53 insertions(+), 23 deletions(-) diff --git a/cypress/e2e/list/list.spec.ts b/cypress/e2e/list/list.spec.ts index f49c20394a..fc7f1b201d 100644 --- a/cypress/e2e/list/list.spec.ts +++ b/cypress/e2e/list/list.spec.ts @@ -52,7 +52,7 @@ describe('Lists', () => { cy.get('.list-title h1') .should('contain', 'First List') - cy.get('.namespace-container .menu.namespaces-lists .menu-list li:first-child .dropdown .dropdown-trigger') + cy.get('.namespace-container .menu.namespaces-lists .menu-list li:first-child .dropdown .menu-list-dropdown-trigger') .click() cy.get('.namespace-container .menu.namespaces-lists .menu-list li:first-child .dropdown .dropdown-content') .contains('Edit') @@ -80,7 +80,7 @@ describe('Lists', () => { it('Should remove a list', () => { cy.visit(`/lists/${lists[0].id}`) - cy.get('.namespace-container .menu.namespaces-lists .menu-list li:first-child .dropdown .dropdown-trigger') + cy.get('.namespace-container .menu.namespaces-lists .menu-list li:first-child .dropdown .menu-list-dropdown-trigger') .click() cy.get('.namespace-container .menu.namespaces-lists .menu-list li:first-child .dropdown .dropdown-content') .contains('Delete') diff --git a/src/components/home/navigation.vue b/src/components/home/navigation.vue index f20488b80f..de96ea4aa3 100644 --- a/src/components/home/navigation.vue +++ b/src/components/home/navigation.vue @@ -7,7 +7,7 @@