mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-01-10 07:58:53 +01:00
[design] add more background colour transitions
This commit is contained in:
parent
11f46ebb41
commit
67a1be8a3e
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "nightTab",
|
||||
"version": "5.23.0",
|
||||
"version": "5.24.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "nightTab",
|
||||
"version": "5.23.0",
|
||||
"version": "5.24.0",
|
||||
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
@ -21,7 +21,7 @@ body {
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
opacity: 0;
|
||||
transition: opacity var(--layout-duration-03) ease-in;
|
||||
transition: background-color var(--layout-timing-extra-fast), opacity var(--layout-duration-03) ease-in;
|
||||
}
|
||||
|
||||
.is-ready body {
|
||||
|
@ -73,6 +73,7 @@
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 4;
|
||||
transition: background-color var(--layout-timing-extra-fast);
|
||||
}
|
||||
|
||||
/* label */
|
||||
|
@ -33,7 +33,7 @@
|
||||
align-items: stretch;
|
||||
overflow-y: auto;
|
||||
pointer-events: all;
|
||||
transition: box-shadow var(--layout-timing-extra-fast);
|
||||
transition: background-color var(--layout-timing-extra-fast), box-shadow var(--layout-timing-extra-fast);
|
||||
}
|
||||
|
||||
.is-menu-open .menu-area {
|
||||
@ -117,6 +117,7 @@
|
||||
|
||||
.menu-content-item:not(:last-child) {
|
||||
border-bottom: var(--horizontal-rule-large);
|
||||
transition: border-color var(--layout-timing-extra-fast);
|
||||
}
|
||||
|
||||
.menu-item-header {
|
||||
@ -164,6 +165,7 @@
|
||||
flex-wrap: nowrap;
|
||||
overflow-y: auto;
|
||||
z-index: 1;
|
||||
transition: background-color var(--layout-timing-extra-fast);
|
||||
}
|
||||
|
||||
.menu-content {
|
||||
@ -217,7 +219,7 @@
|
||||
flex-wrap: nowrap;
|
||||
overflow: hidden;
|
||||
height: 0;
|
||||
transition: height var(--layout-timing-extra-fast);
|
||||
transition: background-color var(--layout-timing-extra-fast), height var(--layout-timing-extra-fast);
|
||||
}
|
||||
|
||||
.menu-subnav.active {
|
||||
|
@ -70,6 +70,7 @@ hr {
|
||||
border-radius: var(--theme-radius);
|
||||
margin: calc(var(--form-wrap-space) * 1.5) 0;
|
||||
clear: both;
|
||||
transition: border-color var(--layout-timing-extra-fast);
|
||||
}
|
||||
|
||||
b,
|
||||
|
@ -1,6 +1,6 @@
|
||||
var version = (function() {
|
||||
|
||||
var current = "5.23.0";
|
||||
var current = "5.24.0";
|
||||
|
||||
var name = "Zonked Tarsier";
|
||||
|
||||
|
@ -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": "5.23.0",
|
||||
"version": "5.24.0",
|
||||
"manifest_version": 2,
|
||||
"chrome_url_overrides": {
|
||||
"newtab": "index.html"
|
||||
|
Loading…
Reference in New Issue
Block a user