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

Merge pull request #17077 from Snuffleupagus/css-rm-unneeded-alpha

Remove unnecessary alpha-value from CSS `rgb` colors
This commit is contained in:
Tim van der Meij 2023-10-07 12:33:48 +02:00 committed by GitHub
commit 89d8c639fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 95 additions and 95 deletions

View file

@ -37,8 +37,8 @@
.fileAttachmentAnnotation:not(.hasFillAlpha)
.popupTriggerArea {
opacity: 0.2;
background: rgb(255 255 0 / 1);
box-shadow: 0 2px 10px rgb(255 255 0 / 1);
background: rgb(255 255 0);
box-shadow: 0 2px 10px rgb(255 255 0);
}
.annotationLayer .fileAttachmentAnnotation.hasFillAlpha {
outline: 2px solid yellow;

View file

@ -15,6 +15,6 @@
.xfaLink {
opacity: 0.2;
background: rgb(255 255 0 / 1);
box-shadow: 0 2px 10px rgb(255 255 0 / 1);
background: rgb(255 255 0);
box-shadow: 0 2px 10px rgb(255 255 0);
}