]> asedeno.scripts.mit.edu Git - bluechips.git/commitdiff
Right align total debit/credit on status pages
authorAlejandro R. Sedeño <asedeno@mit.edu>
Mon, 22 Mar 2010 04:16:33 +0000 (00:16 -0400)
committerEvan Broder <broder@mit.edu>
Fri, 26 Mar 2010 14:32:11 +0000 (10:32 -0400)
bluechips/public/css/main.css
bluechips/templates/mobile/status/index.mako
bluechips/templates/status/index.mako

index ef51e094e0ccfbeeb4e270db514e2f9482f828f8..63b82aaf324333c558dd14aa96978e0fd5e07c2d 100644 (file)
@@ -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;
index 8f7ca0d07a5ec0d029ac859cadd9af57fe510a11..55dc7929cdec29a3c807d7d8ca00348c2240191a 100644 (file)
@@ -30,7 +30,7 @@ ${self.tabs('status')}
               You owe the group:
             % endif
           </th>
-          <th>${abs(c.net)}</th>
+          <th class="amount">${abs(c.net)}</th>
         </tr>
       % endif
     </table>
index ad75e8fa202ddabf58265615f3465735789f1af9..377179c621c68c43bc153e0a5d71964dea999b96 100644 (file)
@@ -30,7 +30,7 @@
               You owe the group:
             % endif
           </th>
-          <th>${abs(c.net)}</th>
+          <th class="amount">${abs(c.net)}</th>
         </tr>
       % endif
     </table>