[bug] fix link item hover state

This commit is contained in:
zombieFox 2019-09-12 07:54:08 +01:00
parent dff78ed962
commit 63d8fd55f3
4 changed files with 7 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "nighttab",
"version": "3.82.1",
"version": "3.82.2",
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
"main": "index.js",
"scripts": {

View File

@ -125,7 +125,10 @@
}
.link-panel-front:hover,
.link-panel-front:focus {
.link-panel-front:focus,
.link-item:focus-within .link-panel-front,
.link-item:focus .link-panel-front,
.link-item:hover .link-panel-front {
background-color: rgb(var(--theme-gray-03));
outline: none;
text-decoration: none;

View File

@ -1,6 +1,6 @@
var version = (function() {
var current = "3.82.1";
var current = "3.82.2";
var compare = function(a, b) {
var pa = a.split(".");

View File

@ -2,7 +2,7 @@
"name": "nightTab",
"short_name": "nightTab",
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
"version": "3.82.1",
"version": "3.82.2",
"manifest_version": 2,
"chrome_url_overrides": {
"newtab": "index.html"