From b7580a9e5ad204269694b31a4d97ba59dd868c9d Mon Sep 17 00:00:00 2001 From: Stan Lindsey Date: Sun, 3 Feb 2013 21:05:06 +0000 Subject: [PATCH 1/3] Growl position fixedf --- styles/app/index.styl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/styles/app/index.styl b/styles/app/index.styl index 9c04a334fd..a295ce4724 100644 --- a/styles/app/index.styl +++ b/styles/app/index.styl @@ -18,13 +18,17 @@ html,body,p,h1,ul,li,table,tr,th,td padding: 12px 16px white-space: nowrap position:fixed - width: 100%; + width: 100% #head .pull-right{ margin-right: 2% margin-left: 1% } +.bootstrap-growl{ +position:fixed !important +} + .color-worst pre background-color: rgb(230, 184, 175) .color-worse pre From 11edb75336cda630e70f73ace9280b390f0bb7f2 Mon Sep 17 00:00:00 2001 From: Stan Lindsey Date: Tue, 5 Feb 2013 12:24:19 +0000 Subject: [PATCH 2/3] Math.floor instead of rounding MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Should fix https://github.com/lefnire/habitrpg/issues/236#issuecomment-13126649 --- views/app/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/app/index.html b/views/app/index.html index 929b0f863c..4e58a7742a 100644 --- a/views/app/index.html +++ b/views/app/index.html @@ -163,7 +163,7 @@ {#if _user.history.exp}   {/} - {round(_user.stats.exp)} / {_user._tnl} + {Math.floor(_user.stats.exp)} / {_user._tnl} From ee4c6609691c8ea3c34314b66145a119caac162b Mon Sep 17 00:00:00 2001 From: Stan Lindsey Date: Tue, 5 Feb 2013 12:36:59 +0000 Subject: [PATCH 3/3] Update views/app/index.html --- views/app/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/app/index.html b/views/app/index.html index 4e58a7742a..929b0f863c 100644 --- a/views/app/index.html +++ b/views/app/index.html @@ -163,7 +163,7 @@ {#if _user.history.exp}   {/} - {Math.floor(_user.stats.exp)} / {_user._tnl} + {round(_user.stats.exp)} / {_user._tnl}