Merge pull request #16308 from calixteman/gv_remove_button_hover

[GeckoView] Don't change style for the download button when focused/hovered
This commit is contained in:
calixteman 2023-04-17 16:53:33 +02:00 committed by GitHub
commit f1b005d7b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -201,11 +201,6 @@ body {
opacity: 0.5; opacity: 0.5;
} }
.toolbarButton:hover,
.toolbarButton:focus-visible {
backdrop-filter: blur(20px) contrast(200%) invert(100%);
}
.toolbarButton::before { .toolbarButton::before {
display: inline-block; display: inline-block;
width: 100%; width: 100%;
@ -220,10 +215,6 @@ body {
opacity: var(--toolbar-icon-opacity); opacity: var(--toolbar-icon-opacity);
} }
.toolbarButton:hover::before {
backdrop-filter: invert(60%);
}
#download::before { #download::before {
mask-image: var(--toolbarButton-download-icon); mask-image: var(--toolbarButton-download-icon);
} }