mirror of
https://github.com/pcvolkmer/etl-processor.git
synced 2025-07-04 23:42:54 +00:00
fix: add info severity to data quality report
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user