@things-factory/operato-tools 10.0.3 → 10.0.5

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.
@@ -112,6 +112,8 @@ export class HomePage extends localize(i18next)(LitElement) {
112
112
  }
113
113
 
114
114
  input {
115
+ background-color: var(--input-field-background, var(--md-sys-color-surface-container-highest));
116
+ color: var(--input-field-color, var(--md-sys-color-on-surface));
115
117
  border: var(--md-sys-color-outline);
116
118
  border-radius: var(--border-radius);
117
119
  padding: var(--spacing-medium);
@@ -153,6 +153,12 @@ class MetaGeneratorPage extends MenuConfigTabMixin(
153
153
  min-width: 250px;
154
154
  font: var(--input-font);
155
155
  }
156
+ /* 체크박스·라디오는 제외 — 표면색을 주면 컨트롤 모양이 깨진다 */
157
+ input:not([type='checkbox']):not([type='radio']) {
158
+ background-color: var(--input-field-background, var(--md-sys-color-surface-container-highest));
159
+ color: var(--input-field-color, var(--md-sys-color-on-surface));
160
+ }
161
+
156
162
  label {
157
163
  display: flex;
158
164
  flex-direction: column;
@@ -167,6 +173,8 @@ class MetaGeneratorPage extends MenuConfigTabMixin(
167
173
  min-width: 25px;
168
174
  }
169
175
  select {
176
+ background-color: var(--input-field-background, var(--md-sys-color-surface-container-highest));
177
+ color: var(--input-field-color, var(--md-sys-color-on-surface));
170
178
  flex: 1;
171
179
  }
172
180
 
@@ -19,6 +19,8 @@ class OperatoToolsMain extends PageView {
19
19
  color: var(--title-text-color);
20
20
  }
21
21
  input {
22
+ background-color: var(--input-field-background, var(--md-sys-color-surface-container-highest));
23
+ color: var(--input-field-color, var(--md-sys-color-on-surface));
22
24
  display: block;
23
25
  }
24
26
  [page-description] {