nodebb-plugin-pdf-secure2 1.2.34 → 1.2.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/image.png +0 -0
- package/package.json +1 -1
- package/static/viewer.html +20 -19
package/image.png
ADDED
|
Binary file
|
package/package.json
CHANGED
package/static/viewer.html
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
--accent: #0078d4;
|
|
24
24
|
--accent-hover: #1a86d9;
|
|
25
25
|
--border-color: #404040;
|
|
26
|
-
--toolbar-height:
|
|
26
|
+
--toolbar-height: 44px;
|
|
27
27
|
--sidebar-width: 200px;
|
|
28
28
|
--toolbar-height-mobile: 44px;
|
|
29
29
|
--bottom-bar-height: 52px;
|
|
@@ -109,21 +109,21 @@
|
|
|
109
109
|
border-bottom: 1px solid var(--border-color);
|
|
110
110
|
display: flex;
|
|
111
111
|
align-items: center;
|
|
112
|
-
padding: 0
|
|
113
|
-
gap:
|
|
112
|
+
padding: 0 8px;
|
|
113
|
+
gap: 2px;
|
|
114
114
|
z-index: 100;
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
.toolbarGroup {
|
|
118
118
|
display: flex;
|
|
119
119
|
align-items: center;
|
|
120
|
-
gap:
|
|
120
|
+
gap: 1px;
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
.toolbarBtn {
|
|
124
|
-
width:
|
|
125
|
-
height:
|
|
126
|
-
min-width:
|
|
124
|
+
width: 32px;
|
|
125
|
+
height: 32px;
|
|
126
|
+
min-width: 32px;
|
|
127
127
|
border: none;
|
|
128
128
|
background: transparent;
|
|
129
129
|
color: var(--text-primary);
|
|
@@ -145,16 +145,16 @@
|
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
.toolbarBtn svg {
|
|
148
|
-
width:
|
|
149
|
-
height:
|
|
148
|
+
width: 17px;
|
|
149
|
+
height: 17px;
|
|
150
150
|
fill: currentColor;
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
.separator {
|
|
154
154
|
width: 1px;
|
|
155
|
-
height:
|
|
155
|
+
height: 20px;
|
|
156
156
|
background: var(--border-color);
|
|
157
|
-
margin: 0
|
|
157
|
+
margin: 0 5px;
|
|
158
158
|
}
|
|
159
159
|
|
|
160
160
|
/* Enhanced Tooltips */
|
|
@@ -416,8 +416,8 @@
|
|
|
416
416
|
}
|
|
417
417
|
|
|
418
418
|
.dropdownArrow {
|
|
419
|
-
width:
|
|
420
|
-
height:
|
|
419
|
+
width: 16px;
|
|
420
|
+
height: 32px;
|
|
421
421
|
border: none;
|
|
422
422
|
background: transparent;
|
|
423
423
|
color: var(--text-primary);
|
|
@@ -543,23 +543,23 @@
|
|
|
543
543
|
display: flex;
|
|
544
544
|
align-items: center;
|
|
545
545
|
gap: 4px;
|
|
546
|
-
margin-left:
|
|
546
|
+
margin-left: 4px;
|
|
547
547
|
}
|
|
548
548
|
|
|
549
549
|
#pageInput {
|
|
550
|
-
width:
|
|
551
|
-
height:
|
|
550
|
+
width: 34px;
|
|
551
|
+
height: 26px;
|
|
552
552
|
background: var(--bg-tertiary);
|
|
553
553
|
border: 1px solid var(--border-color);
|
|
554
|
-
border-radius:
|
|
554
|
+
border-radius: 4px;
|
|
555
555
|
color: var(--text-primary);
|
|
556
556
|
text-align: center;
|
|
557
|
-
font-size:
|
|
557
|
+
font-size: 12px;
|
|
558
558
|
}
|
|
559
559
|
|
|
560
560
|
#pageCount {
|
|
561
561
|
color: var(--text-secondary);
|
|
562
|
-
font-size:
|
|
562
|
+
font-size: 12px;
|
|
563
563
|
}
|
|
564
564
|
|
|
565
565
|
/* Sidebar - Thumbnails */
|
|
@@ -1450,6 +1450,7 @@
|
|
|
1450
1450
|
|
|
1451
1451
|
body.viewer-fullscreen .pageInfo {
|
|
1452
1452
|
gap: 8px;
|
|
1453
|
+
margin-left: auto;
|
|
1453
1454
|
}
|
|
1454
1455
|
|
|
1455
1456
|
body.viewer-fullscreen #viewerContainer {
|