sql-parser
Thorsten Muerell 7 years ago
parent e9c668359d
commit 41cb0c8eda

@ -9,20 +9,37 @@ export class TextDocumentContentProvider implements vscode.TextDocumentContentPr
let styles = `<style> let styles = `<style>
table { table {
border: solid 1px white;
border-collapse: collapse; border-collapse: collapse;
} }
table td, table th { table td, table th {
border: solid 1px white;
padding: 3px; padding: 3px;
} }
tr:hover { tr:hover {
background-color: #aaaa66; background-color: #aaaa66;
} }
#limitBox a { #limitBox a {
color: white;
padding: 3px; padding: 3px;
} }
.vscode-dark table {
border: solid 1px white;
}
.vscode-dark table td, .vscode-dark table th {
border: solid 1px white;
}
.vscode-dark #limitBox a {
color: white;
}
.vscode-light table {
border: solid 1px black;
}
.vscode-light table td, .vscode-light table th {
border: solid 1px black;
}
.vscode-light #limitBox a {
color: black;
}
</style>` </style>`
const choosableLimits = [2,10,50] const choosableLimits = [2,10,50]

Loading…
Cancel
Save