diff options
author | Jan C. Borchardt <hey@jancborchardt.net> | 2020-08-20 18:45:38 +0200 |
---|---|---|
committer | npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> | 2020-08-20 19:00:32 +0000 |
commit | 57b33a780517d0183b111050e79ffbf1a6bd3a46 (patch) | |
tree | 7f92ba316e460b33337c1fc48b814536a5ada355 /apps/dashboard/src | |
parent | 66b77790fa129d2d9945c1d8e86ecbe38a7beb8f (diff) | |
download | nextcloud-server-57b33a780517d0183b111050e79ffbf1a6bd3a46.tar.gz nextcloud-server-57b33a780517d0183b111050e79ffbf1a6bd3a46.zip |
Dashboard: Fix status bubbles open but unfocused background
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/dashboard/src')
-rw-r--r-- | apps/dashboard/src/App.vue | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue index 70cc75b675b..62035a6a603 100644 --- a/apps/dashboard/src/App.vue +++ b/apps/dashboard/src/App.vue @@ -432,12 +432,14 @@ export default { } .edit-panels, - .statuses ::v-deep .action-item > button { + .statuses ::v-deep .action-item > button, + .statuses ::v-deep .action-item.action-item--open .action-item__menutoggle { background-color: var(--color-background-translucent); backdrop-filter: var(--background-blur); &:hover, - &:focus { + &:focus, + &:active { background-color: var(--color-background-hover); } } |