@fkui/design 6.39.0 → 6.40.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 +127 -60
- package/lib/fkui.min.css +1 -1
- package/package.json +5 -5
- package/src/components/_index.scss +2 -0
- package/src/components/button/_button.scss +8 -3
- package/src/components/datepicker-field/_datepicker-field.scss +1 -0
- package/src/components/definition-list/_definition-list.scss +23 -0
- package/src/components/definition-list/_index.scss +1 -0
- package/src/components/definition-list/_variables.scss +1 -0
- package/src/components/dialogue-tree/_dialogue-tree.scss +1 -1
- package/src/components/file-item/_file-item.scss +2 -1
- package/src/components/file-selector/_file-selector.scss +10 -5
- package/src/components/paginator/_paginator.scss +1 -1
- package/src/components/sort-filter-dataset/_sort-filter-dataset.scss +4 -58
- package/src/components/sort-filter-dataset/_variables.scss +1 -2
- package/src/components/table-ng/_cell.scss +9 -6
- package/src/components/table-ng/_column.scss +7 -2
- package/src/components/table-ng/_variables.scss +3 -0
- package/src/core/mixins/_button.scss +11 -0
package/lib/fkui.css
CHANGED
|
@@ -1327,10 +1327,20 @@ input[type=search]:focus,
|
|
|
1327
1327
|
border-color: var(--fkds-color-action-border-primary-default, #4a52b6);
|
|
1328
1328
|
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
1329
1329
|
}
|
|
1330
|
-
.button.disabled, .disabled.calendar-navbar__year-selector-button, .button.disabled:hover, .button:disabled, .calendar-navbar__year-selector-button:disabled, .button:disabled:hover, .button.button--disabled, .button--disabled.calendar-navbar__year-selector-button, .button.button--disabled:hover {
|
|
1330
|
+
.button.disabled, .disabled.calendar-navbar__year-selector-button, .button.disabled:hover, .button:disabled, .calendar-navbar__year-selector-button:disabled, .button:disabled:hover, .button[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button, .button[aria-disabled=true]:hover, .button.button--disabled, .button--disabled.calendar-navbar__year-selector-button, .button.button--disabled:hover {
|
|
1331
1331
|
background-color: var(--fkds-color-background-disabled, #f4f4f4);
|
|
1332
1332
|
border-color: var(--fkds-color-border-disabled, #8d8e91);
|
|
1333
1333
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
1334
|
+
pointer-events: none;
|
|
1335
|
+
}
|
|
1336
|
+
.button[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1337
|
+
pointer-events: none;
|
|
1338
|
+
}
|
|
1339
|
+
@media (forced-colors: active) {
|
|
1340
|
+
.button[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1341
|
+
color: GrayText;
|
|
1342
|
+
border-color: GrayText;
|
|
1343
|
+
}
|
|
1334
1344
|
}
|
|
1335
1345
|
.button.button--primary, .button--primary.calendar-navbar__year-selector-button {
|
|
1336
1346
|
background-color: var(--fkds-color-action-background-primary-default, #4a52b6);
|
|
@@ -1354,10 +1364,20 @@ input[type=search]:focus,
|
|
|
1354
1364
|
border-color: transparent;
|
|
1355
1365
|
color: var(--fkds-color-action-text-inverted-default, #fff);
|
|
1356
1366
|
}
|
|
1357
|
-
.button.button--primary.disabled, .button--primary.disabled.calendar-navbar__year-selector-button, .button.button--primary.disabled:hover, .button.button--primary:disabled, .button--primary.calendar-navbar__year-selector-button:disabled, .button.button--primary:disabled:hover, .button.button--primary.button--disabled, .button--primary.button--disabled.calendar-navbar__year-selector-button, .button.button--primary.button--disabled:hover {
|
|
1367
|
+
.button.button--primary.disabled, .button--primary.disabled.calendar-navbar__year-selector-button, .button.button--primary.disabled:hover, .button.button--primary:disabled, .button--primary.calendar-navbar__year-selector-button:disabled, .button.button--primary:disabled:hover, .button.button--primary[aria-disabled=true], .button--primary[aria-disabled=true].calendar-navbar__year-selector-button, .button.button--primary[aria-disabled=true]:hover, .button.button--primary.button--disabled, .button--primary.button--disabled.calendar-navbar__year-selector-button, .button.button--primary.button--disabled:hover {
|
|
1358
1368
|
background-color: var(--fkds-color-background-disabled, #f4f4f4);
|
|
1359
1369
|
border-color: var(--fkds-color-border-disabled, #8d8e91);
|
|
1360
1370
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
1371
|
+
pointer-events: none;
|
|
1372
|
+
}
|
|
1373
|
+
.button.button--primary[aria-disabled=true], .button--primary[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1374
|
+
pointer-events: none;
|
|
1375
|
+
}
|
|
1376
|
+
@media (forced-colors: active) {
|
|
1377
|
+
.button.button--primary[aria-disabled=true], .button--primary[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1378
|
+
color: GrayText;
|
|
1379
|
+
border-color: GrayText;
|
|
1380
|
+
}
|
|
1361
1381
|
}
|
|
1362
1382
|
.button.button--secondary, .button--secondary.calendar-navbar__year-selector-button {
|
|
1363
1383
|
background-color: var(--fkds-color-action-background-secondary-default, #f5f6fa);
|
|
@@ -1381,10 +1401,20 @@ input[type=search]:focus,
|
|
|
1381
1401
|
border-color: var(--fkds-color-action-border-primary-default, #4a52b6);
|
|
1382
1402
|
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
1383
1403
|
}
|
|
1384
|
-
.button.button--secondary.disabled, .button--secondary.disabled.calendar-navbar__year-selector-button, .button.button--secondary.disabled:hover, .button.button--secondary:disabled, .button--secondary.calendar-navbar__year-selector-button:disabled, .button.button--secondary:disabled:hover, .button.button--secondary.button--disabled, .button--secondary.button--disabled.calendar-navbar__year-selector-button, .button.button--secondary.button--disabled:hover {
|
|
1404
|
+
.button.button--secondary.disabled, .button--secondary.disabled.calendar-navbar__year-selector-button, .button.button--secondary.disabled:hover, .button.button--secondary:disabled, .button--secondary.calendar-navbar__year-selector-button:disabled, .button.button--secondary:disabled:hover, .button.button--secondary[aria-disabled=true], .button--secondary[aria-disabled=true].calendar-navbar__year-selector-button, .button.button--secondary[aria-disabled=true]:hover, .button.button--secondary.button--disabled, .button--secondary.button--disabled.calendar-navbar__year-selector-button, .button.button--secondary.button--disabled:hover {
|
|
1385
1405
|
background-color: var(--fkds-color-background-disabled, #f4f4f4);
|
|
1386
1406
|
border-color: var(--fkds-color-border-disabled, #8d8e91);
|
|
1387
1407
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
1408
|
+
pointer-events: none;
|
|
1409
|
+
}
|
|
1410
|
+
.button.button--secondary[aria-disabled=true], .button--secondary[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1411
|
+
pointer-events: none;
|
|
1412
|
+
}
|
|
1413
|
+
@media (forced-colors: active) {
|
|
1414
|
+
.button.button--secondary[aria-disabled=true], .button--secondary[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1415
|
+
color: GrayText;
|
|
1416
|
+
border-color: GrayText;
|
|
1417
|
+
}
|
|
1388
1418
|
}
|
|
1389
1419
|
.button.button--discrete, .button--discrete.calendar-navbar__year-selector-button, .button.button--text, .button--text.calendar-navbar__year-selector-button {
|
|
1390
1420
|
width: inherit;
|
|
@@ -1414,10 +1444,20 @@ input[type=search]:focus,
|
|
|
1414
1444
|
border-color: transparent;
|
|
1415
1445
|
color: var(--fkds-color-action-text-primary-hover, #3b4292);
|
|
1416
1446
|
}
|
|
1417
|
-
.button.button--discrete.disabled, .button--discrete.disabled.calendar-navbar__year-selector-button, .button.disabled.button--text, .disabled.button--text.calendar-navbar__year-selector-button, .button.button--discrete.disabled:hover, .button.button--discrete:disabled, .button--discrete.calendar-navbar__year-selector-button:disabled, .button.button--text:disabled, .button--text.calendar-navbar__year-selector-button:disabled, .button.button--discrete:disabled:hover, .button.button--discrete.button--disabled, .button--discrete.button--disabled.calendar-navbar__year-selector-button, .button.button--disabled.button--text, .button--disabled.button--text.calendar-navbar__year-selector-button, .button.button--discrete.button--disabled:hover {
|
|
1447
|
+
.button.button--discrete.disabled, .button--discrete.disabled.calendar-navbar__year-selector-button, .button.disabled.button--text, .disabled.button--text.calendar-navbar__year-selector-button, .button.button--discrete.disabled:hover, .button.button--discrete:disabled, .button--discrete.calendar-navbar__year-selector-button:disabled, .button.button--text:disabled, .button--text.calendar-navbar__year-selector-button:disabled, .button.button--discrete:disabled:hover, .button.button--discrete[aria-disabled=true], .button--discrete[aria-disabled=true].calendar-navbar__year-selector-button, .button[aria-disabled=true].button--text, [aria-disabled=true].button--text.calendar-navbar__year-selector-button, .button.button--discrete[aria-disabled=true]:hover, .button.button--discrete.button--disabled, .button--discrete.button--disabled.calendar-navbar__year-selector-button, .button.button--disabled.button--text, .button--disabled.button--text.calendar-navbar__year-selector-button, .button.button--discrete.button--disabled:hover {
|
|
1418
1448
|
background-color: transparent;
|
|
1419
1449
|
border-color: transparent;
|
|
1420
1450
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
1451
|
+
pointer-events: none;
|
|
1452
|
+
}
|
|
1453
|
+
.button.button--discrete[aria-disabled=true], .button--discrete[aria-disabled=true].calendar-navbar__year-selector-button, .button[aria-disabled=true].button--text, [aria-disabled=true].button--text.calendar-navbar__year-selector-button {
|
|
1454
|
+
pointer-events: none;
|
|
1455
|
+
}
|
|
1456
|
+
@media (forced-colors: active) {
|
|
1457
|
+
.button.button--discrete[aria-disabled=true], .button--discrete[aria-disabled=true].calendar-navbar__year-selector-button, .button[aria-disabled=true].button--text, [aria-disabled=true].button--text.calendar-navbar__year-selector-button {
|
|
1458
|
+
color: GrayText;
|
|
1459
|
+
border-color: GrayText;
|
|
1460
|
+
}
|
|
1421
1461
|
}
|
|
1422
1462
|
@media (max-width: 639.98px) {
|
|
1423
1463
|
.button.button--discrete, .button--discrete.calendar-navbar__year-selector-button, .button.button--text, .button--text.calendar-navbar__year-selector-button {
|
|
@@ -1476,10 +1516,20 @@ input[type=search]:focus,
|
|
|
1476
1516
|
border-color: transparent;
|
|
1477
1517
|
color: var(--fkds-color-action-text-inverted-hover, #fff);
|
|
1478
1518
|
}
|
|
1479
|
-
.button.button--discrete-inverted.disabled, .button--discrete-inverted.disabled.calendar-navbar__year-selector-button, .button.button--discrete-inverted.disabled:hover, .button.button--discrete-inverted:disabled, .button--discrete-inverted.calendar-navbar__year-selector-button:disabled, .button.button--discrete-inverted:disabled:hover, .button.button--discrete-inverted.button--disabled, .button--discrete-inverted.button--disabled.calendar-navbar__year-selector-button, .button.button--discrete-inverted.button--disabled:hover {
|
|
1519
|
+
.button.button--discrete-inverted.disabled, .button--discrete-inverted.disabled.calendar-navbar__year-selector-button, .button.button--discrete-inverted.disabled:hover, .button.button--discrete-inverted:disabled, .button--discrete-inverted.calendar-navbar__year-selector-button:disabled, .button.button--discrete-inverted:disabled:hover, .button.button--discrete-inverted[aria-disabled=true], .button--discrete-inverted[aria-disabled=true].calendar-navbar__year-selector-button, .button.button--discrete-inverted[aria-disabled=true]:hover, .button.button--discrete-inverted.button--disabled, .button--discrete-inverted.button--disabled.calendar-navbar__year-selector-button, .button.button--discrete-inverted.button--disabled:hover {
|
|
1480
1520
|
background-color: transparent;
|
|
1481
1521
|
border-color: transparent;
|
|
1482
1522
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
1523
|
+
pointer-events: none;
|
|
1524
|
+
}
|
|
1525
|
+
.button.button--discrete-inverted[aria-disabled=true], .button--discrete-inverted[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1526
|
+
pointer-events: none;
|
|
1527
|
+
}
|
|
1528
|
+
@media (forced-colors: active) {
|
|
1529
|
+
.button.button--discrete-inverted[aria-disabled=true], .button--discrete-inverted[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1530
|
+
color: GrayText;
|
|
1531
|
+
border-color: GrayText;
|
|
1532
|
+
}
|
|
1483
1533
|
}
|
|
1484
1534
|
@media (max-width: 639.98px) {
|
|
1485
1535
|
.button.button--discrete-inverted, .button--discrete-inverted.calendar-navbar__year-selector-button {
|
|
@@ -1515,10 +1565,20 @@ input[type=search]:focus,
|
|
|
1515
1565
|
border-color: transparent;
|
|
1516
1566
|
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
1517
1567
|
}
|
|
1518
|
-
.button.button--tertiary.disabled, .disabled.calendar-navbar__year-selector-button, .button.button--tertiary.disabled:hover, .button.button--tertiary:disabled, .calendar-navbar__year-selector-button:disabled, .button.button--tertiary:disabled:hover, .button.button--tertiary.button--disabled, .button--disabled.calendar-navbar__year-selector-button, .button.button--tertiary.button--disabled:hover {
|
|
1568
|
+
.button.button--tertiary.disabled, .disabled.calendar-navbar__year-selector-button, .button.button--tertiary.disabled:hover, .button.button--tertiary:disabled, .calendar-navbar__year-selector-button:disabled, .button.button--tertiary:disabled:hover, .button.button--tertiary[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button, .button.button--tertiary[aria-disabled=true]:hover, .button.button--tertiary.button--disabled, .button--disabled.calendar-navbar__year-selector-button, .button.button--tertiary.button--disabled:hover {
|
|
1519
1569
|
background-color: transparent;
|
|
1520
1570
|
border-color: transparent;
|
|
1521
1571
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
1572
|
+
pointer-events: none;
|
|
1573
|
+
}
|
|
1574
|
+
.button.button--tertiary[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1575
|
+
pointer-events: none;
|
|
1576
|
+
}
|
|
1577
|
+
@media (forced-colors: active) {
|
|
1578
|
+
.button.button--tertiary[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1579
|
+
color: GrayText;
|
|
1580
|
+
border-color: GrayText;
|
|
1581
|
+
}
|
|
1522
1582
|
}
|
|
1523
1583
|
@media (max-width: 639.98px) {
|
|
1524
1584
|
.button.button--tertiary, .calendar-navbar__year-selector-button {
|
|
@@ -1531,7 +1591,7 @@ input[type=search]:focus,
|
|
|
1531
1591
|
.button.button--tertiary--black:hover, .calendar-navbar__year-selector-button:hover, .button.button--tertiary--black:active, .calendar-navbar__year-selector-button:active, .button.button--tertiary--black:focus, .calendar-navbar__year-selector-button:focus {
|
|
1532
1592
|
color: var(--fkds-color-action-text-secondary-default, #1b1e23);
|
|
1533
1593
|
}
|
|
1534
|
-
.button.button--tertiary:disabled, .calendar-navbar__year-selector-button:disabled {
|
|
1594
|
+
.button.button--tertiary:disabled, .calendar-navbar__year-selector-button:disabled, .button.button--tertiary[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1535
1595
|
border: none;
|
|
1536
1596
|
}
|
|
1537
1597
|
.button.button--tertiary--inverted, .button--tertiary--inverted.calendar-navbar__year-selector-button {
|
|
@@ -1541,7 +1601,7 @@ input[type=search]:focus,
|
|
|
1541
1601
|
color: var(--fkds-color-action-text-inverted-focus, #fff);
|
|
1542
1602
|
background-color: transparent;
|
|
1543
1603
|
}
|
|
1544
|
-
.button.button--tertiary--inverted:disabled, .button--tertiary--inverted.calendar-navbar__year-selector-button:disabled {
|
|
1604
|
+
.button.button--tertiary--inverted:disabled, .button--tertiary--inverted.calendar-navbar__year-selector-button:disabled, .button.button--tertiary--inverted[aria-disabled=true], .button--tertiary--inverted[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1545
1605
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
1546
1606
|
border: none;
|
|
1547
1607
|
border-width: 0;
|
|
@@ -1552,7 +1612,7 @@ input[type=search]:focus,
|
|
|
1552
1612
|
text-decoration-thickness: 2px;
|
|
1553
1613
|
text-underline-offset: 4px;
|
|
1554
1614
|
}
|
|
1555
|
-
.button.button--tertiary--underline:disabled, .button--tertiary--underline.calendar-navbar__year-selector-button:disabled {
|
|
1615
|
+
.button.button--tertiary--underline:disabled, .button--tertiary--underline.calendar-navbar__year-selector-button:disabled, .button.button--tertiary--underline[aria-disabled=true], .button--tertiary--underline[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1556
1616
|
text-decoration: none;
|
|
1557
1617
|
}
|
|
1558
1618
|
.button.button--tertiary.button--small, .button--small.calendar-navbar__year-selector-button {
|
|
@@ -1644,7 +1704,7 @@ input[type=search]:focus,
|
|
|
1644
1704
|
position: absolute;
|
|
1645
1705
|
right: 1.25rem;
|
|
1646
1706
|
}
|
|
1647
|
-
.button.disabled, .disabled.calendar-navbar__year-selector-button, .button.disabled:hover, .button:disabled, .calendar-navbar__year-selector-button:disabled, .button:disabled:hover, .button.button--disabled, .button--disabled.calendar-navbar__year-selector-button {
|
|
1707
|
+
.button.disabled, .disabled.calendar-navbar__year-selector-button, .button.disabled:hover, .button:disabled, .calendar-navbar__year-selector-button:disabled, .button:disabled:hover, .button[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button, .button[aria-disabled=true]:hover, .button.button--disabled, .button--disabled.calendar-navbar__year-selector-button {
|
|
1648
1708
|
border-width: var(--f-border-width-medium, 2px);
|
|
1649
1709
|
box-shadow: none;
|
|
1650
1710
|
cursor: default;
|
|
@@ -2403,6 +2463,7 @@ input[type=search]:focus,
|
|
|
2403
2463
|
.datepicker-field__close > .datepicker-field__close__button {
|
|
2404
2464
|
margin: 0;
|
|
2405
2465
|
padding: 1rem;
|
|
2466
|
+
align-items: center;
|
|
2406
2467
|
}
|
|
2407
2468
|
|
|
2408
2469
|
.popup--overlay .datepicker-field__popup {
|
|
@@ -2425,6 +2486,24 @@ input[type=search]:focus,
|
|
|
2425
2486
|
border: unset;
|
|
2426
2487
|
}
|
|
2427
2488
|
|
|
2489
|
+
.definition-list {
|
|
2490
|
+
margin: 0;
|
|
2491
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2492
|
+
}
|
|
2493
|
+
.definition-list__term {
|
|
2494
|
+
float: left;
|
|
2495
|
+
clear: left;
|
|
2496
|
+
margin-right: 0.25rem;
|
|
2497
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
2498
|
+
}
|
|
2499
|
+
.definition-list__term::after {
|
|
2500
|
+
content: ":";
|
|
2501
|
+
}
|
|
2502
|
+
.definition-list__definition {
|
|
2503
|
+
margin-left: 0;
|
|
2504
|
+
margin-bottom: 0.25rem;
|
|
2505
|
+
}
|
|
2506
|
+
|
|
2428
2507
|
.dialogue-tree {
|
|
2429
2508
|
margin: 0 0 var(--f-margin-component-bottom, 1.5rem);
|
|
2430
2509
|
}
|
|
@@ -2457,6 +2536,7 @@ input[type=search]:focus,
|
|
|
2457
2536
|
display: flex;
|
|
2458
2537
|
align-items: center;
|
|
2459
2538
|
justify-content: space-between;
|
|
2539
|
+
cursor: pointer;
|
|
2460
2540
|
}
|
|
2461
2541
|
.dialogue-tree__list-item button span {
|
|
2462
2542
|
display: -webkit-box;
|
|
@@ -2466,7 +2546,6 @@ input[type=search]:focus,
|
|
|
2466
2546
|
font-weight: var(--f-font-weight-medium, 600);
|
|
2467
2547
|
font-size: var(--f-font-size-standard, 1rem);
|
|
2468
2548
|
text-align: left;
|
|
2469
|
-
cursor: pointer;
|
|
2470
2549
|
}
|
|
2471
2550
|
.dialogue-tree__list-item button .icon {
|
|
2472
2551
|
flex-shrink: 0;
|
|
@@ -2816,7 +2895,8 @@ input[type=search]:focus,
|
|
|
2816
2895
|
.file-item__file-name {
|
|
2817
2896
|
margin-left: 0.25rem;
|
|
2818
2897
|
min-width: 0;
|
|
2819
|
-
overflow-wrap:
|
|
2898
|
+
overflow-wrap: anywhere;
|
|
2899
|
+
hyphens: auto;
|
|
2820
2900
|
white-space: normal;
|
|
2821
2901
|
}
|
|
2822
2902
|
.file-item__separator {
|
|
@@ -2839,14 +2919,24 @@ input[type=search]:focus,
|
|
|
2839
2919
|
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #fff, 0 0 0 4px #1b1e23, 0 0 0 6px #fff);
|
|
2840
2920
|
outline: 3px solid transparent;
|
|
2841
2921
|
}
|
|
2842
|
-
|
|
2922
|
+
@media (forced-colors: active) {
|
|
2923
|
+
.file-selector label.button.button--tertiary {
|
|
2924
|
+
border-color: ButtonBorder;
|
|
2925
|
+
color: ButtonText;
|
|
2926
|
+
}
|
|
2927
|
+
}
|
|
2928
|
+
.file-selector label.button.button--tertiary {
|
|
2843
2929
|
cursor: pointer;
|
|
2844
2930
|
}
|
|
2845
|
-
.file-selector input
|
|
2846
|
-
background-color: transparent;
|
|
2847
|
-
border-color: transparent;
|
|
2931
|
+
.file-selector input[aria-disabled=true] + label.button.button--tertiary {
|
|
2848
2932
|
cursor: default;
|
|
2849
2933
|
}
|
|
2934
|
+
@media (forced-colors: active) {
|
|
2935
|
+
.file-selector input[aria-disabled=true] + label.button.button--tertiary {
|
|
2936
|
+
color: GrayText;
|
|
2937
|
+
border-color: GrayText;
|
|
2938
|
+
}
|
|
2939
|
+
}
|
|
2850
2940
|
|
|
2851
2941
|
.file-uploader__message-box {
|
|
2852
2942
|
margin-top: 1.25rem;
|
|
@@ -4674,7 +4764,7 @@ input[type=search]:focus,
|
|
|
4674
4764
|
}
|
|
4675
4765
|
.paginator__page--active, .paginator__previous--active, .paginator__next--active {
|
|
4676
4766
|
color: var(--fkds-color-action-text-inverted-default, #fff);
|
|
4677
|
-
background-color: var(--fkds-color-
|
|
4767
|
+
background-color: var(--fkds-color-select-background-primary-default, #4a52b6);
|
|
4678
4768
|
}
|
|
4679
4769
|
@media (forced-colors: active) {
|
|
4680
4770
|
.paginator__page--active, .paginator__previous--active, .paginator__next--active {
|
|
@@ -4952,51 +5042,11 @@ input[type=search]:focus,
|
|
|
4952
5042
|
.sort-filter-dataset__sort {
|
|
4953
5043
|
min-width: 80px;
|
|
4954
5044
|
}
|
|
4955
|
-
.sort-filter-dataset__search {
|
|
4956
|
-
position: relative;
|
|
4957
|
-
}
|
|
4958
|
-
.sort-filter-dataset__search input {
|
|
4959
|
-
padding-left: 2.1rem;
|
|
4960
|
-
padding-right: 2.1rem;
|
|
4961
|
-
}
|
|
4962
5045
|
@media (min-width: 640px) {
|
|
4963
5046
|
.sort-filter-dataset__search input {
|
|
4964
5047
|
width: 160px;
|
|
4965
5048
|
}
|
|
4966
5049
|
}
|
|
4967
|
-
.sort-filter-dataset__search__magnify-icon {
|
|
4968
|
-
position: absolute;
|
|
4969
|
-
left: 1.75rem;
|
|
4970
|
-
height: var(--f-height-large, 2.5rem);
|
|
4971
|
-
/* same as textfield */
|
|
4972
|
-
z-index: 1;
|
|
4973
|
-
/* In front of input field */
|
|
4974
|
-
width: 1.2rem;
|
|
4975
|
-
color: var(--fkds-color-text-secondary, #5f6165);
|
|
4976
|
-
}
|
|
4977
|
-
@media (max-width: 639.98px) {
|
|
4978
|
-
.sort-filter-dataset__search__magnify-icon {
|
|
4979
|
-
top: 1.5rem;
|
|
4980
|
-
left: 0.75rem;
|
|
4981
|
-
}
|
|
4982
|
-
}
|
|
4983
|
-
.sort-filter-dataset__search__close-icon.button--discrete {
|
|
4984
|
-
position: absolute;
|
|
4985
|
-
top: -0.75rem;
|
|
4986
|
-
right: 0;
|
|
4987
|
-
color: var(--fkds-color-text-secondary, #5f6165);
|
|
4988
|
-
cursor: pointer;
|
|
4989
|
-
padding: 1rem;
|
|
4990
|
-
}
|
|
4991
|
-
@media (max-width: 639.98px) {
|
|
4992
|
-
.sort-filter-dataset__search__close-icon.button--discrete {
|
|
4993
|
-
top: 1rem;
|
|
4994
|
-
}
|
|
4995
|
-
}
|
|
4996
|
-
.sort-filter-dataset__search__close-icon.button--discrete:hover {
|
|
4997
|
-
box-shadow: none;
|
|
4998
|
-
background-color: transparent;
|
|
4999
|
-
}
|
|
5000
5050
|
|
|
5001
5051
|
.static-panel {
|
|
5002
5052
|
margin-bottom: 2.5rem;
|
|
@@ -5279,10 +5329,20 @@ input[type=search]:focus,
|
|
|
5279
5329
|
border-color: transparent;
|
|
5280
5330
|
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
5281
5331
|
}
|
|
5282
|
-
.table__button.disabled, .table__button.disabled:hover, .table__button:disabled, .table__button:disabled:hover, .table__button.table__button--disabled, .table__button.table__button--disabled:hover {
|
|
5332
|
+
.table__button.disabled, .table__button.disabled:hover, .table__button:disabled, .table__button:disabled:hover, .table__button[aria-disabled=true], .table__button[aria-disabled=true]:hover, .table__button.table__button--disabled, .table__button.table__button--disabled:hover {
|
|
5283
5333
|
background-color: transparent;
|
|
5284
5334
|
border-color: transparent;
|
|
5285
5335
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
5336
|
+
pointer-events: none;
|
|
5337
|
+
}
|
|
5338
|
+
.table__button[aria-disabled=true] {
|
|
5339
|
+
pointer-events: none;
|
|
5340
|
+
}
|
|
5341
|
+
@media (forced-colors: active) {
|
|
5342
|
+
.table__button[aria-disabled=true] {
|
|
5343
|
+
color: GrayText;
|
|
5344
|
+
border-color: GrayText;
|
|
5345
|
+
}
|
|
5286
5346
|
}
|
|
5287
5347
|
.table__button {
|
|
5288
5348
|
font-weight: var(--f-font-weight-medium, 600);
|
|
@@ -5400,6 +5460,9 @@ input[type=search]:focus,
|
|
|
5400
5460
|
box-shadow: inset 0 -3px 0 0 var(--fkds-color-border-strong, #5f6165);
|
|
5401
5461
|
border-radius: 0;
|
|
5402
5462
|
}
|
|
5463
|
+
.table-ng__cell .table-ng__editable {
|
|
5464
|
+
min-block-size: calc(var(--f-font-size-standard, 1rem) * var(--f-line-height-large, 1.5) + 0.25rem * var(--f-density-factor, 1) * 2 + 6px);
|
|
5465
|
+
}
|
|
5403
5466
|
.table-ng__cell .table-ng__editable:focus-within {
|
|
5404
5467
|
box-shadow: inset 0 -3px 0 0 var(--fkds-color-border-strong, #5f6165);
|
|
5405
5468
|
border-radius: 0;
|
|
@@ -5568,8 +5631,8 @@ input[type=search]:focus,
|
|
|
5568
5631
|
}
|
|
5569
5632
|
.table-ng__column:focus, .table-ng__column:focus-within {
|
|
5570
5633
|
box-shadow: none;
|
|
5571
|
-
|
|
5572
|
-
|
|
5634
|
+
outline: 3px solid var(--fkds-color-text-primary, #1b1e23);
|
|
5635
|
+
outline-offset: -3px;
|
|
5573
5636
|
}
|
|
5574
5637
|
.table-ng__column--selectable {
|
|
5575
5638
|
text-align: center;
|
|
@@ -5581,6 +5644,10 @@ input[type=search]:focus,
|
|
|
5581
5644
|
vertical-align: middle;
|
|
5582
5645
|
accent-color: var(--fkds-color-action-background-primary-default, #4a52b6);
|
|
5583
5646
|
}
|
|
5647
|
+
.table-ng__column--selectable input[type=checkbox]:focus,
|
|
5648
|
+
.table-ng__column--selectable input[type=checkbox]:focus-visible {
|
|
5649
|
+
box-shadow: none;
|
|
5650
|
+
}
|
|
5584
5651
|
.table-ng__column--rowheader {
|
|
5585
5652
|
text-align: left;
|
|
5586
5653
|
padding: calc(0.25rem * var(--f-density-factor, 1));
|