1
0
Fork 0
mirror of synced 2024-06-25 17:40:38 +12:00

Add placeholder to background image, fix default styles and add size styles

This commit is contained in:
Andrew Kingston 2021-06-25 15:36:51 +01:00
parent 28e337858a
commit 0361f2248b
2 changed files with 23 additions and 3 deletions

View file

@ -742,6 +742,7 @@
"name": "Background Image",
"description": "A background image",
"icon": "Images",
"styles": ["size"],
"illegalChildren": ["section"],
"settings": [
{

View file

@ -1,5 +1,6 @@
<script>
import { getContext } from "svelte"
import Placeholder from "./Placeholder.svelte"
const { styleable } = getContext("sdk")
const component = getContext("component")
@ -18,13 +19,24 @@
}
</script>
<div class="outer" use:styleable={$component.styles}>
<div class="inner" {style} />
</div>
{#if url}
<div class="outer" use:styleable={$component.styles}>
<div class="inner" {style} />
</div>
{:else}
<div
class="placeholder"
use:styleable={{ ...$component.styles, empty: true }}
>
<Placeholder />
</div>
{/if}
<style>
.outer {
position: relative;
width: 100%;
height: 400px;
}
.inner {
@ -35,4 +47,11 @@
background-size: cover;
background-position: center center;
}
.placeholder {
display: grid;
place-items: center;
height: 75px;
width: 150px;
}
</style>