Fixed dropdown menu styling. Added alignment property with support for centering the dropdown menu. Cleaned up the code a little too and simplified a few things.
This commit is contained in:
parent
24906572d7
commit
1483ee54f0
@ -1,5 +1,5 @@
|
|||||||
import { IgniteElement } from "../ignite-html/ignite-element.js";
|
import { IgniteElement } from "../ignite-html/ignite-element.js";
|
||||||
import { IgniteTemplate, button, ul, slot } from "../ignite-html/ignite-template.js";
|
import { IgniteTemplate, button, ul, slot, div } from "../ignite-html/ignite-template.js";
|
||||||
|
|
||||||
class DropdownMenu extends IgniteElement {
|
class DropdownMenu extends IgniteElement {
|
||||||
constructor() {
|
constructor() {
|
||||||
@ -9,31 +9,49 @@ class DropdownMenu extends IgniteElement {
|
|||||||
get properties() {
|
get properties() {
|
||||||
return {
|
return {
|
||||||
button: null,
|
button: null,
|
||||||
buttonClass: "btn btn-simple",
|
buttonClass: "btn",
|
||||||
placement: "right",
|
placement: "right",
|
||||||
minWidth: null
|
alignment: "none",
|
||||||
|
minWidth: null,
|
||||||
|
marginTop: null,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
get styles() {
|
get styles() {
|
||||||
return `
|
return `
|
||||||
.btn-simple {
|
bt-dropdown-menu {
|
||||||
border: none;
|
position: relative;
|
||||||
background-color: transparent;
|
}
|
||||||
|
|
||||||
|
bt-dropdown-menu > div {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
bt-dropdown-menu > div.alignment-center {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
bt-dropdown-menu > div.alignment-center > ul {
|
||||||
|
left: unset !important;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return this.template.child(
|
return this.template.child(
|
||||||
new button().class(this.buttonClass).data("toggle", "dropdown").child(this.button),
|
new div().class(this.alignment, value => "alignment-" + value).child(
|
||||||
new ul()
|
new button().class(this.buttonClass).data("toggle", "dropdown").child(this.button),
|
||||||
.class("dropdown-menu")
|
new ul()
|
||||||
.class(this.placement, (value) => { return `dropdown-menu-${value}`; })
|
.class("dropdown-menu")
|
||||||
.style("min-width", this.minWidth, "important", (value) => { return value ? value : "unset"; })
|
.class(this.placement, value => `dropdown-menu-${value}`)
|
||||||
.child(
|
.style("min-width", this.minWidth, "important", value => value ? value : "unset")
|
||||||
new slot(this)
|
.style("margin-top", this.marginTop)
|
||||||
)
|
.child(
|
||||||
|
new slot(this)
|
||||||
|
)
|
||||||
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user