From 91369b406deac3e36220e10702ba3bc692d68c5e Mon Sep 17 00:00:00 2001 From: Kyle <41976328+ImKyle4815@users.noreply.github.com> Date: Sun, 6 Sep 2020 09:42:03 -0700 Subject: [PATCH] planeswalker notification / select bugfix --- data/scripts/versions/m15Planeswalker/version.js | 2 ++ data/styles/main.css | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/data/scripts/versions/m15Planeswalker/version.js b/data/scripts/versions/m15Planeswalker/version.js index 9b2ea847..66a33274 100644 --- a/data/scripts/versions/m15Planeswalker/version.js +++ b/data/scripts/versions/m15Planeswalker/version.js @@ -47,6 +47,8 @@ if (!loadedVersions.includes('m15Planeswalker/version')) { var planeswalkerLightToDark = new Image() var planeswalkerDarkToLight = new Image() planeswalkerDarkToLight.onload = function(){planeswalkerAbilities()} + + notify('To edit the Loyalty costs of planeswalker abilities or change the size of the ability textboxes, see the new \'Planeswalker\' tab.', '#aaffaae0') } if (currentVersion != 'm15Planeswalker/version') { diff --git a/data/styles/main.css b/data/styles/main.css index 53609540..1968c587 100644 --- a/data/styles/main.css +++ b/data/styles/main.css @@ -261,7 +261,7 @@ input:not([type='checkbox']), textarea, button, select { top: 0; } /*Slightly lifts inputs upon hovering over them*/ -input:not([type='checkbox']):hover, textarea:hover, button:hover, select:hover { +input:not([type='checkbox']):hover, textarea:hover, button:hover, select:hover, select:focus { top: -0.1rem; box-shadow: 0 0.125rem 0.25rem black; }