From 5b37320724dec7c509724906878949dea0ee30f3 Mon Sep 17 00:00:00 2001 From: Max Goodman Date: Mon, 19 Aug 2013 17:09:30 -0700 Subject: [PATCH] Normalize thumbnail heights. The font size of the a.thumbnail element was causing inconsistent vertical spacing across browsers. This tweak attempts to replace it with a consistent 2px bottom margin. --- r2/r2/public/static/css/reddit.less | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/r2/r2/public/static/css/reddit.less b/r2/r2/public/static/css/reddit.less index 75dd2c92f..a8455af50 100755 --- a/r2/r2/public/static/css/reddit.less +++ b/r2/r2/public/static/css/reddit.less @@ -3574,7 +3574,9 @@ form input[type=radio] {margin: 2px .5em 0 0; } .thumbnail { float: left; - margin: 0px 5px; + font-size: 0; + margin: 0 5px; + margin-bottom: 2px; overflow: hidden; width: 70px; }