Merge pull request #3719 from meichthys/patch-sqlconsole

Fixes #3718
This commit is contained in:
zadam 2023-03-15 16:41:07 +01:00 committed by GitHub
commit bfbb531863
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,8 +6,9 @@ const TPL = `
<style>
.sql-table-schemas-widget {
padding: 12px;
padding-right: 10%;
}
.sql-table-schemas button {
padding: 0.25rem 0.4rem;
font-size: 0.875rem;
@ -17,21 +18,21 @@ const TPL = `
background: var(--button-background-color);
color: var(--button-text-color);
}
.sql-console-result-container {
width: 100%;
font-size: smaller;
width: 100%;
font-size: smaller;
margin-top: 10px;
flex-grow: 1;
overflow: auto;
min-height: 0;
}
.table-schema td {
padding: 5px;
}
</style>
Tables:
<span class="sql-table-schemas"></span>
</div>`;