@open-file-viewer/core 0.1.22 → 0.1.23
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/README.md +14 -2
- package/dist/index.cjs +227 -38
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +31 -0
- package/dist/index.d.ts +31 -0
- package/dist/index.js +227 -38
- package/dist/index.js.map +1 -1
- package/dist/style.css +43 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -459,6 +459,49 @@
|
|
|
459
459
|
overflow-wrap: anywhere;
|
|
460
460
|
}
|
|
461
461
|
|
|
462
|
+
.ofv-pdf-page-navigator {
|
|
463
|
+
display: flex;
|
|
464
|
+
z-index: 3;
|
|
465
|
+
flex: 0 0 auto;
|
|
466
|
+
align-items: center;
|
|
467
|
+
justify-content: center;
|
|
468
|
+
gap: 6px;
|
|
469
|
+
min-height: 38px;
|
|
470
|
+
padding: 6px 10px;
|
|
471
|
+
border-bottom: 1px solid var(--ofv-border);
|
|
472
|
+
background: var(--ofv-surface);
|
|
473
|
+
color: var(--ofv-text);
|
|
474
|
+
font-size: 13px;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.ofv-pdf-page-navigator button,
|
|
478
|
+
.ofv-pdf-page-navigator input {
|
|
479
|
+
box-sizing: border-box;
|
|
480
|
+
height: 28px;
|
|
481
|
+
border: 1px solid var(--ofv-border);
|
|
482
|
+
border-radius: 5px;
|
|
483
|
+
background: var(--ofv-surface);
|
|
484
|
+
color: var(--ofv-text);
|
|
485
|
+
font: inherit;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.ofv-pdf-page-navigator button {
|
|
489
|
+
min-width: 30px;
|
|
490
|
+
padding: 0 8px;
|
|
491
|
+
cursor: pointer;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.ofv-pdf-page-navigator button:disabled {
|
|
495
|
+
cursor: default;
|
|
496
|
+
opacity: 0.45;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.ofv-pdf-page-navigator input {
|
|
500
|
+
width: 58px;
|
|
501
|
+
padding: 0 6px;
|
|
502
|
+
text-align: center;
|
|
503
|
+
}
|
|
504
|
+
|
|
462
505
|
.ofv-pdf {
|
|
463
506
|
flex: 1 1 auto;
|
|
464
507
|
width: 100%;
|