diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-18 00:31:31 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-18 00:31:31 +0800 |
commit | 9f19bcb50de2ced13a22bbe44078d8a47bf9ce41 (patch) | |
tree | 48b32ee948dc038d7428c03f4af0a79d230ddd00 | |
parent | hooks, etc.: Restructure concurrency and data flow (diff) | |
download | forge-9f19bcb50de2ced13a22bbe44078d8a47bf9ce41.tar.gz forge-9f19bcb50de2ced13a22bbe44078d8a47bf9ce41.tar.zst forge-9f19bcb50de2ced13a22bbe44078d8a47bf9ce41.zip |
style.css: Fix .chunk-addition
Diffstat (limited to '')
-rw-r--r-- | static/style.css | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/static/style.css b/static/style.css index 3dbe22e..f4ec6ad 100644 --- a/static/style.css +++ b/static/style.css @@ -145,11 +145,13 @@ td > pre { .chunk-unchanged { color: grey; } -.chunk-addition, @media (prefers-color-scheme: dark) .chunk-addition { +.chunk-addition { background-color: green; } -.chunk-addition@media (prefers-color-scheme: dark) { - background-color: lime; +@media (prefers-color-scheme: dark) { + .chunk-addition { + background-color: lime; + } } .chunk-deletion { background-color: red; |