diff options
author | Jakub Narebski <jnareb@gmail.com> | 2006-08-14 02:08:27 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-14 17:02:42 -0700 |
commit | 17d07443188909ef5f8b8c24043cb6d9fef51bca (patch) | |
tree | f2aa4a82b6842a9f510fa2d5de5b268e83c2fc32 /gitweb/gitweb.css | |
parent | a446d6bb53cb59f559603c411747d7ac5373e326 (diff) | |
download | git-17d07443188909ef5f8b8c24043cb6d9fef51bca.tar.gz git-17d07443188909ef5f8b8c24043cb6d9fef51bca.tar.xz |
gitweb: Refactor printing shortened title in git_shortlog_body and git_tags_body
Separate printing of perhaps shortened title (subject) in
git_shortlog_body and git_tags_body into format_subject_html.
While at it, remove presentation element <b>...</b> used to format
title (subject) and move formatting to CSS.
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb/gitweb.css')
-rw-r--r-- | gitweb/gitweb.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css index 47c1ade87..f58a418fa 100644 --- a/gitweb/gitweb.css +++ b/gitweb/gitweb.css @@ -117,9 +117,14 @@ div.list_head { a.list { text-decoration: none; + font-weight: bold; color: #000000; } +table.tags a.list { + font-weight: normal; +} + a.list:hover { text-decoration: underline; color: #880000; |