LibWebView: Alternate the color of inspector table rows

This makes large tables a bit easier to read.
This commit is contained in:
Timothy Flynn 2024-09-07 14:40:33 -04:00 committed by Andreas Kling
parent f3bdee272b
commit f83d082980
Notes: github-actions[bot] 2024-09-08 07:49:00 +00:00

View file

@ -24,6 +24,7 @@
--console-table-row-hover: rgb(80, 79, 79);
--console-table-border: gray;
--property-table-head: rgb(57, 57, 57);
--property-table-row: rgb(45, 45, 45);
}
}
@ -48,6 +49,7 @@
--console-table-row-hover: rgb(199, 198, 198);
--console-table-border: gray;
--property-table-head: rgb(229, 229, 229);
--property-table-row: rgb(240, 240, 240);
}
}
@ -281,6 +283,10 @@ details > :not(:first-child) {
text-overflow: ellipsis;
}
.property-table tr:nth-child(even) {
background-color: var(--property-table-row);
}
#fonts {
display: flex;
flex-direction: row;