diff --git a/VERSIONS.md b/VERSIONS.md index adac9b1..50d2387 100644 --- a/VERSIONS.md +++ b/VERSIONS.md @@ -2,4 +2,7 @@ ## v0.6.1 * Replaced internal arrays with sets to prevent accidentally doubly caching values * Perform startup initialization for switches (should now default to ON) - * Fixed error appearing right after installing extension \ No newline at end of file + * Fixed error appearing right after installing extension + +## v0.6.2 + * Added color transitions to buttons and links in the popup \ No newline at end of file diff --git a/manifest.json b/manifest.json index eaf5cc6..a7833d9 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "FuriKani", "description": "Removes furigana on websites based on your WaniKani level", - "version": "0.6.1", + "version": "0.6.2", "icons": { "16": "res/icon16.png", "48": "res/icon48.png", diff --git a/popup.html b/popup.html index 51e0662..15ffb65 100644 --- a/popup.html +++ b/popup.html @@ -6,7 +6,7 @@

FuriKani

-

v0.6.1

+

v0.6.2

diff --git a/src/styles.css b/src/styles.css index 7861e41..2ada625 100644 --- a/src/styles.css +++ b/src/styles.css @@ -53,6 +53,7 @@ h2 #token-status { font-size: 1rem; + cursor: default; } #token @@ -74,11 +75,14 @@ h2 border: none; background-color: #064663; font-size: 1rem; + transition: background-color 100ms linear; } #submit-token:hover { background-color: #04293A; + transition: background-color 100ms linear; + cursor: pointer; } #submit-token:active @@ -118,6 +122,13 @@ a, a:visited { text-decoration: none; color: #2e94c3; + transition: color 100ms linear; +} + +a:hover +{ + color: #49b9ec; + transition: color 100ms linear; } /* The switch - the box around the slider */