@progressive-development/pd-wizard 0.0.23 → 0.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/PdWizard.js +6 -2
package/package.json
CHANGED
package/src/PdWizard.js
CHANGED
|
@@ -115,7 +115,7 @@ export class PdWizard extends LitElement {
|
|
|
115
115
|
--my-header-background-color: var(--pd-wizard-header-bg-color, #084c61);
|
|
116
116
|
--my-header-text-color: var(--pd-wizard-header-txt-color, white);
|
|
117
117
|
|
|
118
|
-
--my-footer-background-color: var(--
|
|
118
|
+
--my-footer-background-color: var(--pd-wizard-footer-bg-color, #fefefe);
|
|
119
119
|
|
|
120
120
|
display: block;
|
|
121
121
|
/*min-height: 100%;*/
|
|
@@ -123,11 +123,12 @@ export class PdWizard extends LitElement {
|
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
:host([roundedFullContent]) .layout-container {
|
|
126
|
+
gap: 0px;
|
|
126
127
|
grid-template-areas:
|
|
127
128
|
'header header header'
|
|
128
129
|
'content content content'
|
|
129
130
|
'footer footer footer';
|
|
130
|
-
}
|
|
131
|
+
}
|
|
131
132
|
|
|
132
133
|
/* Layout Grid for the Wizard Component
|
|
133
134
|
Wird hier für die "Text-Bildschirmgröße" verwendet, umstellen/gleichziehen => verschiedene Implementierungen, die Flex Variante (ticomi-web) scheint am schlankesten...
|
|
@@ -167,6 +168,9 @@ export class PdWizard extends LitElement {
|
|
|
167
168
|
padding-right: 50px;*/
|
|
168
169
|
justify-content: space-between;
|
|
169
170
|
background-color: var(--my-footer-background-color);
|
|
171
|
+
|
|
172
|
+
border-bottom-left-radius: var(--pd-step-borderradius, 0);
|
|
173
|
+
border-bottom-right-radius: var(--pd-step-borderradius, 0);
|
|
170
174
|
}
|
|
171
175
|
|
|
172
176
|
.wiz-breadcrumbs {
|