diff options
| author | Paul-Christian Volkmer | 2023-12-05 14:22:02 +0100 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2023-12-05 14:24:40 +0100 |
| commit | ced6609d9ab75b42304df8888b1564a1a1795a5b (patch) | |
| tree | a3daeea96e190cc60c23c3b51b454da6c95b1f7f /src/main/resources/static/style.css | |
| parent | 8dee349c377ebebba7e6a3633f71cf2c3e48183d (diff) | |
fix: add info severity to data quality report
Diffstat (limited to 'src/main/resources/static/style.css')
| -rw-r--r-- | src/main/resources/static/style.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css index 203ac56..73fa08a 100644 --- a/src/main/resources/static/style.css +++ b/src/main/resources/static/style.css @@ -1,6 +1,9 @@ :root { --table-border: rgba(96, 96, 96, 1); + --bg-blue: rgb(0, 74, 157); + --bg-blue-op: rgba(0, 74, 157, .35); + --bg-green: rgb(0, 128, 0); --bg-green-op: rgba(0, 128, 0, .35); @@ -181,6 +184,15 @@ td { font-family: monospace; } +td.bg-blue, th.bg-blue { + background: var(--bg-blue); + color: white; +} + +tr:has(td.bg-blue) { + background: var(--bg-blue-op); +} + td.bg-green, th.bg-green { background: var(--bg-green); color: white; |
