1
0
Fork 0
mirror of synced 2024-10-02 10:08:09 +13:00

Formatting and linting done

This commit is contained in:
Joe 2020-06-29 19:55:27 +01:00
parent 5f7186106e
commit 290b1cce14
3 changed files with 76 additions and 76 deletions

View file

@ -7,7 +7,7 @@
const TYPE_MAP = {
string: "text",
boolean: "checkbox",
number: "number"
number: "number",
}
let username
@ -70,7 +70,7 @@
{#each fields as field}
<div class="form-item">
<label class="form-label" for="form-stacked-text">{field}</label>
{#if schema[field].type === "string" && schema[field].constraints.inclusion}
{#if schema[field].type === 'string' && schema[field].constraints.inclusion}
<select on:blur={handleInput(field)}>
{#each schema[field].constraints.inclusion as opt}
<option>{opt}</option>
@ -156,12 +156,12 @@
text-align: center;
}
button:hover {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
button:hover {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
input[type=checkbox] {
input[type="checkbox"] {
width: 32px;
height: 32px;
padding: 0;
@ -170,13 +170,12 @@ input[type=checkbox] {
position: relative;
top: -1px;
*overflow: hidden;
}
}
select::-ms-expand {
select::-ms-expand {
display: none;
}
select {
}
select {
display: inline-block;
cursor: pointer;
align-items: baseline;
@ -191,10 +190,9 @@ select {
-ms-appearance: none;
appearance: none;
background-repeat: no-repeat;
background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
linear-gradient(135deg, currentColor 50%, transparent 50%);
background-position: right 17px top 1.5em, right 10px top 1.5em;
background-size: 7px 7px, 7px 7px;
}
}
</style>

View file

@ -6,7 +6,7 @@
const TYPE_MAP = {
string: "text",
boolean: "checkbox",
number: "number"
number: "number",
}
let username
@ -52,6 +52,7 @@
newModel[field] = value
}
</script>
<form class="form" on:submit|preventDefault>
<h1>{modelDef.name} Form</h1>
<hr />
@ -59,7 +60,7 @@
{#each fields as field}
<div class="form-item">
<label class="form-label" for="form-stacked-text">{field}</label>
{#if schema[field].type === "string" && schema[field].constraints.inclusion}
{#if schema[field].type === 'string' && schema[field].constraints.inclusion}
<select on:blur={handleInput(field)}>
{#each schema[field].constraints.inclusion as opt}
<option>{opt}</option>
@ -79,6 +80,7 @@
</div>
</div>
</form>
<style>
.form {
display: flex;
@ -135,19 +137,20 @@
text-align: center;
}
button:hover {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
button:hover {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
input[type=checkbox] {
input[type="checkbox"] {
transform: scale(2);
cursor: pointer;
}
}
select::-ms-expand {
select::-ms-expand {
display: none;
}
select {
}
select {
cursor: pointer;
display: inline-block;
align-items: baseline;
@ -162,10 +165,9 @@ select {
-ms-appearance: none;
appearance: none;
background-repeat: no-repeat;
background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
linear-gradient(135deg, currentColor 50%, transparent 50%);
background-position: right 17px top 1.5em, right 10px top 1.5em;
background-size: 7px 7px, 7px 7px;
}
}
</style>