1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-19 14:14:05 +00:00

Removed export functionality. Only dumping for now

This commit is contained in:
2023-02-21 20:26:46 +01:00
parent 5dd9e0573d
commit b15fde11db
7 changed files with 94 additions and 145 deletions

View File

@ -160,7 +160,7 @@
</label>
</div>
<div class="form-row three">
<div class="form-row actions">
<!-- <CodeExample {code} /> -->
<button class="btn" type="button" on:click={loadQuery}>
<Icon name="upload" /> Load query…
@ -168,6 +168,9 @@
<button class="btn" type="button" on:click={saveQuery}>
<Icon name="save" /> Save as…
</button>
<button class="btn" type="button" on:click={saveQuery}>
<Icon name="save" /> Export results…
</button>
<button type="submit" class="btn" title="Run query">
<Icon name="play" /> Run
</button>
@ -276,10 +279,10 @@
.form-row.two {
grid-template: 1fr / 5fr 1fr 1fr;
}
.form-row.three {
.form-row.actions {
margin-bottom: 0rem;
grid-template: 1fr / repeat(3, auto);
justify-content: end;
grid-template: 1fr / repeat(4, auto);
justify-content: start;
}
.result {