@visns-studio/visns-components 4.3.11 → 4.3.12
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.
|
@@ -691,7 +691,16 @@ select:not(:placeholder-shown) + .fi__span {
|
|
|
691
691
|
padding: 0;
|
|
692
692
|
}
|
|
693
693
|
|
|
694
|
-
.contentTable th
|
|
694
|
+
.contentTable th {
|
|
695
|
+
font-size: 0.95em;
|
|
696
|
+
padding: 8px 15px;
|
|
697
|
+
color: var(--table-text-color, var(--paragraph-color));
|
|
698
|
+
border-right: 1px solid var(--table-border);
|
|
699
|
+
line-height: 1;
|
|
700
|
+
border-spacing: 0;
|
|
701
|
+
border-collapse: collapse;
|
|
702
|
+
}
|
|
703
|
+
|
|
695
704
|
.contentTable td {
|
|
696
705
|
font-size: 0.95em;
|
|
697
706
|
padding: 8px 15px;
|
|
@@ -176,8 +176,7 @@ input[type='file']:hover {
|
|
|
176
176
|
padding: 0;
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
-
.contentTable th
|
|
180
|
-
.contentTable td {
|
|
179
|
+
.contentTable th {
|
|
181
180
|
font-size: 0.95em;
|
|
182
181
|
padding: 8px 15px;
|
|
183
182
|
color: var(--table-text-color, var(--paragraph-color));
|
|
@@ -187,6 +186,16 @@ input[type='file']:hover {
|
|
|
187
186
|
border-collapse: collapse;
|
|
188
187
|
}
|
|
189
188
|
|
|
189
|
+
.contentTable td {
|
|
190
|
+
font-size: 0.95em;
|
|
191
|
+
padding: 8px 15px;
|
|
192
|
+
color: var(--paragraph-color);
|
|
193
|
+
border-right: 1px solid var(--table-border);
|
|
194
|
+
line-height: 1;
|
|
195
|
+
border-spacing: 0;
|
|
196
|
+
border-collapse: collapse;
|
|
197
|
+
}
|
|
198
|
+
|
|
190
199
|
.contentTable th:last-of-type,
|
|
191
200
|
.contentTable td:last-of-type,
|
|
192
201
|
.contentTable th:last-child,
|
package/package.json
CHANGED