Compare commits

...

8 Commits

2 changed files with 25 additions and 4 deletions

View File

@ -1,7 +1,7 @@
{
"name": "strolch-wc-dialog-button",
"description": "Strolch WebComponent Dialog Button",
"version": "0.1.5",
"version": "0.1.13",
"authors": [
"Robert von Burg"
],
@ -21,9 +21,9 @@
"dependencies": {
"polymer": "Polymer/polymer#^1.12.0",
"strolchjs": "strolch-li/strolchjs#^0.5.1",
"strolch-wc-styles": "strolch-li/strolch-wc-styles#^0.4.2",
"strolch-wc-util-behavior": "strolch-li/strolch-wc-util-behavior#^0.3.0",
"strolchjs": "strolch-li/strolchjs#^0.5.3",
"strolch-wc-styles": "strolch-li/strolch-wc-styles#^0.4.7",
"strolch-wc-util-behavior": "strolch-li/strolch-wc-util-behavior#^0.3.12",
"paper-icon-button": "PolymerElements/paper-icon-button#^1.1.6",
"paper-dialog": "PolymerElements/paper-dialog#^1.1.0",

View File

@ -12,6 +12,13 @@
<style is="custom-style">
:host {
pointer-events: all !important;
--max-dialog-width: 600px;
--icon: {
};
}
paper-icon-button {
@apply(--icon);
}
.title {
@ -21,6 +28,7 @@
.aligned-dialog {
margin: 0;
min-width: 300px;
max-width: var(--max-dialog-width);
}
.dialog-headline {
@ -29,6 +37,19 @@
@apply(--layout-horizontal);
@apply(--layout-center);
}
p {
text-align: start;
}
a {
display: block;
text-decoration: none;
width: fit-content;
margin: 0 0 0 24px;
padding: 0;
}
</style>
<!-- Content -->