@globalbrain/sefirot 2.47.1 → 2.47.3
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.
|
@@ -84,23 +84,23 @@ function getErrorMsg(validation: Validatable) {
|
|
|
84
84
|
|
|
85
85
|
<style scoped lang="postcss">
|
|
86
86
|
.SInputBase.mini {
|
|
87
|
-
.label
|
|
88
|
-
.label-text
|
|
89
|
-
.label-
|
|
87
|
+
.label { padding-bottom: 6px; height: 22px; }
|
|
88
|
+
.label-text { font-size: var(--input-label-font-size, var(--input-mini-label-font-size)); }
|
|
89
|
+
.label-info { width: 14px; height: 14px; }
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
.SInputBase.small {
|
|
93
|
-
.label
|
|
94
|
-
.label-text
|
|
93
|
+
.label { padding-bottom: 8px; height: 24px; }
|
|
94
|
+
.label-text { font-size: var(--input-label-font-size, var(--input-small-label-font-size)); }
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
.SInputBase.medium {
|
|
98
|
-
.label
|
|
99
|
-
.label-text
|
|
98
|
+
.label { padding-bottom: 8px; height: 24px; }
|
|
99
|
+
.label-text { font-size: var(--input-label-font-size, var(--input-medium-label-font-size)); }
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
.SInputBase.has-error {
|
|
103
|
-
.label-text
|
|
103
|
+
.label-text {
|
|
104
104
|
color: var(--input-error-text-color);
|
|
105
105
|
}
|
|
106
106
|
}
|
|
@@ -155,6 +155,7 @@ function getErrorMsg(validation: Validatable) {
|
|
|
155
155
|
|
|
156
156
|
.help-error {
|
|
157
157
|
width: 100%;
|
|
158
|
+
max-width: 65ch;
|
|
158
159
|
margin: 0;
|
|
159
160
|
padding: 6px 0 0 0;
|
|
160
161
|
line-height: 18px;
|
|
@@ -165,6 +166,7 @@ function getErrorMsg(validation: Validatable) {
|
|
|
165
166
|
}
|
|
166
167
|
|
|
167
168
|
.help-text {
|
|
169
|
+
max-width: 65ch;
|
|
168
170
|
margin: 0;
|
|
169
171
|
padding: 4px 0 0;
|
|
170
172
|
line-height: 20px;
|