@fkui/design 6.21.0 → 6.22.0
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.css +130 -40
- package/lib/fkui.min.css +1 -1
- package/package.json +5 -5
- package/src/components/calendar-day/_calendar-day.scss +15 -0
- package/src/components/chip/_chip.scss +11 -1
- package/src/components/combobox/_combobox.scss +6 -1
- package/src/components/contextmenu/_contextmenu.scss +2 -0
- package/src/components/dialogue-tree/_dialogue-tree.scss +0 -1
- package/src/components/table/_table.scss +31 -28
- package/src/components/table/_table_button.scss +1 -0
- package/src/components/table/_variables.scss +9 -9
- package/src/components/table-ng/_table-ng.scss +13 -0
- package/src/core/mixins/_focus.scss +1 -1
- package/src/core/mixins/_forcedcolors.scss +16 -0
- package/stylelint/rules/deprecated-variable.js +2 -2
package/lib/fkui.css
CHANGED
|
@@ -266,7 +266,7 @@ input[type=search]:focus,
|
|
|
266
266
|
[tabindex]:focus {
|
|
267
267
|
border-radius: 0;
|
|
268
268
|
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
|
|
269
|
-
outline:
|
|
269
|
+
outline: 3px solid transparent;
|
|
270
270
|
}
|
|
271
271
|
|
|
272
272
|
[tabindex="-1"]:focus {
|
|
@@ -1325,7 +1325,7 @@ input[type=search]:focus,
|
|
|
1325
1325
|
.button:active, .calendar-navbar__year-selector-button:active, .button:focus, .calendar-navbar__year-selector-button:focus {
|
|
1326
1326
|
border-radius: 0;
|
|
1327
1327
|
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
|
|
1328
|
-
outline:
|
|
1328
|
+
outline: 3px solid transparent;
|
|
1329
1329
|
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
1330
1330
|
border-color: var(--fkds-color-action-border-primary-default, #4a52b6);
|
|
1331
1331
|
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
@@ -1352,7 +1352,7 @@ input[type=search]:focus,
|
|
|
1352
1352
|
.button.button--primary:active, .button--primary.calendar-navbar__year-selector-button:active, .button.button--primary:focus, .button--primary.calendar-navbar__year-selector-button:focus {
|
|
1353
1353
|
border-radius: 0;
|
|
1354
1354
|
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
|
|
1355
|
-
outline:
|
|
1355
|
+
outline: 3px solid transparent;
|
|
1356
1356
|
background-color: var(--fkds-color-action-background-primary-hover, #3b4292);
|
|
1357
1357
|
border-color: transparent;
|
|
1358
1358
|
color: var(--fkds-color-action-text-inverted-default, #ffffff);
|
|
@@ -1379,7 +1379,7 @@ input[type=search]:focus,
|
|
|
1379
1379
|
.button.button--secondary:active, .button--secondary.calendar-navbar__year-selector-button:active, .button.button--secondary:focus, .button--secondary.calendar-navbar__year-selector-button:focus {
|
|
1380
1380
|
border-radius: 0;
|
|
1381
1381
|
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
|
|
1382
|
-
outline:
|
|
1382
|
+
outline: 3px solid transparent;
|
|
1383
1383
|
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
1384
1384
|
border-color: var(--fkds-color-action-border-primary-default, #4a52b6);
|
|
1385
1385
|
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
@@ -1411,7 +1411,7 @@ input[type=search]:focus,
|
|
|
1411
1411
|
.button.button--discrete:active, .button--discrete.calendar-navbar__year-selector-button:active, .button.button--text:active, .button--text.calendar-navbar__year-selector-button:active, .button.button--discrete:focus, .button--discrete.calendar-navbar__year-selector-button:focus, .button.button--text:focus, .button--text.calendar-navbar__year-selector-button:focus {
|
|
1412
1412
|
border-radius: 0;
|
|
1413
1413
|
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
|
|
1414
|
-
outline:
|
|
1414
|
+
outline: 3px solid transparent;
|
|
1415
1415
|
background-color: var(--f-background-button-discrete-hover, none);
|
|
1416
1416
|
border-color: transparent;
|
|
1417
1417
|
color: var(--f-text-color-button-discrete-hover, #3b4292);
|
|
@@ -1470,7 +1470,7 @@ input[type=search]:focus,
|
|
|
1470
1470
|
.button.button--discrete-inverted:active, .button--discrete-inverted.calendar-navbar__year-selector-button:active, .button.button--discrete-inverted:focus, .button--discrete-inverted.calendar-navbar__year-selector-button:focus {
|
|
1471
1471
|
border-radius: 0;
|
|
1472
1472
|
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
|
|
1473
|
-
outline:
|
|
1473
|
+
outline: 3px solid transparent;
|
|
1474
1474
|
background-color: transparent;
|
|
1475
1475
|
border-color: transparent;
|
|
1476
1476
|
color: var(--f-text-color-button-discrete-inverted-hover, #ffffff);
|
|
@@ -1509,7 +1509,7 @@ input[type=search]:focus,
|
|
|
1509
1509
|
.button.button--tertiary:active, .calendar-navbar__year-selector-button:active, .button.button--tertiary:focus, .calendar-navbar__year-selector-button:focus {
|
|
1510
1510
|
border-radius: 0;
|
|
1511
1511
|
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
|
|
1512
|
-
outline:
|
|
1512
|
+
outline: 3px solid transparent;
|
|
1513
1513
|
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
1514
1514
|
border-color: transparent;
|
|
1515
1515
|
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
@@ -1702,6 +1702,7 @@ input[type=search]:focus,
|
|
|
1702
1702
|
width: calc(var(--f-icon-size-small, 1rem) + 0.25rem);
|
|
1703
1703
|
}
|
|
1704
1704
|
|
|
1705
|
+
/* stylelint-disable no-invalid-position-declaration -- the selector is set when the mixin is included */
|
|
1705
1706
|
.calendar-day {
|
|
1706
1707
|
align-items: center;
|
|
1707
1708
|
display: inline-flex;
|
|
@@ -1726,9 +1727,19 @@ input[type=search]:focus,
|
|
|
1726
1727
|
.calendar-day--highlight.calendar-day--selected::before {
|
|
1727
1728
|
border: var(--f-border-width-medium, 2px) solid var(--fkds-color-border-inverted, #ffffff);
|
|
1728
1729
|
}
|
|
1730
|
+
@media (forced-colors: active) {
|
|
1731
|
+
.calendar-day--highlight.calendar-day--selected::before {
|
|
1732
|
+
border-color: highlightText;
|
|
1733
|
+
}
|
|
1734
|
+
}
|
|
1729
1735
|
.calendar-day--highlight:active:not(.calendar-day--highlight--disabled)::before {
|
|
1730
1736
|
border: var(--f-border-width-medium, 2px) solid var(--fkds-color-border-inverted, #ffffff);
|
|
1731
1737
|
}
|
|
1738
|
+
@media (forced-colors: active) {
|
|
1739
|
+
.calendar-day--highlight:active:not(.calendar-day--highlight--disabled)::before {
|
|
1740
|
+
border-color: highlightText;
|
|
1741
|
+
}
|
|
1742
|
+
}
|
|
1732
1743
|
.calendar-day--highlight.calendar-day--disabled {
|
|
1733
1744
|
position: relative;
|
|
1734
1745
|
}
|
|
@@ -1752,6 +1763,13 @@ input[type=search]:focus,
|
|
|
1752
1763
|
color: var(--fkds-color-text-inverted, #ffffff);
|
|
1753
1764
|
background-color: var(--fkds-color-select-background-primary-default, #4a52b6);
|
|
1754
1765
|
}
|
|
1766
|
+
@media (forced-colors: active) {
|
|
1767
|
+
.calendar-day--selected {
|
|
1768
|
+
background-color: highlight;
|
|
1769
|
+
color: highlightText;
|
|
1770
|
+
forced-color-adjust: none;
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1755
1773
|
.calendar-day--disabled {
|
|
1756
1774
|
position: relative;
|
|
1757
1775
|
}
|
|
@@ -1765,10 +1783,22 @@ input[type=search]:focus,
|
|
|
1765
1783
|
background-color: var(--fkds-color-select-background-primary-hover, #e5e5f5);
|
|
1766
1784
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
1767
1785
|
}
|
|
1786
|
+
@media (forced-colors: active) {
|
|
1787
|
+
.calendar-day:hover:not(.calendar-day--disabled, .calendar-day--selected), .calendar-day--hover:not(.calendar-day--disabled, .calendar-day--selected) {
|
|
1788
|
+
border: 2px solid highlight;
|
|
1789
|
+
}
|
|
1790
|
+
}
|
|
1768
1791
|
.calendar-day:active:not(.calendar-day--disabled), .calendar-day--active:not(.calendar-day--disabled) {
|
|
1769
1792
|
color: var(--fkds-color-text-inverted, #ffffff);
|
|
1770
1793
|
background-color: var(--fkds-color-select-background-primary-default, #4a52b6);
|
|
1771
1794
|
}
|
|
1795
|
+
@media (forced-colors: active) {
|
|
1796
|
+
.calendar-day:active:not(.calendar-day--disabled), .calendar-day--active:not(.calendar-day--disabled) {
|
|
1797
|
+
background-color: highlight;
|
|
1798
|
+
color: highlightText;
|
|
1799
|
+
forced-color-adjust: none;
|
|
1800
|
+
}
|
|
1801
|
+
}
|
|
1772
1802
|
|
|
1773
1803
|
.card {
|
|
1774
1804
|
padding: calc(1rem * var(--f-density-factor, 1)) 1rem;
|
|
@@ -2032,7 +2062,7 @@ input[type=search]:focus,
|
|
|
2032
2062
|
.checkbox input[type=checkbox]:focus + .checkbox__label {
|
|
2033
2063
|
border-radius: 0;
|
|
2034
2064
|
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
|
|
2035
|
-
outline:
|
|
2065
|
+
outline: 3px solid transparent;
|
|
2036
2066
|
}
|
|
2037
2067
|
|
|
2038
2068
|
.radio-button-group--chip .radio-button-group__label {
|
|
@@ -2051,6 +2081,11 @@ input[type=search]:focus,
|
|
|
2051
2081
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
2052
2082
|
cursor: not-allowed;
|
|
2053
2083
|
}
|
|
2084
|
+
@media (forced-colors: active) {
|
|
2085
|
+
.radio-button-group--chip .radio-button.disabled .radio-button__label {
|
|
2086
|
+
color: GrayText;
|
|
2087
|
+
}
|
|
2088
|
+
}
|
|
2054
2089
|
.radio-button-group--chip .radio-button__label {
|
|
2055
2090
|
display: flex;
|
|
2056
2091
|
align-items: center;
|
|
@@ -2078,11 +2113,23 @@ input[type=search]:focus,
|
|
|
2078
2113
|
background-color: var(--fkds-color-select-background-secondary-hover, #dbe9e2);
|
|
2079
2114
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2080
2115
|
}
|
|
2116
|
+
@media (forced-colors: active) {
|
|
2117
|
+
.radio-button-group--chip .radio-button__label:hover {
|
|
2118
|
+
border: var(--f-border-width-medium, 2px) solid highlight;
|
|
2119
|
+
}
|
|
2120
|
+
}
|
|
2081
2121
|
.radio-button-group--chip input[type=radio]:checked + .radio-button__label {
|
|
2082
2122
|
background: var(--fkds-color-select-background-secondary-default, #35805b);
|
|
2083
2123
|
border-color: transparent;
|
|
2084
2124
|
color: var(--fkds-color-text-inverted, #ffffff);
|
|
2085
2125
|
}
|
|
2126
|
+
@media (forced-colors: active) {
|
|
2127
|
+
.radio-button-group--chip input[type=radio]:checked + .radio-button__label {
|
|
2128
|
+
background-color: highlight;
|
|
2129
|
+
color: highlightText;
|
|
2130
|
+
forced-color-adjust: none;
|
|
2131
|
+
}
|
|
2132
|
+
}
|
|
2086
2133
|
.radio-button-group--chip input[type=radio]:focus + label.radio-button__label {
|
|
2087
2134
|
border-radius: 20px;
|
|
2088
2135
|
}
|
|
@@ -2118,6 +2165,11 @@ input[type=search]:focus,
|
|
|
2118
2165
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
2119
2166
|
cursor: not-allowed;
|
|
2120
2167
|
}
|
|
2168
|
+
@media (forced-colors: active) {
|
|
2169
|
+
.checkbox-group--chip .checkbox.disabled .checkbox__label {
|
|
2170
|
+
color: GrayText;
|
|
2171
|
+
}
|
|
2172
|
+
}
|
|
2121
2173
|
.checkbox-group--chip .checkbox__label {
|
|
2122
2174
|
display: flex;
|
|
2123
2175
|
align-items: center;
|
|
@@ -2145,11 +2197,23 @@ input[type=search]:focus,
|
|
|
2145
2197
|
background-color: var(--fkds-color-select-background-secondary-hover, #dbe9e2);
|
|
2146
2198
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2147
2199
|
}
|
|
2200
|
+
@media (forced-colors: active) {
|
|
2201
|
+
.checkbox-group--chip .checkbox__label:hover {
|
|
2202
|
+
border: var(--f-border-width-medium, 2px) solid highlight;
|
|
2203
|
+
}
|
|
2204
|
+
}
|
|
2148
2205
|
.checkbox-group--chip input[type=checkbox]:checked + .checkbox__label {
|
|
2149
2206
|
background: var(--fkds-color-select-background-secondary-default, #35805b);
|
|
2150
2207
|
border-color: transparent;
|
|
2151
2208
|
color: var(--fkds-color-text-inverted, #ffffff);
|
|
2152
2209
|
}
|
|
2210
|
+
@media (forced-colors: active) {
|
|
2211
|
+
.checkbox-group--chip input[type=checkbox]:checked + .checkbox__label {
|
|
2212
|
+
background-color: highlight;
|
|
2213
|
+
color: highlightText;
|
|
2214
|
+
forced-color-adjust: none;
|
|
2215
|
+
}
|
|
2216
|
+
}
|
|
2153
2217
|
.checkbox-group--chip input[type=checkbox]:focus + label.checkbox__label {
|
|
2154
2218
|
border-radius: 20px;
|
|
2155
2219
|
}
|
|
@@ -2207,15 +2271,27 @@ input[type=search]:focus,
|
|
|
2207
2271
|
padding: 0.75rem;
|
|
2208
2272
|
white-space: nowrap;
|
|
2209
2273
|
}
|
|
2210
|
-
.calendar__year-selector__year:hover, .combobox__listbox__option:hover {
|
|
2274
|
+
.calendar__year-selector__year:hover:not(.calendar__year-selector__year--highlight):not(.combobox__listbox__option--highlight), .combobox__listbox__option:hover:not(.calendar__year-selector__year--highlight):not(.combobox__listbox__option--highlight) {
|
|
2211
2275
|
background-color: var(--fkds-color-select-background-primary-hover, #e5e5f5);
|
|
2212
2276
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2213
2277
|
}
|
|
2278
|
+
@media (forced-colors: active) {
|
|
2279
|
+
.calendar__year-selector__year:hover:not(.calendar__year-selector__year--highlight):not(.combobox__listbox__option--highlight), .combobox__listbox__option:hover:not(.calendar__year-selector__year--highlight):not(.combobox__listbox__option--highlight) {
|
|
2280
|
+
outline: 2px solid highlight;
|
|
2281
|
+
}
|
|
2282
|
+
}
|
|
2214
2283
|
.calendar__year-selector__year--highlight, .combobox__listbox__option--highlight {
|
|
2215
2284
|
background-color: var(--fkds-color-select-background-primary-default, #4a52b6);
|
|
2216
2285
|
color: var(--fkds-color-text-inverted, #ffffff);
|
|
2217
2286
|
font-weight: var(--f-font-weight-medium, 700);
|
|
2218
2287
|
}
|
|
2288
|
+
@media (forced-colors: active) {
|
|
2289
|
+
.calendar__year-selector__year--highlight, .combobox__listbox__option--highlight {
|
|
2290
|
+
background-color: highlight;
|
|
2291
|
+
color: highlightText;
|
|
2292
|
+
forced-color-adjust: none;
|
|
2293
|
+
}
|
|
2294
|
+
}
|
|
2219
2295
|
|
|
2220
2296
|
.combobox__button {
|
|
2221
2297
|
background: inherit;
|
|
@@ -2256,6 +2332,11 @@ input[type=search]:focus,
|
|
|
2256
2332
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2257
2333
|
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
2258
2334
|
}
|
|
2335
|
+
@media (forced-colors: active) {
|
|
2336
|
+
.contextmenu__list__item:hover {
|
|
2337
|
+
outline: 2px solid highlight;
|
|
2338
|
+
}
|
|
2339
|
+
}
|
|
2259
2340
|
@media (min-width: 640px) {
|
|
2260
2341
|
.contextmenu__list__item {
|
|
2261
2342
|
white-space: nowrap;
|
|
@@ -2388,7 +2469,6 @@ input[type=search]:focus,
|
|
|
2388
2469
|
.dialogue-tree__list-item button .icon {
|
|
2389
2470
|
flex-shrink: 0;
|
|
2390
2471
|
margin-left: 1.25rem;
|
|
2391
|
-
color: currentcolor;
|
|
2392
2472
|
}
|
|
2393
2473
|
|
|
2394
2474
|
.entrypoint {
|
|
@@ -2834,7 +2914,7 @@ input[type=search]:focus,
|
|
|
2834
2914
|
.file-selector input[type=file]:focus + label {
|
|
2835
2915
|
border-radius: 0;
|
|
2836
2916
|
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
|
|
2837
|
-
outline:
|
|
2917
|
+
outline: 3px solid transparent;
|
|
2838
2918
|
}
|
|
2839
2919
|
.file-selector label {
|
|
2840
2920
|
cursor: pointer;
|
|
@@ -4550,7 +4630,7 @@ input[type=search]:focus,
|
|
|
4550
4630
|
.radio-button input[type=radio]:focus + label {
|
|
4551
4631
|
border-radius: 0;
|
|
4552
4632
|
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
|
|
4553
|
-
outline:
|
|
4633
|
+
outline: 3px solid transparent;
|
|
4554
4634
|
}
|
|
4555
4635
|
|
|
4556
4636
|
.radio-button-group__content {
|
|
@@ -4728,41 +4808,41 @@ input[type=search]:focus,
|
|
|
4728
4808
|
}
|
|
4729
4809
|
|
|
4730
4810
|
.table tbody .table__expandable-row, .table tbody .table__row--normal, .table tbody .table__row {
|
|
4731
|
-
background: var(--
|
|
4732
|
-
color: var(--
|
|
4811
|
+
background: var(--fkds-color-background-primary, #ffffff);
|
|
4812
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4733
4813
|
}
|
|
4734
4814
|
|
|
4735
4815
|
.table--striped tbody .table__row:nth-child(even), .table tbody .table__row--striped {
|
|
4736
|
-
background: var(--
|
|
4737
|
-
color: var(--
|
|
4816
|
+
background: var(--fkds-color-background-secondary, #f4f4f4);
|
|
4817
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4738
4818
|
}
|
|
4739
4819
|
|
|
4740
4820
|
.table--hover tbody .table__row:hover, .table tbody .table__row--hover {
|
|
4741
|
-
background: var(--
|
|
4742
|
-
color: var(--
|
|
4743
|
-
outline: 1px solid var(--
|
|
4821
|
+
background: var(--fkds-color-select-background-primary-hover, #e5e5f5);
|
|
4822
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4823
|
+
outline: 1px solid var(--fkds-color-border-primary, #8d8e91);
|
|
4744
4824
|
}
|
|
4745
4825
|
|
|
4746
4826
|
.table tbody .table__row:focus-within, .table tbody .table__row--focus-within {
|
|
4747
|
-
background: var(--
|
|
4748
|
-
color: var(--
|
|
4827
|
+
background: var(--fkds-color-select-background-primary-hover, #e5e5f5);
|
|
4828
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4749
4829
|
}
|
|
4750
4830
|
|
|
4751
4831
|
.table tbody .table__row:focus, .table tbody .table__row--focus {
|
|
4752
|
-
background: var(--
|
|
4753
|
-
color: var(--
|
|
4754
|
-
outline: 2px solid var(--
|
|
4832
|
+
background: var(--fkds-color-select-background-primary-hover, #e5e5f5);
|
|
4833
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4834
|
+
outline: 2px solid var(--fkds-color-border-strong, #5f6165);
|
|
4755
4835
|
box-shadow: none;
|
|
4756
4836
|
}
|
|
4757
4837
|
|
|
4758
4838
|
.table--hover tbody .table__row:hover.table__row--active, .table--striped tbody .table__row:nth-child(even).table__row--active, .table tbody .table__row--active, .table tbody .table__row:focus.table__row--active, .table tbody .table__row--focus.table__row--active, .table tbody .table__row:focus-within.table__row--active, .table tbody .table__row--focus-within.table__row--active {
|
|
4759
|
-
background: var(--
|
|
4760
|
-
color: var(--
|
|
4839
|
+
background: var(--fkds-color-select-background-primary-hover, #e5e5f5);
|
|
4840
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4761
4841
|
}
|
|
4762
4842
|
|
|
4763
4843
|
.table tbody .table__row--expanded-border td,
|
|
4764
4844
|
.table tbody .table__row--expanded-border th {
|
|
4765
|
-
border-bottom-color: var(--
|
|
4845
|
+
border-bottom-color: var(--fkds-color-border-weak, #ddddde);
|
|
4766
4846
|
}
|
|
4767
4847
|
|
|
4768
4848
|
.table tbody .table__row--expandable {
|
|
@@ -4778,12 +4858,12 @@ input[type=search]:focus,
|
|
|
4778
4858
|
border: 2px solid transparent;
|
|
4779
4859
|
}
|
|
4780
4860
|
.table:focus {
|
|
4781
|
-
border-color: var(--
|
|
4861
|
+
border-color: var(--fkds-color-border-strong, #5f6165);
|
|
4782
4862
|
box-shadow: none;
|
|
4783
4863
|
}
|
|
4784
4864
|
.table caption {
|
|
4785
4865
|
background: transparent;
|
|
4786
|
-
color: var(--
|
|
4866
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4787
4867
|
font-size: var(--f-font-size-standard, 1rem);
|
|
4788
4868
|
font-weight: var(--f-font-weight-medium, 700);
|
|
4789
4869
|
line-height: var(--f-line-height-large, 1.5);
|
|
@@ -4792,10 +4872,10 @@ input[type=search]:focus,
|
|
|
4792
4872
|
text-align: left;
|
|
4793
4873
|
}
|
|
4794
4874
|
.table thead th {
|
|
4795
|
-
background: var(--
|
|
4796
|
-
border-bottom: 2px solid var(--
|
|
4797
|
-
border-right: 1px solid var(--
|
|
4798
|
-
color: var(--
|
|
4875
|
+
background: var(--fkds-color-background-secondary, #f4f4f4);
|
|
4876
|
+
border-bottom: 2px solid var(--fkds-color-border-primary, #8d8e91);
|
|
4877
|
+
border-right: 1px solid var(--fkds-color-border-primary, #8d8e91);
|
|
4878
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4799
4879
|
font-weight: var(--f-font-weight-medium, 700);
|
|
4800
4880
|
line-height: var(--f-line-height-large, 1.5);
|
|
4801
4881
|
padding: calc(0.25rem * var(--f-density-factor, 1)) 0.5rem;
|
|
@@ -4806,13 +4886,12 @@ input[type=search]:focus,
|
|
|
4806
4886
|
border-right: none;
|
|
4807
4887
|
}
|
|
4808
4888
|
.table thead th .table__column__header__icon {
|
|
4809
|
-
color: var(--f-icon-color-table-header, #1b1e23);
|
|
4810
4889
|
height: var(--f-icon-size-x-small, 0.75rem);
|
|
4811
4890
|
width: var(--f-icon-size-x-small, 0.75rem);
|
|
4812
4891
|
min-width: var(--f-icon-size-x-small, 0.75rem);
|
|
4813
4892
|
}
|
|
4814
4893
|
.table thead th .table__column__header__icon--discrete {
|
|
4815
|
-
color: var(--
|
|
4894
|
+
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
4816
4895
|
}
|
|
4817
4896
|
.table thead .table__column--numeric {
|
|
4818
4897
|
text-align: right;
|
|
@@ -4823,7 +4902,7 @@ input[type=search]:focus,
|
|
|
4823
4902
|
.table tbody td,
|
|
4824
4903
|
.table tbody th {
|
|
4825
4904
|
padding: calc(var(--f-table-body-row-padding, 0.5rem) * var(--f-density-factor, 1)) var(--f-table-body-row-padding, 0.5rem);
|
|
4826
|
-
border-bottom: 1px solid var(--
|
|
4905
|
+
border-bottom: 1px solid var(--fkds-color-border-primary, #8d8e91);
|
|
4827
4906
|
vertical-align: top;
|
|
4828
4907
|
}
|
|
4829
4908
|
.table tbody td {
|
|
@@ -4831,7 +4910,7 @@ input[type=search]:focus,
|
|
|
4831
4910
|
font-weight: var(--f-font-weight-normal, 400);
|
|
4832
4911
|
}
|
|
4833
4912
|
.table tbody th {
|
|
4834
|
-
border-right: 1px solid var(--
|
|
4913
|
+
border-right: 1px solid var(--fkds-color-border-primary, #8d8e91);
|
|
4835
4914
|
font-weight: var(--f-font-weight-medium, 700);
|
|
4836
4915
|
line-height: calc(1.5rem * var(--f-density-factor, 1));
|
|
4837
4916
|
}
|
|
@@ -4876,7 +4955,7 @@ input[type=search]:focus,
|
|
|
4876
4955
|
.table__column__description {
|
|
4877
4956
|
display: block;
|
|
4878
4957
|
background: transparent;
|
|
4879
|
-
color: var(--
|
|
4958
|
+
color: var(--fkds-color-text-secondary, #5f6165);
|
|
4880
4959
|
font-weight: var(--f-font-weight-normal, 400);
|
|
4881
4960
|
}
|
|
4882
4961
|
.table--selectable .table__row td:hover,
|
|
@@ -4916,7 +4995,7 @@ input[type=search]:focus,
|
|
|
4916
4995
|
left: 0.25rem;
|
|
4917
4996
|
}
|
|
4918
4997
|
.table__expand-icon {
|
|
4919
|
-
color: var(--
|
|
4998
|
+
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
4920
4999
|
background: transparent;
|
|
4921
5000
|
border: 0;
|
|
4922
5001
|
flex: 0 0 auto;
|
|
@@ -4928,6 +5007,11 @@ input[type=search]:focus,
|
|
|
4928
5007
|
align-items: center;
|
|
4929
5008
|
justify-content: center;
|
|
4930
5009
|
}
|
|
5010
|
+
@media (forced-colors: active) {
|
|
5011
|
+
.table__expand-icon {
|
|
5012
|
+
color: ButtonText;
|
|
5013
|
+
}
|
|
5014
|
+
}
|
|
4931
5015
|
|
|
4932
5016
|
.table__anchor {
|
|
4933
5017
|
cursor: pointer;
|
|
@@ -4958,7 +5042,7 @@ input[type=search]:focus,
|
|
|
4958
5042
|
.table__button:active, .table__button:focus {
|
|
4959
5043
|
border-radius: 0;
|
|
4960
5044
|
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
|
|
4961
|
-
outline:
|
|
5045
|
+
outline: 3px solid transparent;
|
|
4962
5046
|
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
4963
5047
|
border-color: transparent;
|
|
4964
5048
|
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
@@ -4979,6 +5063,7 @@ input[type=search]:focus,
|
|
|
4979
5063
|
margin: var(--f-button-tertiary-table-column-action-margin, 0 0 0 0.5rem);
|
|
4980
5064
|
width: -moz-max-content;
|
|
4981
5065
|
width: max-content;
|
|
5066
|
+
border: none;
|
|
4982
5067
|
}
|
|
4983
5068
|
.table__button .button__icon {
|
|
4984
5069
|
margin: var(--f-button-tertiary-table-column-action-icon-margin, 0 8px 0 2px);
|
|
@@ -5025,6 +5110,11 @@ input[type=search]:focus,
|
|
|
5025
5110
|
.table-ng tbody .table-ng__row--empty {
|
|
5026
5111
|
text-align: center;
|
|
5027
5112
|
}
|
|
5113
|
+
.table-ng__column__description {
|
|
5114
|
+
background: transparent;
|
|
5115
|
+
color: var(--f-text-color-discrete, #5f6165);
|
|
5116
|
+
font-weight: var(--f-font-weight-normal, 400);
|
|
5117
|
+
}
|
|
5028
5118
|
.table-ng--striped tbody .table-ng__row:nth-child(even) {
|
|
5029
5119
|
background: var(--f-background-grid-striped, #f4f4f4);
|
|
5030
5120
|
color: var(--f-text-color-default, #1b1e23);
|