diff options
author | Eric Wong <e@80x24.org> | 2019-01-01 11:44:50 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-17 19:06:55 +0000 |
commit | 9c295906ea9e6972c2a77da49c5ad35ee503ce20 (patch) | |
tree | 03708387be55dfa087ed94640bd15b7f4ec93027 /www/git.causal.agency/cgit/cgit.c | |
parent | Use git raw note format (diff) | |
download | src-9c295906ea9e6972c2a77da49c5ad35ee503ce20.tar.gz src-9c295906ea9e6972c2a77da49c5ad35ee503ce20.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-- | www/git.causal.agency/cgit/cgit.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/git.causal.agency/cgit/cgit.css b/www/git.causal.agency/cgit/cgit.css index d4aadbfa..ba210b41 100644 --- a/www/git.causal.agency/cgit/cgit.css +++ b/www/git.causal.agency/cgit/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%; } |