aboutsummaryrefslogtreecommitdiff
path: root/gitweb/gitweb.css
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-12-01 11:28:15 -0800
committerJunio C Hamano <gitster@pobox.com>2009-12-01 11:28:15 -0800
commit8678bc09e3a553fdacfbf7f8493e400c399f8e7b (patch)
tree91306cb18175d699dc7fd375609b7882df081704 /gitweb/gitweb.css
parent9eba92f684ad9fb1b2e9b99f3f406048fece266d (diff)
parent87e573f660dd0e871f3eb673d0b856488b6d8336 (diff)
downloadgit-8678bc09e3a553fdacfbf7f8493e400c399f8e7b.tar.gz
git-8678bc09e3a553fdacfbf7f8493e400c399f8e7b.tar.xz
Merge branch 'jn/gitweb-blame'
* jn/gitweb-blame: gitweb: Add link to other blame implementation in blame views gitweb: Make linking to actions requiring JavaScript a feature gitweb.js: fix padLeftStr() and its usage gitweb.js: Harden setting blamed commit info in incremental blame gitweb.js: fix null object exception in initials calculation gitweb: Minify gitweb.js if JSMIN is defined gitweb: Create links leading to 'blame_incremental' using JavaScript gitweb: Colorize 'blame_incremental' view during processing gitweb: Incremental blame (using JavaScript) gitweb: Add optional "time to generate page" info in footer Conflicts: Makefile gitweb/gitweb.css
Diffstat (limited to 'gitweb/gitweb.css')
-rw-r--r--gitweb/gitweb.css23
1 files changed, 23 insertions, 0 deletions
diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css
index cb3f0baf0..50067f2e0 100644
--- a/gitweb/gitweb.css
+++ b/gitweb/gitweb.css
@@ -79,6 +79,13 @@ div.page_footer_text {
font-style: italic;
}
+div#generating_info {
+ margin: 4px;
+ font-size: smaller;
+ text-align: center;
+ color: #505050;
+}
+
div.page_body {
padding: 8px;
font-family: monospace;
@@ -254,6 +261,11 @@ tr.no-previous td.linenr {
font-weight: bold;
}
+/* for 'blame_incremental', during processing */
+tr.color1 { background-color: #f6fff6; }
+tr.color2 { background-color: #f6f6ff; }
+tr.color3 { background-color: #fff6f6; }
+
td {
padding: 2px 5px;
font-size: 100%;
@@ -345,6 +357,17 @@ td.mode {
font-family: monospace;
}
+/* progress of blame_interactive */
+div#progress_bar {
+ height: 2px;
+ margin-bottom: -2px;
+ background-color: #d8d9d0;
+}
+div#progress_info {
+ float: right;
+ text-align: right;
+}
+
/* format of (optional) objects size in 'tree' view */
td.size {
font-family: monospace;