diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-01-28 18:18:18 +0000 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-01-28 18:18:18 +0000 |
| commit | 377efef8c6a4134a2f1f796f1f04d586256986e3 (patch) | |
| tree | d8d73a090abf95c6b339c024db3b5686f7c5e9ed /style.css | |
| parent | 4dccd9a8f82102264be856cdeb57eb80b35e1043 (diff) | |
| download | sql-plus-plus-377efef8c6a4134a2f1f796f1f04d586256986e3.tar.xz sql-plus-plus-377efef8c6a4134a2f1f796f1f04d586256986e3.zip | |
Handle query execution errors and show exec status
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 44 |
1 files changed, 43 insertions, 1 deletions
@@ -44,9 +44,12 @@ body { } .flex-wrapper .row.footer { - flex: 0 1 20px; + flex: 0 1 auto; background-color: #474A5E; color: white; + display: flex; + flex-direction: row; + font-family: monospace; } .flex-wrapper .row .split-row { @@ -77,4 +80,43 @@ body { color: #ffffff; background-color: #282a36; font-family: monospace; +} + +#result-error { + padding: 5px; +} + +#execution-status { + padding: 2px; + flex-basis: 60px; + text-align: center; + font-weight: bold; +} + +#execution-time { + background-color: green; + flex-basis: auto; +} + +#row-count { + background-color: blue; + flex-basis: auto; +} + +.exec-idle { + background-color: gray; +} + +.exec-running { + background-color: yellow; + color: black; +} + +.exec-ok { + background-color: green; +} + +.exec-error { + background-color: red; + color: black; }
\ No newline at end of file |