diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-05-30 08:16:06 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-05-30 08:16:06 +0200 |
| commit | 054f2a628ddec3fc1f301f4f01da7646199c9b0b (patch) | |
| tree | c96c342fba21f68bd00d309ecd283efa1d57b1a2 | |
| parent | f1bf2fb68416b9da50eedd1e6fe97627c21f704f (diff) | |
page.c: Apply lightgray background to even cells
This will help users to navigate through large tables.
| -rw-r--r-- | page.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1330,6 +1330,10 @@ int page_style(struct http_response *const r) " display: flex;\n" " justify-content: center;\n" " text-decoration: auto;\n" + "}\n" + "tr:nth-child(even)\n" + "{\n" + " background-color: lightgray;\n" "}\n"; *r = (const struct http_response) |
