diff options
author | Johan Herland | 2010-06-18 17:56:11 +0200 |
---|---|---|
committer | Lars Hjemli | 2010-06-19 12:20:09 +0200 |
commit | 47187b33be1c3de43fbed6f350ab05bc978aacd0 (patch) | |
tree | 896a454446d2b6f5e19f96a212a2069898b05606 /cgit.css | |
parent | c8bc3fc04c9af0fd881fb43b8e540fd93920b851 (diff) | |
download | cgit-47187b33be1c3de43fbed6f350ab05bc978aacd0.tar.gz cgit-47187b33be1c3de43fbed6f350ab05bc978aacd0.tar.bz2 cgit-47187b33be1c3de43fbed6f350ab05bc978aacd0.zip |
Fix style of commit-filter links in commit-subject.
When using the commit-filter functionality to add e.g. bug tracker links to
commit messages, the style of those links is mangled by a CSS directive that
is meant to only apply to decorations that are listed on the commit-subject
line.
Fix this directive to only apply to the decorations.
Signed-off-by: Johan Herland <johan@herland.net>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.css')
-rw-r--r-- | cgit.css | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -525,7 +525,10 @@ a.deco { | |||
525 | border: solid 1px #770000; | 525 | border: solid 1px #770000; |
526 | } | 526 | } |
527 | 527 | ||
528 | div.commit-subject a { | 528 | div.commit-subject a.branch-deco, |
529 | div.commit-subject a.tag-deco, | ||
530 | div.commit-subject a.remote-deco, | ||
531 | div.commit-subject a.deco { | ||
529 | margin-left: 1em; | 532 | margin-left: 1em; |
530 | font-size: 75%; | 533 | font-size: 75%; |
531 | } | 534 | } |