[bug] prevent flash of unstyled menu on load

This commit is contained in:
Kuldeep M 2019-08-19 09:48:55 +01:00
parent 6c18bb8c57
commit 9cfae611c5
4 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "nighttab",
"version": "3.74.1",
"version": "3.74.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

@ -9,6 +9,11 @@
transition: transform var(--layout-timing-extra-fast);
z-index: var(--z-index-menu);
pointer-events: none;
display: none;
}
.is-menu .menu {
display: block;
}
.menu:focus {

View File

@ -1,6 +1,6 @@
var version = (function() {
var current = "3.74.1";
var current = "3.74.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.74.1",
"version": "3.74.2",
"manifest_version": 2,
"chrome_url_overrides": {
"newtab": "index.html"