@1money/component-ui 0.1.5-alpha.1 → 0.1.5-alpha.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.
|
@@ -204,12 +204,13 @@
|
|
|
204
204
|
}
|
|
205
205
|
.om-component-ui-table-stroke .om-component-ui-table-thead > tr > th.om-component-ui-table-cell--spacer,
|
|
206
206
|
.om-component-ui-table-stroke .om-component-ui-table-thead > tr > td.om-component-ui-table-cell--spacer,
|
|
207
|
-
.om-component-ui-table-stroke .om-component-ui-table-tbody > tr > td.om-component-ui-table-cell--spacer
|
|
207
|
+
.om-component-ui-table-stroke .om-component-ui-table-tbody > tr > td.om-component-ui-table-cell--spacer,
|
|
208
|
+
.om-component-ui-table-stroke .om-component-ui-table-tbody-virtual .om-component-ui-table-cell.om-component-ui-table-cell--spacer {
|
|
208
209
|
padding: 0;
|
|
209
210
|
border-bottom: none;
|
|
210
|
-
width: 16px;
|
|
211
|
-
max-width: 16px;
|
|
212
|
-
min-width: 16px;
|
|
211
|
+
width: var(--om-spacing-400, 16px);
|
|
212
|
+
max-width: var(--om-spacing-400, 16px);
|
|
213
|
+
min-width: var(--om-spacing-400, 16px);
|
|
213
214
|
}
|
|
214
215
|
.om-component-ui-table .om-component-ui-table-header-cell {
|
|
215
216
|
display: inline-flex;
|
|
@@ -315,19 +316,23 @@
|
|
|
315
316
|
transform: rotate(180deg);
|
|
316
317
|
}
|
|
317
318
|
.om-component-ui-table .om-component-ui-table-cell-content {
|
|
318
|
-
display: flex;
|
|
319
|
-
width: 100%;
|
|
319
|
+
display: inline-flex;
|
|
320
|
+
max-width: 100%;
|
|
320
321
|
min-width: 0;
|
|
321
|
-
gap:
|
|
322
|
+
gap: var(--om-spacing-100, 4px);
|
|
322
323
|
align-items: center;
|
|
324
|
+
vertical-align: middle;
|
|
323
325
|
}
|
|
324
326
|
.om-component-ui-table .om-component-ui-table-cell-content__text {
|
|
325
327
|
display: inline-flex;
|
|
326
|
-
flex: 1;
|
|
328
|
+
flex: 0 1 auto;
|
|
327
329
|
min-width: 0;
|
|
328
330
|
flex-direction: column;
|
|
329
331
|
gap: 0;
|
|
330
332
|
}
|
|
333
|
+
.om-component-ui-table .om-component-ui-table-cell-content__leading {
|
|
334
|
+
margin-inline-end: var(--om-spacing-100, 4px);
|
|
335
|
+
}
|
|
331
336
|
.om-component-ui-table .om-component-ui-table-cell-content__leading,
|
|
332
337
|
.om-component-ui-table .om-component-ui-table-cell-content__trailing {
|
|
333
338
|
flex-shrink: 0;
|