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