From 63d8fd55f39c75b05b6ea807a6a27c683d9bd645 Mon Sep 17 00:00:00 2001 From: zombieFox Date: Thu, 12 Sep 2019 07:54:08 +0100 Subject: [PATCH] [bug] fix link item hover state --- package.json | 2 +- src/css/link.css | 5 ++++- src/js/version.js | 2 +- src/manifest.json | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 47b30088..781604eb 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/css/link.css b/src/css/link.css index ac15e2ff..df4b34b0 100755 --- a/src/css/link.css +++ b/src/css/link.css @@ -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; diff --git a/src/js/version.js b/src/js/version.js index 56dccb50..64779dac 100644 --- a/src/js/version.js +++ b/src/js/version.js @@ -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("."); diff --git a/src/manifest.json b/src/manifest.json index 57e50317..57258860 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -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"