Cleaning up CSS in components and adding in a drawer component.
This commit is contained in:
parent
5f30daca21
commit
fd7d647000
@ -9,7 +9,7 @@ class ChipList extends IgniteElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get styles() {
|
get styles() {
|
||||||
return `
|
return /*css*/`
|
||||||
mt-chip-list {
|
mt-chip-list {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
2
chip.js
2
chip.js
@ -15,7 +15,7 @@ class Chip extends IgniteElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get styles() {
|
get styles() {
|
||||||
return `
|
return /*css*/`
|
||||||
mt-chip {
|
mt-chip {
|
||||||
border-radius: 1em;
|
border-radius: 1em;
|
||||||
background-color: #e0e0e0;
|
background-color: #e0e0e0;
|
||||||
|
@ -7,7 +7,7 @@ class CircularProgress extends IgniteElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get styles() {
|
get styles() {
|
||||||
return `
|
return /*css*/`
|
||||||
mt-circular-progress > div > svg {
|
mt-circular-progress > div > svg {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 999999;
|
z-index: 999999;
|
||||||
|
@ -7,7 +7,7 @@ class CollapsableRegion extends IgniteElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get styles() {
|
get styles() {
|
||||||
return `
|
return /*css*/`
|
||||||
mt-collapsable-region .title:hover {
|
mt-collapsable-region .title:hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
94
drawer.js
Normal file
94
drawer.js
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
import { IgniteElement } from "../ignite-html/ignite-element.js";
|
||||||
|
import { IgniteTemplate, div, h1, slot, button } from "../ignite-html/ignite-template.js";
|
||||||
|
|
||||||
|
class Drawer extends IgniteElement {
|
||||||
|
constructor() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
get styles() {
|
||||||
|
return /*css*/`
|
||||||
|
mt-drawer > div {
|
||||||
|
position: relative;
|
||||||
|
background-color: #f8f9fa;
|
||||||
|
}
|
||||||
|
|
||||||
|
mt-drawer > div.absolute {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
mt-drawer > div.left {
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
mt-drawer > div.right {
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
mt-drawer > div.top {
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
mt-drawer > div.bottom {
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
mt-drawer > div.show {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
mt-drawer > div {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
get properties() {
|
||||||
|
return {
|
||||||
|
show: true,
|
||||||
|
responsiveClasses: "d-none d-md-flex",
|
||||||
|
position: "left",
|
||||||
|
width: "20em",
|
||||||
|
height: null,
|
||||||
|
padding: "1em",
|
||||||
|
absolute: true
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return this.template
|
||||||
|
.child(
|
||||||
|
new div()
|
||||||
|
.class(this.responsiveClasses)
|
||||||
|
.class(this.show, (value) => { return value ? "show" : null })
|
||||||
|
.class(this.absolute, (value) => { return value ? "absolute" : null })
|
||||||
|
.class(this.position)
|
||||||
|
.style("width", this.width)
|
||||||
|
.style("height", this.height)
|
||||||
|
.style("padding", this.padding)
|
||||||
|
.child(new button().class("btn btn-none").child("<i class='fas fa-chevron-left'></i>"))
|
||||||
|
.child(new slot(this))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class DrawerTemplate extends IgniteTemplate {
|
||||||
|
constructor(...children) {
|
||||||
|
super("mt-drawer", children);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export {
|
||||||
|
DrawerTemplate as Drawer
|
||||||
|
};
|
||||||
|
|
||||||
|
customElements.define("mt-drawer", Drawer);
|
@ -7,7 +7,7 @@ class EditableImage extends IgniteElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get styles() {
|
get styles() {
|
||||||
return `
|
return /*css*/`
|
||||||
mt-editable-image {
|
mt-editable-image {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -8,7 +8,7 @@ class EditableLabel extends IgniteElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get styles() {
|
get styles() {
|
||||||
return `
|
return /*css*/`
|
||||||
mt-editable-label {
|
mt-editable-label {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
@ -8,7 +8,7 @@ class IconTabs extends IgniteElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get styles() {
|
get styles() {
|
||||||
return `
|
return /*css*/`
|
||||||
mt-icon-tabs > .icons {
|
mt-icon-tabs > .icons {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
@ -7,7 +7,7 @@ class LinearProgress extends IgniteElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get styles() {
|
get styles() {
|
||||||
return `
|
return /*css*/`
|
||||||
mt-linear-progress {
|
mt-linear-progress {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -16,7 +16,7 @@ class PaginationList extends IgniteElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get styles() {
|
get styles() {
|
||||||
return `
|
return /*css*/`
|
||||||
mt-pagination-list .list-container {
|
mt-pagination-list .list-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user