Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
90a67ff
chore(deps): Bump pdfjs-dist from 4.0.189 to 4.0.269
danxuliu Feb 12, 2026
37515f9
chore: Update "viewer.php" to PDF.js 4.0.269
danxuliu Feb 12, 2026
121ecd7
chore(deps): Bump pdfjs-dist from 4.0.269 to 4.0.379
danxuliu Feb 12, 2026
835060c
chore: Update "viewer.php" to PDF.js 4.0.379
danxuliu Feb 12, 2026
cdcf491
chore(deps): Bump pdfjs-dist from 4.0.379 to 4.1.392
danxuliu May 20, 2026
02463ad
chore: Update "viewer.php" to PDF.js 4.1.392
danxuliu May 20, 2026
0b531c1
chore(deps): Bump pdfjs-dist from 4.1.392 to 4.2.67
danxuliu May 20, 2026
ed88089
chore(deps): Bump pdfjs-dist from 4.2.67 to 4.3.136
danxuliu May 20, 2026
dbd03e7
chore: Update "viewer.php" to PDF.js 4.3.136
danxuliu May 20, 2026
7225822
chore(deps): Bump pdfjs-dist from 4.3.136 to 4.4.168
danxuliu May 20, 2026
61fec7e
fix: Return the promise so the caller can await on handleSave
danxuliu Jul 15, 2026
38f2889
chore(deps): Bump pdfjs-dist from 4.4.168 to 4.5.136
danxuliu May 21, 2026
3a2211d
chore: Update "viewer.php" to PDF.js 4.5.136
danxuliu May 21, 2026
c5a194b
fix: Replace removed property "locale" with "localeProperties"
danxuliu Jul 15, 2026
251e08d
fix: Clarify why "disablePreferences" is still used in 4.5.136
danxuliu Aug 3, 2026
17361a9
chore(deps): Bump pdfjs-dist from 4.5.136 to 4.6.82
danxuliu Jul 15, 2026
7fbd396
chore: Update "viewer.php" to PDF.js 4.6.82
danxuliu Jul 15, 2026
cc1f690
chore(deps): Bump pdfjs-dist from 4.6.82 to 4.7.76
danxuliu Jul 16, 2026
26025f5
chore: Update "viewer.php" to PDF.js 4.7.76
danxuliu Jul 16, 2026
f39d8b3
chore(deps): Bump pdfjs-dist from 4.7.76 to 4.8.69
danxuliu Jul 16, 2026
c9ce5f7
chore(deps): Bump pdfjs-dist from 4.8.69 to 4.9.124
danxuliu Jul 16, 2026
9f56d23
chore: Update "viewer.php" to PDF.js 4.9.124
danxuliu Jul 16, 2026
4c229da
chore(deps): Bump pdfjs-dist from 4.9.124 to 4.9.155
danxuliu Jul 16, 2026
65ba04f
chore: Update "viewer.php" to PDF.js 4.9.155
danxuliu Jul 16, 2026
7b7ef99
chore(deps): Bump pdfjs-dist from 4.9.155 to 4.10.38
danxuliu Jul 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions css/viewer.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@

/* Replace default "Download" icon in "Download / Save" button with a "Save"
* icon. */
.toolbarButton#download::before,
.secondaryToolbarButton#secondaryDownload::before {
.toolbarButton#downloadButton::before,
#secondaryToolbar #secondaryToolbarButtonContainer #secondaryDownload::before {
-webkit-mask-image: url(../img/toolbarButton-secondaryToolbarSave.svg);
mask-image: url(../img/toolbarButton-secondaryToolbarSave.svg);
}
Expand All @@ -39,8 +39,7 @@

/* Hide the normal toolbar icon, which is a mask applied on a dark background,
* when showing the loading icon. */
.toolbarButton.icon-loading-small:before,
.secondaryToolbarButton.icon-loading-small:before {
.toolbarButton.icon-loading-small:before {
background-color: unset;
}

Expand Down Expand Up @@ -73,7 +72,7 @@
/* Place the loading icon on the secondary toolbar icon by using the same
* inset-inline-start of the secondary toolbar icon (12px) and correcting the
* margin from the loading icon (8px). */
.secondaryToolbarButton.icon-loading-small:after {
.toolbarButton.labeled.icon-loading-small:after {
inset-inline-start: 20px;
}

Expand Down
Loading