[Minor] Styling fixes

This commit is contained in:
Robert von Burg 2022-04-28 15:00:03 +02:00
parent 6d6e6e1df8
commit 3e20b9926c
2 changed files with 8 additions and 9 deletions

View File

@ -1,7 +1,7 @@
{
"name": "strolch-wc-information-dialog",
"description": "Strolch WebComponent Information Dialog",
"version": "0.1.11",
"version": "0.1.12",
"authors": [
"Robert von Burg"
],
@ -20,9 +20,10 @@
"ignore": [],
"dependencies": {
"strolchjs": "strolch-li/strolchjs#^0.5.1",
"strolch-wc-styles": "strolch-li/strolch-wc-styles#^0.4.2",
"strolch-wc-localize-behavior": "strolch-li/strolch-wc-localize-behavior#^1.1.14",
"polymer": "Polymer/polymer#^1.11.3",
"polymer": "Polymer/polymer#^1.12.0",
"iron-a11y-keys": "PolymerElements/iron-a11y-keys#^1.0.9",

View File

@ -6,24 +6,22 @@
<link rel="import" href="../paper-dialog/paper-dialog.html">
<link rel="import" href="../strolch-wc-localize-behavior/strolch-wc-localize-behavior.html">
<link rel="import" href="../strolch-wc-styles/strolch-wc-app-style.html">
<dom-module id="strolch-wc-information-dialog">
<template>
<!-- Style -->
<style is="custom-style">
:host {
--button-text-color: var(--app-primary-color);
.title {
color: var(--paper-dialog-button-color);
}
paper-button {
color: var(--button-text-color);
}
</style>
<paper-dialog id="dlg" modal>
<iron-a11y-keys keys="esc" on-keys-pressed="close"></iron-a11y-keys>
<h2>[[title]]</h2>
<h2 class="title">[[title]]</h2>
<p>[[line1]]</p>
@ -59,7 +57,7 @@
<script>
Polymer({
is: "strolch-wc-information-dialog",
is: 'strolch-wc-information-dialog',
behaviors: [
StrolchLocalizeBehavior
],