From b2d14d73ba2945c18634e5e858bb2d0ae86f4997 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20B=C3=BCttner?= Date: Sat, 6 Aug 2016 10:36:05 +0200 Subject: [PATCH] refs #6 no longer leaving twice as much space to the right as needed slight increase in white to make the text easier to read --- mods/tier.js | 2 +- script-styles.css | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mods/tier.js b/mods/tier.js index e97792f..1d09814 100644 --- a/mods/tier.js +++ b/mods/tier.js @@ -71,7 +71,7 @@ idrinth.tier = { start: function () { 'use strict'; var pos = 1; - while ( 0 < window.innerWidth - 140 * ( pos + 2 ) ) { + while ( 0 < window.innerWidth - 140 * ( pos + 1 ) ) { this.taggedSlots[( pos * 140 ).toString ()] = null; pos++; } diff --git a/script-styles.css b/script-styles.css index 16c7e87..01d79a8 100644 --- a/script-styles.css +++ b/script-styles.css @@ -659,7 +659,7 @@ td.is-os { } .idrinth-tier-box > div { - background:rgba(255,255,255,0.3); + background:rgba(255,255,255,0.45); } .idrinth-tier-box > div > div { width: 50%; @@ -672,5 +672,5 @@ td.is-os { display:block; padding-bottom:2px; text-align:center; - background:rgba(255,255,255,0.3); + background:rgba(255,255,255,0.25); } \ No newline at end of file