From 11de1015ea6639849cac868d479151c571871b41 Mon Sep 17 00:00:00 2001 From: Husman Date: Tue, 12 Apr 2016 16:41:00 -0700 Subject: [PATCH] Fixes: cursor as pointer on hero-box class in level up dialog that is not clickable by the user. Updates the style of the herobox to use the default cursor on this page instead of the pointer cursor that is defaulted by the hero-box class. This is in relation to: https://github.com/HabitRPG/habitrpg/issues/7066 --- website/views/shared/modals/level-up.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/views/shared/modals/level-up.jade b/website/views/shared/modals/level-up.jade index 2b1d44ebe9..d0f6ab8400 100644 --- a/website/views/shared/modals/level-up.jade +++ b/website/views/shared/modals/level-up.jade @@ -7,11 +7,11 @@ script(type='text/ng-template', id='modals/levelUp.html') h3(style='margin-bottom: 0')=env.t('gainedLevel') .container-fluid .row - .herobox(style='margin:auto 8.3em; width: 6em; height: 9em; padding-top: 0') + .herobox(style='margin:auto 8.3em; width: 6em; height: 9em; padding-top: 0; cursor:default') .character-sprites(style='margin: 0; width: 0') +generatedAvatar .row - .herobox(style='margin:auto 8.9em; width: 6em; height: 0; padding-top: 0') + .herobox(style='margin:auto 8.9em; width: 6em; height: 0; padding-top: 0; cursor:default') .avatar-level(ng-class='userLevelStyle(user)')=env.t('level')+' {{user.stats.lvl}}' h4(style='margin-top: 1em')!=env.t('leveledUp', {level:'{{user.stats.lvl}}'}) p=env.t('fullyHealed')