1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Remove mask-image duplication for the print/download buttons

With the recent re-factoring of the viewer CSS rules we now have some duplication of the `mask-image` definitions for the print/download buttons in the secondaryToolbar; note 17419de157/web/viewer.css (L1204-L1210)
This commit is contained in:
Jonas Jenwald 2024-10-20 21:15:09 +02:00
parent 17419de157
commit 65b38f24ff

View file

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