mirror of
https://github.com/zombieFox/nightTab.git
synced 2024-11-22 16:13:20 +01:00
[bug] prevent flash of unstyled menu on load
This commit is contained in:
parent
6c18bb8c57
commit
9cfae611c5
@ -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": {
|
||||
|
@ -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 {
|
||||
|
@ -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(".");
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user