@14ch/svelte-ui 0.0.26 → 0.0.27
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.
|
@@ -877,6 +877,7 @@
|
|
|
877
877
|
background-color: transparent;
|
|
878
878
|
border: none;
|
|
879
879
|
border-radius: var(--svelte-ui-input-border-radius);
|
|
880
|
+
font-family: inherit;
|
|
880
881
|
font-size: inherit;
|
|
881
882
|
font-weight: inherit;
|
|
882
883
|
color: inherit;
|
|
@@ -1129,7 +1130,10 @@
|
|
|
1129
1130
|
* タイプ別スタイル
|
|
1130
1131
|
* ============================================= */
|
|
1131
1132
|
/* type-password: セキュリティのため常にinputを表示(display-textは非表示) */
|
|
1132
|
-
|
|
1133
|
+
/* type-email/tel: オートフィルと display-text の競合を避けるため常にinputを表示 */
|
|
1134
|
+
.input--type-password,
|
|
1135
|
+
.input--type-email,
|
|
1136
|
+
.input--type-tel {
|
|
1133
1137
|
/* inputを常に表示(表示制御の非フォーカス時の不可視化を上書き) */
|
|
1134
1138
|
&:not(.input--focused) input {
|
|
1135
1139
|
opacity: 1;
|