From 5e833b8a193df8c46b8203aea98ae178ee802143 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Tue, 21 Mar 2023 14:53:13 +0100 Subject: [PATCH] fix: hover styles of app menu items --- .../src/components/Topbar/ApplicationsMenu.vue | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages/web-runtime/src/components/Topbar/ApplicationsMenu.vue b/packages/web-runtime/src/components/Topbar/ApplicationsMenu.vue index f26bbe357b5..c0182f72800 100644 --- a/packages/web-runtime/src/components/Topbar/ApplicationsMenu.vue +++ b/packages/web-runtime/src/components/Topbar/ApplicationsMenu.vue @@ -96,6 +96,19 @@ export default defineComponent({ justify-content: flex-start; width: 100%; + &.oc-button-primary-raw-inverse { + &:focus, + &:hover { + color: var(--oc-color-swatch-primary-contrast) !important; + } + } + &.oc-button-passive-raw { + &:focus, + &:hover { + color: var(--oc-color-swatch-passive-default) !important; + } + } + &:focus, &:hover { background-color: var(--oc-color-background-hover);