@fkui/design 5.36.3 → 5.37.2
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.
- package/lib/fkui-exp.css +11 -2
- package/lib/fkui-exp.min.css +1 -1
- package/lib/fkui-int.css +11 -2
- package/lib/fkui-int.min.css +1 -1
- package/package.json +5 -5
- package/src/components/table/_table.scss +10 -1
package/lib/fkui-exp.css
CHANGED
|
@@ -6584,9 +6584,18 @@ input[type=search]:focus,
|
|
|
6584
6584
|
padding-left: var(--f-button-discrete-table-column-action-padding-left, 0.571rem);
|
|
6585
6585
|
/* stylelint-enable declaration-block-no-redundant-longhand-properties */
|
|
6586
6586
|
min-width: 24px;
|
|
6587
|
+
width: -moz-max-content;
|
|
6588
|
+
width: max-content;
|
|
6587
6589
|
}
|
|
6588
|
-
.table tbody .table__column--action .
|
|
6589
|
-
margin: var(--f-button-
|
|
6590
|
+
.table tbody .table__column--action .button--tertiary {
|
|
6591
|
+
margin: var(--f-button-tertiary-table-column-action-margin, 0 0 0 0.5rem);
|
|
6592
|
+
min-width: 24px;
|
|
6593
|
+
width: -moz-max-content;
|
|
6594
|
+
width: max-content;
|
|
6595
|
+
}
|
|
6596
|
+
.table tbody .table__column--action .button--discrete .button__icon, .table tbody .table__column--action .button--text .button__icon, .table tbody .table__column--action .button--tertiary .button__icon {
|
|
6597
|
+
margin: var(--f-button-discrete-table-column-action-icon-margin, 0 2px 0 2px);
|
|
6598
|
+
transform: translate(0, 10%);
|
|
6590
6599
|
}
|
|
6591
6600
|
.table__column--text {
|
|
6592
6601
|
text-align: left;
|