diff options
author | Eric Wong <e@80x24.org> | 2019-01-01 11:44:52 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-02-13 11:55:26 -0500 |
commit | 1e9f26ffb7c0d7ef0d672a66e888f8703ce06028 (patch) | |
tree | 7616424051a5d1c811399a28c640f3c1f19d6598 /cgit.c | |
parent | Use <pre> for commit-msg (diff) | |
download | cgit-pink-1e9f26ffb7c0d7ef0d672a66e888f8703ce06028.tar.gz cgit-pink-1e9f26ffb7c0d7ef0d672a66e888f8703ce06028.zip |
Improve decoration display for browsers without CSS
Text-based browsers without CSS support show all the decorations bunched together without spacing. Rely on a whitespace instead of CSS support.
Diffstat (limited to '')
-rw-r--r-- | cgit.css | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cgit.css b/cgit.css index 67e1ed3..b88db61 100644 --- a/cgit.css +++ b/cgit.css @@ -666,7 +666,6 @@ div#cgit div.footer a:hover { div#cgit a.branch-deco { color: #000; - margin: 0px 0.5em; padding: 0px 0.25em; background-color: #88ff88; border: solid 1px #007700; @@ -674,7 +673,6 @@ div#cgit a.branch-deco { div#cgit a.tag-deco { color: #000; - margin: 0px 0.5em; padding: 0px 0.25em; background-color: #ffff88; border: solid 1px #777700; @@ -682,7 +680,6 @@ div#cgit a.tag-deco { div#cgit a.tag-annotated-deco { color: #000; - margin: 0px 0.5em; padding: 0px 0.25em; background-color: #ffcc88; border: solid 1px #777700; @@ -690,7 +687,6 @@ div#cgit a.tag-annotated-deco { div#cgit a.remote-deco { color: #000; - margin: 0px 0.5em; padding: 0px 0.25em; background-color: #ccccff; border: solid 1px #000077; @@ -698,7 +694,6 @@ div#cgit a.remote-deco { div#cgit a.deco { color: #000; - margin: 0px 0.5em; padding: 0px 0.25em; background-color: #ff8888; border: solid 1px #770000; @@ -709,7 +704,6 @@ div#cgit div.commit-subject a.tag-deco, div#cgit div.commit-subject a.tag-annotated-deco, div#cgit div.commit-subject a.remote-deco, div#cgit div.commit-subject a.deco { - margin-left: 1em; font-size: 75%; } |