@things-factory/integration-ui 8.0.0-beta.8 → 8.0.0
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/client/viewparts/scenario-monitor.ts +2 -7
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/scenario-monitor.js +2 -7
- package/dist-client/viewparts/scenario-monitor.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +18 -18
- package/.npmignore copy +0 -26
@@ -94,10 +94,9 @@ export class ScenarioMonitor extends localize(i18next)(LitElement) {
|
|
94
94
|
}
|
95
95
|
|
96
96
|
[buttons] {
|
97
|
-
display: flex;
|
98
|
-
flex-direction: row-reverse;
|
99
97
|
border-top: var(--border-dim-color);
|
100
98
|
padding: var(--spacing-small) 0 0 0;
|
99
|
+
text-align: right;
|
101
100
|
}
|
102
101
|
|
103
102
|
[buttons] md-icon {
|
@@ -157,10 +156,6 @@ export class ScenarioMonitor extends localize(i18next)(LitElement) {
|
|
157
156
|
background-color: rgba(255, 255, 255, 0.8);
|
158
157
|
}
|
159
158
|
|
160
|
-
pre {
|
161
|
-
margin: var(--spacing-medium);
|
162
|
-
}
|
163
|
-
|
164
159
|
@media screen and (max-width: 480px) {
|
165
160
|
:host {
|
166
161
|
margin: var(--spacing-small);
|
@@ -200,7 +195,7 @@ export class ScenarioMonitor extends localize(i18next)(LitElement) {
|
|
200
195
|
</div>
|
201
196
|
<div schedule>
|
202
197
|
<md-icon .style="background-color: ${color};">schedule</md-icon>
|
203
|
-
<pre>${schedule}
|
198
|
+
<pre>${schedule}</pre>
|
204
199
|
</div>
|
205
200
|
${this.renderButtons(scenario)}
|
206
201
|
</div>
|