Merge pull request #18930 from Snuffleupagus/rm-duplicate-print-download-mask-image

Remove `mask-image` duplication for the print/download buttons
This commit is contained in:
Jonas Jenwald 2024-10-21 08:31:16 +02:00 committed by GitHub
commit d37e4b08e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -572,7 +572,7 @@ body {
mask-image: var(--toolbarButton-editorStamp-icon); mask-image: var(--toolbarButton-editorStamp-icon);
} }
:is(#printButton, #secondaryPrint)::before { #printButton::before {
mask-image: var(--toolbarButton-print-icon); mask-image: var(--toolbarButton-print-icon);
} }
@ -582,7 +582,7 @@ body {
} }
/*#endif*/ /*#endif*/
:is(#downloadButton, #secondaryDownload)::before { #downloadButton::before {
mask-image: var(--toolbarButton-download-icon); mask-image: var(--toolbarButton-download-icon);
} }