1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-18 05:10:07 -07:00

Fix assets

This commit is contained in:
David Hübner 2017-05-18 23:54:26 +02:00
parent f82734d3ab
commit 0f29b9ce3e
4 changed files with 23 additions and 5 deletions

View File

@ -8,6 +8,7 @@ A Symfony project
* PHP Extensions
* FTP
* SOAP
* GD
* PDO
* Zip
* *date.timezone* setting set in *php.ini*

View File

@ -0,0 +1,17 @@
<!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL -->
<svg width="38" height="38" viewBox="0 0 38 38" xmlns="http://www.w3.org/2000/svg" stroke="#fff">
<g fill="none" fill-rule="evenodd">
<g transform="translate(1 1)" stroke-width="2">
<circle stroke-opacity=".5" cx="18" cy="18" r="18"/>
<path d="M36 18c0-9.94-8.06-18-18-18">
<animateTransform
attributeName="transform"
type="rotate"
from="0 18 18"
to="360 18 18"
dur="1s"
repeatCount="indefinite"/>
</path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 694 B

View File

@ -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;
}
}

View File

@ -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' }