planeswalker notification / select bugfix

This commit is contained in:
Kyle
2020-09-06 09:42:03 -07:00
parent 8ca78c8d8b
commit 91369b406d
2 changed files with 3 additions and 1 deletions

View File

@@ -47,6 +47,8 @@ if (!loadedVersions.includes('m15Planeswalker/version')) {
var planeswalkerLightToDark = new Image() var planeswalkerLightToDark = new Image()
var planeswalkerDarkToLight = new Image() var planeswalkerDarkToLight = new Image()
planeswalkerDarkToLight.onload = function(){planeswalkerAbilities()} 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') { if (currentVersion != 'm15Planeswalker/version') {

View File

@@ -261,7 +261,7 @@ input:not([type='checkbox']), textarea, button, select {
top: 0; top: 0;
} }
/*Slightly lifts inputs upon hovering over them*/ /*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; top: -0.1rem;
box-shadow: 0 0.125rem 0.25rem black; box-shadow: 0 0.125rem 0.25rem black;
} }