mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-06-26 12:31:47 +02:00
[bug] fix header border filling full width
This commit is contained in:
parent
d5e0f3bc1d
commit
f9a0485ce9
@ -56,7 +56,7 @@
|
||||
--font-fjalla: "Fjalla One Regular", sans-serif;
|
||||
--header-area-width: 100%;
|
||||
--header-shade-color: transparent;
|
||||
--header-shade-opacity: none;
|
||||
--header-shade-opacity: 0.95;
|
||||
--header-search-width: 0%;
|
||||
--header-border-top: 0;
|
||||
--header-border-bottom: 0;
|
||||
|
@ -48,6 +48,14 @@
|
||||
animation: none;
|
||||
}
|
||||
|
||||
.is-header-border-top .header-shade {
|
||||
border-top: calc(var(--line-width) * var(--header-border-top)) solid rgb(var(--theme-accent));
|
||||
}
|
||||
|
||||
.is-header-border-bottom .header-shade {
|
||||
border-bottom: calc(var(--line-width) * var(--header-border-bottom)) solid rgb(var(--theme-accent));
|
||||
}
|
||||
|
||||
.header-area {
|
||||
padding: calc(var(--gutter) * var(--layout-padding-multiplier));
|
||||
position: relative;
|
||||
@ -55,14 +63,14 @@
|
||||
}
|
||||
|
||||
.is-header-border-top .header-area {
|
||||
border-top: calc(var(--line-width) * var(--header-border-top)) solid rgb(var(--theme-accent));
|
||||
border-top: calc(var(--line-width) * var(--header-border-top)) solid transparent;
|
||||
}
|
||||
|
||||
.is-header-border-bottom .header-area {
|
||||
border-bottom: calc(var(--line-width) * var(--header-border-bottom)) solid rgb(var(--theme-accent));
|
||||
border-bottom: calc(var(--line-width) * var(--header-border-bottom)) solid transparent;
|
||||
}
|
||||
|
||||
.is-header-radius .header-area {
|
||||
.is-header-radius .header-shade {
|
||||
border-radius: calc(var(--theme-radius) * 4);
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
var version = (function() {
|
||||
|
||||
// version is normally bumped when the state needs changing or any new functionality is added
|
||||
var current = "3.10.0";
|
||||
var current = "3.10.1";
|
||||
|
||||
var compare = function(a, b) {
|
||||
var pa = a.split(".");
|
||||
|
Loading…
x
Reference in New Issue
Block a user