commit
28b8089504
|
@ -2,4 +2,7 @@
|
||||||
## v0.6.1
|
## v0.6.1
|
||||||
* Replaced internal arrays with sets to prevent accidentally doubly caching values
|
* Replaced internal arrays with sets to prevent accidentally doubly caching values
|
||||||
* Perform startup initialization for switches (should now default to ON)
|
* Perform startup initialization for switches (should now default to ON)
|
||||||
* Fixed error appearing right after installing extension
|
* Fixed error appearing right after installing extension
|
||||||
|
|
||||||
|
## v0.6.2
|
||||||
|
* Added color transitions to buttons and links in the popup
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "FuriKani",
|
"name": "FuriKani",
|
||||||
"description": "Removes furigana on websites based on your WaniKani level",
|
"description": "Removes furigana on websites based on your WaniKani level",
|
||||||
"version": "0.6.1",
|
"version": "0.6.2",
|
||||||
"icons": {
|
"icons": {
|
||||||
"16": "res/icon16.png",
|
"16": "res/icon16.png",
|
||||||
"48": "res/icon48.png",
|
"48": "res/icon48.png",
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<h1>FuriKani</h1>
|
<h1>FuriKani</h1>
|
||||||
<h2>v0.6.1</h2>
|
<h2>v0.6.2</h2>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<div id="token-area">
|
<div id="token-area">
|
||||||
|
|
|
@ -53,6 +53,7 @@ h2
|
||||||
#token-status
|
#token-status
|
||||||
{
|
{
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
|
||||||
#token
|
#token
|
||||||
|
@ -74,11 +75,14 @@ h2
|
||||||
border: none;
|
border: none;
|
||||||
background-color: #064663;
|
background-color: #064663;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
transition: background-color 100ms linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
#submit-token:hover
|
#submit-token:hover
|
||||||
{
|
{
|
||||||
background-color: #04293A;
|
background-color: #04293A;
|
||||||
|
transition: background-color 100ms linear;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
#submit-token:active
|
#submit-token:active
|
||||||
|
@ -118,6 +122,13 @@ a, a:visited
|
||||||
{
|
{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #2e94c3;
|
color: #2e94c3;
|
||||||
|
transition: color 100ms linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover
|
||||||
|
{
|
||||||
|
color: #49b9ec;
|
||||||
|
transition: color 100ms linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The switch - the box around the slider */
|
/* The switch - the box around the slider */
|
||||||
|
|
Loading…
Reference in a new issue