From 82ad8466cea54eb777e71bb1a74798461461598b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alejandro=20R=2E=20Sede=C3=B1o?= Date: Mon, 22 Mar 2010 00:16:33 -0400 Subject: [PATCH] Right align total debit/credit on status pages --- bluechips/public/css/main.css | 3 +++ bluechips/templates/mobile/status/index.mako | 2 +- bluechips/templates/status/index.mako | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/bluechips/public/css/main.css b/bluechips/public/css/main.css index ef51e09..63b82aa 100644 --- a/bluechips/public/css/main.css +++ b/bluechips/public/css/main.css @@ -109,6 +109,9 @@ table.list td.share { #balance td.amount { text-align: right; } +#balance th.amount { + text-align: right; +} td.labelcol { text-align: right; diff --git a/bluechips/templates/mobile/status/index.mako b/bluechips/templates/mobile/status/index.mako index 8f7ca0d..55dc792 100644 --- a/bluechips/templates/mobile/status/index.mako +++ b/bluechips/templates/mobile/status/index.mako @@ -30,7 +30,7 @@ ${self.tabs('status')} You owe the group: % endif - ${abs(c.net)} + ${abs(c.net)} % endif diff --git a/bluechips/templates/status/index.mako b/bluechips/templates/status/index.mako index ad75e8f..377179c 100644 --- a/bluechips/templates/status/index.mako +++ b/bluechips/templates/status/index.mako @@ -30,7 +30,7 @@ You owe the group: % endif - ${abs(c.net)} + ${abs(c.net)} % endif -- 2.45.2