# HG changeset patch # User Mads Kiilerich # Date 2018-06-07 01:48:15 # Node ID 1d5145d52c30fd618cc23e3ba227939d3e0e6c4d # Parent 6d69d2448627bbedf8274645157492fad343aba2 changelog: tweak positioning of checkboxes for changeset selection Avoid the default vertical alignment on baseline. Instead align on text bottom - that makes it show up more nicely aligned with the text. Also override the Bootstrap top margin - it made the checkbox the largest element in rows and it was thus controlling the height for no good reason. diff --git a/kallithea/public/less/style.less b/kallithea/public/less/style.less --- a/kallithea/public/less/style.less +++ b/kallithea/public/less/style.less @@ -814,6 +814,10 @@ div.comment-prev-next-links div.next-com width: 24px; /* the optional second checkbox will be inline-block but should wrap to a new line */ white-space: normal; + > input[type=checkbox] { + margin-top: inherit; + vertical-align: text-bottom; + } } .changeset-logical-index { color: @gray-light;