summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Narebski <jnareb@gmail.com>2009-07-24 22:44:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-07-25 08:39:15 (GMT)
commit0a49a7997b7380c1552786adb544d50d005368f8 (patch)
tree09fd4163feff675e1acf14311ad2672fea7eb902
parent397f7c6371d309aa399bf32b773397f3c068d0c9 (diff)
downloadgit-0a49a7997b7380c1552786adb544d50d005368f8.zip
git-0a49a7997b7380c1552786adb544d50d005368f8.tar.gz
git-0a49a7997b7380c1552786adb544d50d005368f8.tar.bz2
gitweb: Make .error style generic
Style for td.error was introduced in 1f1ab5f (gitweb: style done with stylesheet, 2006-06-20) to replace inline style for errors in old multi-column "git annotate" based 'blame' view. This view was then since removed (replaced by "git-blame" based 'blame' view, with fewer colums), making this style unused. Make this style more generic by replacing td.error with .error to make it apply to any element. It will be used in 'blame_incremental' view to show error messages. Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--gitweb/gitweb.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css
index d05bc37..70b7c2f 100644
--- a/gitweb/gitweb.css
+++ b/gitweb/gitweb.css
@@ -262,7 +262,7 @@ td.sha1 {
font-family: monospace;
}
-td.error {
+.error {
color: red;
background-color: yellow;
}