From 9ba728a869286bfac319f4d2c20a223086d2aa8b Mon Sep 17 00:00:00 2001 From: Lucas Legname Date: Thu, 3 Apr 2014 21:08:39 +0200 Subject: [PATCH] Support table style update. --- src/main.css | 4 ++++ src/ninja.onload.js | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main.css b/src/main.css index 49d9843..155f1be 100644 --- a/src/main.css +++ b/src/main.css @@ -89,6 +89,10 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height: .frontPageImage { width: 100%; } .seedFrontPageImage { max-height: 340px; } +.currencyNameColumn { + min-width: 120px; +} + .securityChecklist { background-color: #FFE6C9; margin-top: 25px; diff --git a/src/ninja.onload.js b/src/ninja.onload.js index 52e3d92..fc3b883 100644 --- a/src/ninja.onload.js +++ b/src/ninja.onload.js @@ -32,7 +32,7 @@ for(i = 0; i < janin.currencies.length; i++) { if(janin.currencies[i].donate == null) continue; list += "" - +""+janin.currencies[i].name+"" + +""+janin.currencies[i].name+"" +"" +janin.currencies[i].donate+""; }