1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00

styling updates

This commit is contained in:
Martin McKeaveney 2020-01-30 21:00:19 +00:00
parent 7baa9d443d
commit 5325e0d0a9
4 changed files with 25 additions and 19 deletions

View file

@ -20,7 +20,7 @@
}
.action-button:disabled {
color: #163057;
color: rgba(22, 48, 87, 0.2);
cursor: default;
background: transparent;
}

View file

@ -37,6 +37,7 @@ $: {
.uk-modal-dialog {
border-radius: .3rem;
width: 60%;
height: 80vh;
}
</style>

View file

@ -6,6 +6,7 @@
import PlusButton from "../../common/PlusButton.svelte";
import Select from "../../common/Select.svelte";
import Input from "../../common/Input.svelte";
import getIcon from "../../common/icon";
import { EVENT_TYPE_MEMBER_NAME } from "../../common/eventHandlers";
@ -70,8 +71,9 @@
h5 {
color: rgba(22, 48, 87, 0.6);
font-size: 16px;
font-size: 15px;
margin-bottom: 5px;
margin-top: 20px;
}
.event-options {
@ -80,12 +82,13 @@
grid-gap: 10px;
}
.actions {
.actions, header {
display: flex;
justify-content: space-between;
align-items: center;
}
p {
a {
color: rgba(22, 48, 87, 0.6);
font-size: 12px;
margin-top: 0;
@ -93,13 +96,16 @@
</style>
<Modal bind:isOpen={open} onClosed={onClose}>
<h2>{eventData.name || 'Create a New Component Event'}</h2>
<p>Click here to learn more about component events</p>
<h2>{eventData.name ? `${eventData.name} Event` : 'Create a New Component Event'}</h2>
<a href="https://docs.budibase.com/" target="_blank" >Click here to learn more about component events</a>
<div class="event-options">
<div>
<h5>Event Type</h5>
<Select bind:value={eventType}>
<header>
<h5>Event Type</h5>
{@html getIcon('info')}
</header>
<Select :value={eventType}>
{#each eventOptions as option}
<option value={option.name}>{option.name}</option>
{/each}

View file

@ -31,7 +31,6 @@
})
);
// TODO: refactor
$: {
if (handler) {
handlerType = handler[EVENT_TYPE_MEMBER_NAME];
@ -40,6 +39,7 @@
value
}));
} else {
// Empty Handler
handlerType = "";
parameters = [];
}
@ -63,11 +63,11 @@
const handlerType = eventOptions.find(
handler => handler.name === e.target.value
);
// Set default params for handler
const defaultParams = handlerType.parameters.map(param => ({
name: param,
value: ""
}));
handlerChanged(handlerType.name, defaultParams);
};
@ -93,10 +93,6 @@
flex-direction: column;
}
.handler-option > div {
margin-bottom: 5px;
}
.new-handler {
background: #fff;
}
@ -113,6 +109,7 @@
}
span {
font-size: 12px;
margin-bottom: 5px;
}
</style>
@ -131,7 +128,7 @@
{#if parameters}
{#each parameters as param, idx}
<div class="handler-option">
<div>{param.name}</div>
<span>{param.name}</span>
<StateBindingControl
onChanged={onParameterChanged(idx)}
value={param.value} />
@ -140,10 +137,12 @@
{/if}
</div>
<div class="event-action-button">
{#if newHandler}
<PlusButton on:click={onCreate} />
{:else}
<IconButton icon="x" on:click={onRemoved} />
{#if parameters.length > 0}
{#if newHandler}
<PlusButton on:click={onCreate} />
{:else}
<IconButton icon="x" on:click={onRemoved} />
{/if}
{/if}
</div>
</div>