mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-24 16:40:21 +00:00
LibWebView: Alternate the color of inspector table rows
This makes large tables a bit easier to read.
This commit is contained in:
parent
f3bdee272b
commit
f83d082980
Notes:
github-actions[bot]
2024-09-08 07:49:00 +00:00
Author: https://github.com/trflynn89 Commit: https://github.com/LadybirdBrowser/ladybird/commit/f83d0829804 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1319
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue