@things-factory/operato-pms 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);
|
|
@@ -27,6 +27,8 @@ class PlantationSetting extends PageView {
|
|
|
27
27
|
color: var(--subtitle-text-color);
|
|
28
28
|
}
|
|
29
29
|
input {
|
|
30
|
+
background-color: var(--input-field-background, var(--md-sys-color-surface-container-highest));
|
|
31
|
+
color: var(--input-field-color, var(--md-sys-color-on-surface));
|
|
30
32
|
display: block;
|
|
31
33
|
}
|
|
32
34
|
`
|
|
@@ -15,10 +15,12 @@ body {
|
|
|
15
15
|
--auth-input-field-font: normal 16px var(--theme-font);
|
|
16
16
|
|
|
17
17
|
--change-password-field-font: var(--auth-input-field-font);
|
|
18
|
-
|
|
18
|
+
/* rgba(0,0,0,.2) 는 다크 배경에서 보이지 않는다 → 경계선 역할 토큰을 쓴다 */
|
|
19
|
+
--change-password-field-border: var(--input-field-border, 1px solid var(--md-sys-color-outline));
|
|
19
20
|
--change-password-field-border-radius: var(--border-radius);
|
|
20
21
|
--change-password-field-margin: var(--margin-narrow) 0;
|
|
21
|
-
|
|
22
|
+
/* 같은 프로필 화면의 위쪽 인풋(9px)과 높이를 맞춘다. 8px 이면 한 화면에 두 높이가 생긴다. */
|
|
23
|
+
--change-password-field-padding: 9px;
|
|
22
24
|
--change-password-field-width: var(--auth-input-field-width);
|
|
23
25
|
|
|
24
26
|
/* domain select page style*/
|