Reduced z-index on drawer component. Fixed a bug with mobile toggle buttons.
This commit is contained in:
parent
595aadd29a
commit
a613c86826
@ -10,7 +10,7 @@ class Drawer extends IgniteElement {
|
||||
get styles() {
|
||||
return /*css*/`
|
||||
mt-drawer {
|
||||
z-index: 999999;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
mt-drawer > .container {
|
||||
@ -77,7 +77,7 @@ class Drawer extends IgniteElement {
|
||||
|
||||
mt-drawer > .open-btn {
|
||||
position: absolute;
|
||||
z-index: 999999;
|
||||
z-index: 100;
|
||||
width: 2.5em;
|
||||
height: 2.5em;
|
||||
font-size: 1.2em;
|
||||
@ -104,7 +104,7 @@ class Drawer extends IgniteElement {
|
||||
|
||||
mt-drawer > .container > .close-btn {
|
||||
position: absolute;
|
||||
z-index: 999999;
|
||||
z-index: 100;
|
||||
width: 2.5em;
|
||||
height: 2.5em;
|
||||
font-size: 1.2em;
|
||||
@ -182,7 +182,7 @@ class Drawer extends IgniteElement {
|
||||
.child(
|
||||
new button()
|
||||
.class("close-btn")
|
||||
.show([this.mobile, this.show, this.toggle], (mobile, show, toggle) => mobile && show && toggle)
|
||||
.show([this.mobile, this.show, this.showToggleButton], (mobile, show, toggle) => mobile && show && toggle)
|
||||
.onClick(() => this.show = false)
|
||||
.child("<i class='fas fa-chevron-left'></i>")
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user