turn off vignette with the newest version of lightbox
see https://github.com/igordanchenko/yet-another-react-lightbox/issues/14
This commit is contained in:
parent
dee47d5e6b
commit
7e7b24d084
File diff suppressed because it is too large
Load Diff
|
|
@ -29,7 +29,7 @@
|
||||||
"react-inject-env": "2.1.0",
|
"react-inject-env": "2.1.0",
|
||||||
"typescript": "4.6.3",
|
"typescript": "4.6.3",
|
||||||
"web-vitals": "2.1.4",
|
"web-vitals": "2.1.4",
|
||||||
"yet-another-react-lightbox": "1.13.4"
|
"yet-another-react-lightbox": "1.14.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"format": "prettier --write \"**/*.+(ts|tsx)\"",
|
"format": "prettier --write \"**/*.+(ts|tsx)\"",
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,6 @@ import { Fullscreen } from "yet-another-react-lightbox/plugins/fullscreen";
|
||||||
import { Slideshow } from "yet-another-react-lightbox/plugins/slideshow";
|
import { Slideshow } from "yet-another-react-lightbox/plugins/slideshow";
|
||||||
import { Thumbnails } from "yet-another-react-lightbox/plugins/thumbnails";
|
import { Thumbnails } from "yet-another-react-lightbox/plugins/thumbnails";
|
||||||
import "yet-another-react-lightbox/plugins/thumbnails.css";
|
import "yet-another-react-lightbox/plugins/thumbnails.css";
|
||||||
import "./yarl.thumbnails.override.css";
|
|
||||||
import { Zoom } from "yet-another-react-lightbox/plugins/zoom";
|
import { Zoom } from "yet-another-react-lightbox/plugins/zoom";
|
||||||
|
|
||||||
function ImageGallery({ images }: { images: ImageWithThumbnail[] }) {
|
function ImageGallery({ images }: { images: ImageWithThumbnail[] }) {
|
||||||
|
|
@ -41,8 +40,11 @@ function ImageGallery({ images }: { images: ImageWithThumbnail[] }) {
|
||||||
close={() => setIndex(-1)}
|
close={() => setIndex(-1)}
|
||||||
controller={{ closeOnBackdropClick: true }}
|
controller={{ closeOnBackdropClick: true }}
|
||||||
plugins={[Fullscreen, Slideshow, Thumbnails, Zoom]}
|
plugins={[Fullscreen, Slideshow, Thumbnails, Zoom]}
|
||||||
|
thumbnails={{ vignette: false }}
|
||||||
styles={{
|
styles={{
|
||||||
root: { "--yarl__color_backdrop": "rgba(0, 0, 0, 0.85)" } as any,
|
root: {
|
||||||
|
"--yarl__color_backdrop": "rgba(0, 0, 0, 0.85)",
|
||||||
|
},
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
|
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
.yarl__thumbnails_top .yarl__thumbnails_container::before, .yarl__thumbnails_bottom .yarl__thumbnails_container::before {
|
|
||||||
background: initial;
|
|
||||||
}
|
|
||||||
.yarl__thumbnails_top .yarl__thumbnails_container::after, .yarl__thumbnails_bottom .yarl__thumbnails_container::after {
|
|
||||||
background: initial;
|
|
||||||
}
|
|
||||||
.yarl__thumbnails_start .yarl__thumbnails_container::before, .yarl__thumbnails_end .yarl__thumbnails_container::before {
|
|
||||||
background: initial;
|
|
||||||
}
|
|
||||||
.yarl__thumbnails_start .yarl__thumbnails_container::after, .yarl__thumbnails_end .yarl__thumbnails_container::after {
|
|
||||||
background: initial;
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue