diff --git a/README.md b/README.md index df6eabf..cedba1f 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ A Symfony project * PHP Extensions * FTP * SOAP + * GD * PDO * Zip * *date.timezone* setting set in *php.ini* diff --git a/app/Resources/assets/images/spinner.svg b/app/Resources/assets/images/spinner.svg new file mode 100644 index 0000000..004a356 --- /dev/null +++ b/app/Resources/assets/images/spinner.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/Resources/assets/style/main.scss b/app/Resources/assets/style/main.scss index f52357e..b26b9b5 100644 --- a/app/Resources/assets/style/main.scss +++ b/app/Resources/assets/style/main.scss @@ -81,7 +81,7 @@ } .ui.image.load { - background: url("/resources/images/oval.svg") no-repeat center; + background: url("/resources/images/spinner.svg") no-repeat center; background-color: lightgrey; } } diff --git a/app/config/config/liip_imagine.yml b/app/config/config/liip_imagine.yml index 6dbb88a..50beb82 100644 --- a/app/config/config/liip_imagine.yml +++ b/app/config/config/liip_imagine.yml @@ -10,7 +10,7 @@ liip_imagine: cache: ~ default_image: "/resources/images/noimage_min.png" filters: - thumbnail: { size: [200, 200], mode: inset } + thumbnail: { size: [200, 200], mode: inset, allow_upscale: true } background: { size: [250, 250], position: center, color: '#FFFFFF' } set_large: data_loader: set_image_loader @@ -18,7 +18,7 @@ liip_imagine: quality: 90 default_image: "/resources/images/noimage_large.png" filters: - thumbnail: { size: [840, 580], mode: inset } + thumbnail: { size: [840, 580], mode: inset, allow_upscale: true } background: { size: [900, 600], position: center, color: '#FFFFFF' } part_min: quality: 90 @@ -26,7 +26,7 @@ liip_imagine: cache: ~ default_image: "/resources/images/noimage_min.png" filters: - thumbnail: { size: [200, 200], mode: inset } + thumbnail: { size: [200, 200], mode: inset, allow_upscale: true } background: { size: [250, 250], position: center, color: '#FFFFFF' } part_large: data_loader: part_image_loader @@ -34,5 +34,5 @@ liip_imagine: quality: 90 default_image: "/resources/images/noimage_large.png" filters: - thumbnail: { size: [840, 580], mode: inset } + thumbnail: { size: [840, 580], mode: inset, allow_upscale: true } background: { size: [900, 600], position: center, color: '#FFFFFF' }