Commit Diff


commit - 4f4afeeb5798d7a06ee8d6b8669890a667787649
commit + 83d26b5a9e22759c3b6527a68e5d2953720652f9
blob - da2a3df486a9f9af27f183c0fc1096390dbc3027
blob + c6f473ced0d7b7454f210dfaa119b63cd96d2ba4
--- gotwebd/files/htdocs/gotwebd/gotweb.css
+++ gotwebd/files/htdocs/gotwebd/gotweb.css
@@ -319,15 +319,11 @@ header.subtitle h2 {
 	width: 60px;
 	padding-right: 20px;
 }
-.blob_code {
+.blame_code, .blob_code {
 	/* fixes the width of the first tab */
 	display: inline-block;
 }
-.blame_number, .blame_hash, .blame_date, .blame_author, .blame_code {
-	display: inline-block;
-	vertical-align: middle;
-}
-.blame_wrapper:target, .blob_line:target {
+.blame_line:target, .blob_line:target {
 	background-color: Khaki;
 }
 .blame_number, .blob_number {
blob - e4444de3bcc58ee1f28dcb5888a91f8c8e863eb3
blob + 357b1db90c24be59648f929f542810f3c61c0fae
--- gotwebd/pages.tmpl
+++ gotwebd/pages.tmpl
@@ -1102,16 +1102,19 @@ nextsep(char *s, char **t)
 	if (s)
 		*s = '\0';
 !}
-<div class="blame_wrapper">
-  <div class="blame_number">{{ printf "%.*d", lprec, lcur }}</div>
-  <div class="blame_hash">
+<div class="blame_line">
+  <span class="blame_number">{{ printf "%*d ", lprec, lcur }}</span>
+  <span class="blame_hash">
     <a href="{{ render gotweb_render_url(c, &url) }}">
       {{ printf "%.8s", bline->id_str }}
     </a>
-  </div>
-  <div class="blame_date">{{ bline->datebuf }}</div>
-  <div class="blame_author">{{ printf "%.9s", committer }}</div>
-  <div class="blame_code">{{ line }}</div>
+  </span>
+  {{" "}}
+  <span class="blame_date">{{ bline->datebuf }}</span>
+  {{" "}}
+  <span class="blame_author">{{ printf "%.9s", committer }}</span>
+  {{" "}}
+  <span class="blame_code">{{ line }}</span>
 </div>
 {{ end }}