diff mercurial/templates/static/style-paper.css @ 30074:8f34e217338b

hgweb: avoid line wrap between revision and annotate-info (issue5398) Add white-space: nowrap to td.annotate to avoid wrapping div.annotate-info into next line if there is revision number in the same cell, as it is hard to mouse over div.annotate-info if it's wrapped into next line.
author Tooru Fujisawa <arai.unmht@gmail.com>
date Sat, 08 Oct 2016 19:32:54 +0900
parents 6e4da488f955
children 04ec317b8128
line wrap: on
line diff
--- a/mercurial/templates/static/style-paper.css	Sat Oct 08 16:10:58 2016 +0200
+++ b/mercurial/templates/static/style-paper.css	Sat Oct 08 19:32:54 2016 +0900
@@ -210,6 +210,9 @@
 .bigtable td.source { font-size: inherit; }
 tr.thisrev a { color:#999999; text-decoration: none; }
 tr.thisrev td.source { color:#009900; }
+td.annotate {
+  white-space: nowrap;
+}
 div.annotate-info {
   display: none;
   position: absolute;