diff options
author | Eric Wong <e@80x24.org> | 2019-01-01 11:44:50 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-02-13 11:53:45 -0500 |
commit | 122f7a9be6f41e90e198da8283d5630f217b251c (patch) | |
tree | 7e281f96c5d558ff3fa642f82eed54441205d79f /cgit.css | |
parent | Use git raw note format (diff) | |
download | cgit-pink-122f7a9be6f41e90e198da8283d5630f217b251c.tar.gz cgit-pink-122f7a9be6f41e90e198da8283d5630f217b251c.zip |
Improve pageheader display on text-based browsers
Text-based browsers (and some GUI browsers such as dillo) display the pageheader as: "summaryrefslogtreecommitdiff" This is difficult-to-read. Improve accessibility for users who cannot run memory-hungry browsers by using whitespace instead of relying on CSS.
Diffstat (limited to '')
-rw-r--r-- | cgit.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cgit.css b/cgit.css index d4aadbf..ba210b4 100644 --- a/cgit.css +++ b/cgit.css @@ -75,7 +75,7 @@ div#cgit table.tabs td { } div#cgit table.tabs td a { - padding: 2px 0.75em; + padding: 2px 0.25em; color: #777; font-size: 110%; } |