Browse Source
Merge pull request #1092 from Budibase/query-name-ui-update
I emphasised the query name input
pull/1104/head
Martin McKeaveney
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
13 additions and
2 deletions
-
packages/builder/src/components/integration/QueryViewer.svelte
|
|
|
@ -132,7 +132,8 @@ |
|
|
|
|
|
|
|
<header> |
|
|
|
<div class="input"> |
|
|
|
<Input placeholder="✎ Edit Query Name" bind:value={query.name} /> |
|
|
|
<div class="label">Enter query name:</div> |
|
|
|
<Input outline border bind:value={query.name} /> |
|
|
|
</div> |
|
|
|
{#if config} |
|
|
|
<div class="props"> |
|
|
|
@ -216,7 +217,9 @@ |
|
|
|
|
|
|
|
<style> |
|
|
|
.input { |
|
|
|
width: 300px; |
|
|
|
width: 500px; |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
} |
|
|
|
|
|
|
|
.select { |
|
|
|
@ -288,4 +291,12 @@ |
|
|
|
margin-top: -28px; |
|
|
|
z-index: -2; |
|
|
|
} |
|
|
|
|
|
|
|
.label { |
|
|
|
font-family: var(--font-sans); |
|
|
|
color: var(--grey-8); |
|
|
|
font-size: var(--font-size-s); |
|
|
|
margin-right: 8px; |
|
|
|
font-weight: 600; |
|
|
|
} |
|
|
|
</style> |
|
|
|
|