@canopy-iiif/app 1.9.21 → 1.10.1
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/lib/components/image-story-runtime-entry.js +189 -9
- package/package.json +1 -1
- package/ui/dist/index.mjs +106 -12
- package/ui/dist/index.mjs.map +2 -2
- package/ui/dist/server.mjs +563 -396
- package/ui/dist/server.mjs.map +4 -4
- package/ui/styles/components/_gallery.scss +0 -3
- package/ui/styles/components/_sub-navigation.scss +2 -1
- package/ui/styles/index.css +2 -4
|
@@ -255,12 +255,9 @@
|
|
|
255
255
|
|
|
256
256
|
&__modal-close {
|
|
257
257
|
padding: 0.35rem 1.25rem;
|
|
258
|
-
font-weight: 500;
|
|
259
258
|
display: inline-flex;
|
|
260
259
|
align-items: center;
|
|
261
260
|
justify-content: center;
|
|
262
|
-
width: 2rem;
|
|
263
|
-
height: 2rem;
|
|
264
261
|
text-align: center;
|
|
265
262
|
position: absolute;
|
|
266
263
|
top: 1rem;
|
|
@@ -119,7 +119,8 @@
|
|
|
119
119
|
.canopy-content-navigation--floating {
|
|
120
120
|
position: fixed;
|
|
121
121
|
top: 1.618rem;
|
|
122
|
-
|
|
122
|
+
left: var(--canopy-content-nav-fixed-left, auto);
|
|
123
|
+
right: auto;
|
|
123
124
|
width: var(--canopy-content-nav-fixed-width, auto);
|
|
124
125
|
z-index: 10;
|
|
125
126
|
max-height: calc(100vh - 1.5rem);
|
package/ui/styles/index.css
CHANGED
|
@@ -2577,7 +2577,8 @@ html.dark .clover-iiif-image-openseadragon .clover-iiif-image-openseadragon-anno
|
|
|
2577
2577
|
.canopy-content-navigation--floating {
|
|
2578
2578
|
position: fixed;
|
|
2579
2579
|
top: 1.618rem;
|
|
2580
|
-
|
|
2580
|
+
left: var(--canopy-content-nav-fixed-left, auto);
|
|
2581
|
+
right: auto;
|
|
2581
2582
|
width: var(--canopy-content-nav-fixed-width, auto);
|
|
2582
2583
|
z-index: 10;
|
|
2583
2584
|
max-height: calc(100vh - 1.5rem);
|
|
@@ -3511,12 +3512,9 @@ html.dark .clover-iiif-image-openseadragon .clover-iiif-image-openseadragon-anno
|
|
|
3511
3512
|
}
|
|
3512
3513
|
.canopy-gallery__modal-close {
|
|
3513
3514
|
padding: 0.35rem 1.25rem;
|
|
3514
|
-
font-weight: 500;
|
|
3515
3515
|
display: inline-flex;
|
|
3516
3516
|
align-items: center;
|
|
3517
3517
|
justify-content: center;
|
|
3518
|
-
width: 2rem;
|
|
3519
|
-
height: 2rem;
|
|
3520
3518
|
text-align: center;
|
|
3521
3519
|
position: absolute;
|
|
3522
3520
|
top: 1rem;
|