Browse Source
Merge pull request #431 from Budibase/feature/settings-modal-fixes
Feature/settings modal fixes
pull/435/head
Kevin Åberg Kultalahti
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
34 additions and
12 deletions
-
packages/builder/package.json
-
packages/builder/src/components/settings/UserRow.svelte
-
packages/builder/src/components/settings/tabs/DangerZone.svelte
-
packages/builder/src/components/settings/tabs/General.svelte
-
packages/builder/src/components/settings/tabs/Users.svelte
|
|
|
@ -55,7 +55,7 @@ |
|
|
|
] |
|
|
|
}, |
|
|
|
"dependencies": { |
|
|
|
"@budibase/bbui": "^1.15.4", |
|
|
|
"@budibase/bbui": "^1.15.8", |
|
|
|
"@budibase/client": "^0.1.1", |
|
|
|
"@nx-js/compiler-util": "^2.0.0", |
|
|
|
"codemirror": "^5.51.0", |
|
|
|
@ -110,4 +110,4 @@ |
|
|
|
"svelte-jester": "^1.0.6" |
|
|
|
}, |
|
|
|
"gitHead": "115189f72a850bfb52b65ec61d932531bf327072" |
|
|
|
} |
|
|
|
} |
|
|
|
@ -39,4 +39,16 @@ |
|
|
|
grid-gap: 18px; |
|
|
|
grid-template-columns: 1fr 1fr 1fr; |
|
|
|
} |
|
|
|
.inputs :global(input) { |
|
|
|
padding: 10px 12px; |
|
|
|
border-radius: var(--rounded-small); |
|
|
|
} |
|
|
|
.inputs :global(select) { |
|
|
|
padding: 9px 12px; |
|
|
|
border-radius: var(--rounded-small); |
|
|
|
} |
|
|
|
.inputs :global(button) { |
|
|
|
border-radius: var(--rounded-small); |
|
|
|
height: initial; |
|
|
|
} |
|
|
|
</style> |
|
|
|
|
|
|
|
@ -30,7 +30,7 @@ |
|
|
|
on:input={e => (value = e.target.value)} |
|
|
|
thin |
|
|
|
disabled={loading} |
|
|
|
placeholder="Enter your name" |
|
|
|
placeholder="" |
|
|
|
label="Type DELETE into the textbox, then click the following button to |
|
|
|
delete your web app:" /> |
|
|
|
|
|
|
|
@ -46,7 +46,7 @@ |
|
|
|
<style> |
|
|
|
.background { |
|
|
|
display: grid; |
|
|
|
grid-gap: var(--space); |
|
|
|
grid-gap: 16px; |
|
|
|
border-radius: 5px; |
|
|
|
background-color: var(--light-grey); |
|
|
|
padding: 12px 12px 18px 12px; |
|
|
|
|
|
|
|
@ -40,11 +40,11 @@ |
|
|
|
<style> |
|
|
|
.container { |
|
|
|
display: grid; |
|
|
|
grid-gap: var(--space); |
|
|
|
grid-gap: 16px; |
|
|
|
} |
|
|
|
.background { |
|
|
|
border-radius: 5px; |
|
|
|
background-color: var(--light-grey); |
|
|
|
background-color: var(--grey-1); |
|
|
|
padding: 12px 12px 18px 12px; |
|
|
|
} |
|
|
|
</style> |
|
|
|
|
|
|
|
@ -87,7 +87,8 @@ |
|
|
|
{/each} |
|
|
|
</ul> |
|
|
|
{:catch error} |
|
|
|
err0r |
|
|
|
Something went wrong when trying to fetch users. Please refresh the page |
|
|
|
and try again. |
|
|
|
{/await} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
@ -102,21 +103,22 @@ |
|
|
|
display: grid; |
|
|
|
grid-gap: 12px; |
|
|
|
border-radius: 5px; |
|
|
|
background-color: var(--grey-2); |
|
|
|
background-color: var(--grey-1); |
|
|
|
padding: 12px 12px 18px 12px; |
|
|
|
} |
|
|
|
.background.create { |
|
|
|
background-color: var(--blue-light); |
|
|
|
} |
|
|
|
.inputs :global(select) { |
|
|
|
padding: 12px 9px; |
|
|
|
height: initial; |
|
|
|
} |
|
|
|
.create-button { |
|
|
|
position: absolute; |
|
|
|
top: 12px; |
|
|
|
right: 12px; |
|
|
|
} |
|
|
|
.create-button :global(button) { |
|
|
|
font-size: var(--font-size-sm); |
|
|
|
min-width: 100px; |
|
|
|
border-radius: var(--rounded-small); |
|
|
|
} |
|
|
|
.title { |
|
|
|
font-size: 14px; |
|
|
|
font-weight: 500; |
|
|
|
@ -126,6 +128,14 @@ |
|
|
|
grid-gap: 18px; |
|
|
|
grid-template-columns: 1fr 1fr 1fr; |
|
|
|
} |
|
|
|
.inputs :global(input) { |
|
|
|
padding: 10px 12px; |
|
|
|
border-radius: var(--rounded-small); |
|
|
|
} |
|
|
|
.inputs :global(select) { |
|
|
|
padding: 9px 12px; |
|
|
|
border-radius: var(--rounded-small); |
|
|
|
} |
|
|
|
ul { |
|
|
|
list-style: none; |
|
|
|
padding: 0; |
|
|
|
|