aboutsummaryrefslogtreecommitdiff
path: root/gitweb/gitweb.css
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2008-09-02 21:47:05 +0200
committerJunio C Hamano <gitster@pobox.com>2008-09-02 17:10:37 -0700
commit4afbaefffa9095fe1391b4b61289a7dc954e9f7b (patch)
treedee1c5ddad91deee1d331d3bc52112ec9b320870 /gitweb/gitweb.css
parent106db883b791efb7f39f3b2f8553236ba792a89e (diff)
downloadgit-4afbaefffa9095fe1391b4b61289a7dc954e9f7b.tar.gz
git-4afbaefffa9095fe1391b4b61289a7dc954e9f7b.tar.xz
gitweb: ref markers link to named shortlogs
This patch turns ref markers for tags and heads into links to appropriate views for the ref name, depending on current context. For annotated tags, we link to the tag view, unless that's the current view, in which case we switch to shortlog. For other refs, we prefer the current view if it's history or (short)log, and default to shortlog otherwise. Appropriate changes are made in the CSS to prevent ref markers from being annoyingly blue and underlined, unless hovered. A visual indication of the target view difference is also implemented by making annotated tags show up in italic. Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com> Acked-by: Petr Baudis <pasky@suse.cz> Acked-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gitweb/gitweb.css')
-rw-r--r--gitweb/gitweb.css13
1 files changed, 13 insertions, 0 deletions
diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css
index aa0eeca24..07f5b5378 100644
--- a/gitweb/gitweb.css
+++ b/gitweb/gitweb.css
@@ -481,6 +481,19 @@ span.refs span {
border-color: #ffccff #ff00ee #ff00ee #ffccff;
}
+span.refs span a {
+ text-decoration: none;
+ color: inherit;
+}
+
+span.refs span a:hover {
+ text-decoration: underline;
+}
+
+span.refs span.indirect {
+ font-style: italic;
+}
+
span.refs span.ref {
background-color: #aaaaff;
border-color: #ccccff #0033cc #0033cc #ccccff;