From 0e14bb218f604cfb9059a5d145f4b972bbe525cc Mon Sep 17 00:00:00 2001 From: Mateus Pinheiro Date: Mon, 11 Apr 2016 22:06:52 -0300 Subject: [PATCH 1/2] Change list total to absolute positioning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since Trello added the ellipsis button to the right, the list total was breaking to the second line. This makes it absolute positioned and hence fixes the issue – I hope :) --- trelloscrum.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/trelloscrum.css b/trelloscrum.css index cfc8379..577b087 100644 --- a/trelloscrum.css +++ b/trelloscrum.css @@ -1,4 +1,7 @@ .list-total { + position: absolute; + right: 32px; + top: 6px; color: #006580; font-size: 16px; font-weight: bold; From 0a202c25b7f6cdceb013725df2ae9c14f27dff87 Mon Sep 17 00:00:00 2001 From: Mateus Pinheiro Date: Mon, 11 Apr 2016 22:20:13 -0300 Subject: [PATCH 2/2] Makes the board totals static Since fixing the column totals makes them absolute, it also affected the board total. This makes the board totals not break. --- trelloscrum.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/trelloscrum.css b/trelloscrum.css index 577b087..94c11c2 100644 --- a/trelloscrum.css +++ b/trelloscrum.css @@ -10,6 +10,8 @@ line-height:18px; } .board-header-btns .list-total{ /* only targets the board totals */ + position: static; + margin-right: 8px; line-height:30px; color: #60c5f0; }