Fix: Header border color was not transitioning properly coming from transparent header
This commit is contained in:
parent
b1b0c0545c
commit
fcb5440469
1 changed files with 3 additions and 2 deletions
|
|
@ -2452,8 +2452,8 @@ ul.MuiList-root.MuiMenu-list.MuiList-dense>div:first-child {
|
||||||
background-color: var(--headerColor);
|
background-color: var(--headerColor);
|
||||||
border: var(--defaultBorder);
|
border: var(--defaultBorder);
|
||||||
border-width: 0 0 var(--borderWidth) 0;
|
border-width: 0 0 var(--borderWidth) 0;
|
||||||
transition-property: background-color, backdrop-filter, transform, border-width;
|
|
||||||
transition: .5s ease-in-out;
|
transition: .5s ease-in-out;
|
||||||
|
transition-property: background-color, backdrop-filter, transform, border-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
.skinHeader-withBackground.semiTransparent,
|
.skinHeader-withBackground.semiTransparent,
|
||||||
|
|
@ -2461,7 +2461,8 @@ ul.MuiList-root.MuiMenu-list.MuiList-dense>div:first-child {
|
||||||
backdrop-filter: none;
|
backdrop-filter: none;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: none;
|
border: none;
|
||||||
transition: all .5s ease-in-out;
|
transition: .5s ease-in-out;
|
||||||
|
transition-property: background-color, backdrop-filter, transform, border-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
.headerTop {
|
.headerTop {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue