UX: allow horizontal overflow scroll, fix button (#95)
This commit is contained in:
parent
5e24556b24
commit
3151fde1e7
|
@ -1,24 +1,28 @@
|
||||||
<div class="result-info">
|
<article>
|
||||||
|
<header class="result-header">
|
||||||
|
<div class="result-info">
|
||||||
{{d-button action=(action "downloadResultJson") icon="download" label="explorer.download_json" group=group}}
|
{{d-button action=(action "downloadResultJson") icon="download" label="explorer.download_json" group=group}}
|
||||||
{{d-button action=(action "downloadResultCsv") icon="download" label="explorer.download_csv" group=group}}
|
{{d-button action=(action "downloadResultCsv") icon="download" label="explorer.download_csv" group=group}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="result-about">
|
<div class="result-about">
|
||||||
{{resultCount}}
|
{{resultCount}}
|
||||||
{{duration}}
|
{{duration}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
{{~#if hasExplain}}
|
{{~#if hasExplain}}
|
||||||
<pre class="result-explain"><code>
|
<pre class="result-explain"><code>
|
||||||
{{~content.explain}}
|
{{~content.explain}}
|
||||||
</code></pre>
|
</code></pre>
|
||||||
{{~/if}}
|
{{~/if}}
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
</header>
|
||||||
|
|
||||||
<table>
|
<section>
|
||||||
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr class="headers">
|
<tr class="headers">
|
||||||
{{#each columnDispNames as |col|}}
|
{{#each columnDispNames as |col|}}
|
||||||
|
@ -34,4 +38,6 @@
|
||||||
columnTemplates=columnTemplates}}
|
columnTemplates=columnTemplates}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</section>
|
||||||
|
</article>
|
|
@ -280,7 +280,19 @@ table.group-reports {
|
||||||
margin: 10px 0;
|
margin: 10px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.query-create {
|
||||||
|
display: flex;
|
||||||
|
input {
|
||||||
|
margin-right: 0.5em;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.query-results {
|
.query-results {
|
||||||
|
section {
|
||||||
|
width: 100%;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
|
|
Loading…
Reference in New Issue