diff mercurial/templates/static/style-paper.css @ 37492:8d05938dd063

hgweb: make followlines button absolutely positioned It used to have position: absolute only on annotate page, but it makes sense to have it everywhere, because the button shouldn't affect other elements at all. Especially since the button has a set height, which meant that for certain smaller fonts source lines were changing their height on hover. Note that the button doesn't set any of the usual properties that accompany absolute position (top, right, bottom or left). These properties would position the button without any account for source line padding. Instead, margins are used (the button already has all margins defined, they do the job).
author Anton Shestakov <av6@dwimlabs.net>
date Sun, 08 Apr 2018 20:53:07 +0800
parents 5afe0ca59b07
children f1413e4a54a6
line wrap: on
line diff
--- a/mercurial/templates/static/style-paper.css	Mon Apr 09 22:00:11 2018 +0800
+++ b/mercurial/templates/static/style-paper.css	Sun Apr 08 20:53:07 2018 +0800
@@ -350,6 +350,7 @@
 }
 
 .btn-followlines {
+  position: absolute;
   display: none;
   cursor: pointer;
   box-sizing: content-box;
@@ -367,14 +368,6 @@
   line-height: 5px;
 }
 
-tr .btn-followlines {
-  position: absolute;
-}
-
-span .btn-followlines {
-  float: left;
-}
-
 span.followlines-select .btn-followlines {
   margin-left: -1.5em;
 }