@fkui/design 6.3.1 → 6.5.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 CHANGED
@@ -1305,6 +1305,222 @@ input[type=search]:focus,
1305
1305
  padding: calc(1.5rem * var(--f-density-factor, 1)) 1.5rem;
1306
1306
  }
1307
1307
 
1308
+ .entrypoint {
1309
+ /* stylelint-disable-next-line scss/at-extend-no-missing-placeholder -- technical debt */
1310
+ background-color: var(--fkds-color-action-background-primary-default, #4a52b6);
1311
+ color: var(--fkds-color-action-text-inverted-default, #ffffff);
1312
+ border: var(--f-border-width-medium, 2px) solid transparent;
1313
+ border-radius: var(--f-border-radius-medium, 4px);
1314
+ box-shadow: var(--f-button-shadow, 0 1px 3px rgba(0, 0, 0, 0.3));
1315
+ font-size: var(--f-font-size-standard, 1rem);
1316
+ font-weight: var(--f-font-weight-medium, 700);
1317
+ transition: background-color var(--f-animation-duration-medium, 350ms) ease-out;
1318
+ display: inline-flex;
1319
+ justify-content: space-between;
1320
+ align-items: center;
1321
+ cursor: pointer;
1322
+ margin-bottom: calc(1.5rem * var(--f-density-factor, 1));
1323
+ margin-top: calc(0.25rem * var(--f-density-factor, 1));
1324
+ text-align: left;
1325
+ padding: calc(1rem * var(--f-density-factor, 1)) 1rem;
1326
+ line-height: var(--f-line-height-large, 1.5);
1327
+ width: 100%;
1328
+ }
1329
+ .entrypoint__icon {
1330
+ margin-left: 2rem;
1331
+ flex-shrink: 0;
1332
+ }
1333
+ .entrypoint:hover {
1334
+ background-color: var(--fkds-color-action-background-primary-hover, #3b4292);
1335
+ }
1336
+
1337
+ .page-header {
1338
+ display: flex;
1339
+ flex-direction: row;
1340
+ width: 100%;
1341
+ color: var(--f-text-color-default-inverted, #ffffff);
1342
+ background-color: var(--f-background-pageheader-primary, #116a3e);
1343
+ padding: 1rem 0 1rem 1rem;
1344
+ align-items: center;
1345
+ overflow: hidden;
1346
+ }
1347
+ .page-header__logo {
1348
+ display: flex;
1349
+ margin: 0;
1350
+ padding: 0;
1351
+ align-items: center;
1352
+ box-sizing: border-box;
1353
+ }
1354
+ .page-header__logo > a {
1355
+ display: inline-flex;
1356
+ }
1357
+ .page-header__logo::after {
1358
+ content: " ";
1359
+ background-color: var(--f-border-color-separator-pageheader-primary, #ffffff);
1360
+ height: 1.38rem;
1361
+ padding: 0.5px;
1362
+ margin: 0 1rem 0.155rem;
1363
+ }
1364
+ .page-header__app-name {
1365
+ padding-top: 0.22rem;
1366
+ margin: 0;
1367
+ font-size: var(--f-font-size-h3, 1.375rem);
1368
+ font-weight: var(--f-font-weight-medium, 700);
1369
+ color: var(--f-text-color-default-inverted, #ffffff);
1370
+ white-space: nowrap;
1371
+ overflow: hidden;
1372
+ text-overflow: ellipsis;
1373
+ min-width: 9rem;
1374
+ }
1375
+ .page-header__right {
1376
+ display: flex;
1377
+ justify-content: flex-end;
1378
+ align-items: center;
1379
+ flex-grow: 1;
1380
+ white-space: nowrap;
1381
+ padding-top: 0.4rem;
1382
+ font-size: var(--f-font-size-standard, 1rem);
1383
+ }
1384
+ .page-header__right-slot {
1385
+ padding-left: 1rem;
1386
+ padding-right: 1rem;
1387
+ }
1388
+
1389
+ .card {
1390
+ padding: calc(1rem * var(--f-density-factor, 1)) 1rem;
1391
+ margin: calc(1rem * var(--f-density-factor, 1)) 0;
1392
+ }
1393
+ .card--default {
1394
+ background-color: var(--fkds-color-background-primary, #ffffff);
1395
+ border-radius: var(--f-border-radius-medium, 4px);
1396
+ border: var(--f-border-width-medium, 2px) solid var(--fkds-color-border-primary, #8d8e91);
1397
+ }
1398
+ .card--error {
1399
+ border-radius: var(--f-border-radius-medium, 4px);
1400
+ border: var(--f-border-width-medium, 2px) solid var(--fkds-color-feedback-border-negative, #ca1515);
1401
+ }
1402
+ .card__content {
1403
+ color: var(--fkds-color-text-primary, #1b1e23);
1404
+ }
1405
+ .card__content > p:last-child,
1406
+ .card__content > div:last-child {
1407
+ margin-bottom: 0;
1408
+ }
1409
+ .card__content > p:last-child > *:last-child,
1410
+ .card__content > div:last-child > *:last-child {
1411
+ margin-bottom: 0;
1412
+ }
1413
+ .card__header-label {
1414
+ color: var(--fkds-color-text-primary, #1b1e23);
1415
+ font-size: var(--f-font-size-large, 1.125rem);
1416
+ font-weight: var(--f-font-weight-bold, 900);
1417
+ line-height: var(--f-line-height-large, 1.5);
1418
+ margin-bottom: calc(0.25rem * var(--f-density-factor, 1));
1419
+ display: block;
1420
+ }
1421
+ .card__footer {
1422
+ padding-top: calc(1.25rem * var(--f-density-factor, 1));
1423
+ }
1424
+ .card__footer > .button-group {
1425
+ margin-bottom: 0;
1426
+ }
1427
+ .card__footer > .button-group .button-group__item {
1428
+ margin-bottom: 0 !important;
1429
+ }
1430
+ .card__error-message {
1431
+ color: var(--f-text-color-error, #d23838);
1432
+ }
1433
+
1434
+ .anchor, .file-item__file-open {
1435
+ color: var(--f-text-color-link, #4a52b6);
1436
+ text-decoration: underline;
1437
+ text-decoration-thickness: 2px;
1438
+ text-underline-offset: 0.25em;
1439
+ text-decoration-color: var(--f-text-color-link, #4a52b6);
1440
+ font-weight: var(--f-font-weight-medium, 700);
1441
+ }
1442
+ .anchor:hover, .file-item__file-open:hover {
1443
+ color: var(--f-text-color-link-hover, #1b1e23);
1444
+ text-decoration-color: var(--f-border-color-link-hover, #8d8e91);
1445
+ }
1446
+ .anchor.anchor--block, .file-item__file-open {
1447
+ display: inline-flex;
1448
+ }
1449
+ .anchor.anchor--block > svg, .file-item__file-open > svg, .anchor.anchor--block > .icon-stack, .file-item__file-open > .icon-stack {
1450
+ flex-shrink: 0;
1451
+ margin: calc((var(--f-line-height-large, 1.5) * 1rem - var(--f-icon-size-small, 1rem)) / 2) 0.25rem 0;
1452
+ }
1453
+ .anchor.anchor--discrete, .anchor--discrete.file-item__file-open {
1454
+ color: var(--f-text-color-link-discrete, #1b1e23);
1455
+ text-decoration-color: var(--f-border-color-link-discrete, #8d8e91);
1456
+ }
1457
+ .anchor.anchor--discrete:hover, .anchor--discrete.file-item__file-open:hover {
1458
+ color: var(--f-text-color-link-discrete-hover, #4a52b6);
1459
+ text-decoration-color: var(--f-text-color-link-discrete-hover, #4a52b6);
1460
+ }
1461
+
1462
+ .badge {
1463
+ border-radius: var(--f-border-radius-medium, 4px);
1464
+ border-style: solid;
1465
+ border-width: var(--f-border-width-small, 1px);
1466
+ box-sizing: border-box;
1467
+ display: inline-block;
1468
+ font-size: var(--f-font-size-standard, 1rem);
1469
+ line-height: calc(var(--f-line-height-large, 1.5) * var(--f-density-factor, 1));
1470
+ font-weight: var(--f-font-weight-normal, 400);
1471
+ padding: 0 0.5rem;
1472
+ }
1473
+ .badge--default {
1474
+ color: var(--fkds-color-text-primary, #1b1e23);
1475
+ background-color: var(--fkds-color-feedback-background-neutral-strong, #ddddde);
1476
+ border-color: var(--fkds-color-feedback-background-neutral-strong, #ddddde);
1477
+ }
1478
+ .badge--default-inverted {
1479
+ color: var(--fkds-color-text-primary, #1b1e23);
1480
+ background-color: var(--fkds-color-feedback-background-neutral, #f4f4f4);
1481
+ border-color: var(--fkds-color-feedback-border-neutral, #8d8e91);
1482
+ }
1483
+ .badge--warning {
1484
+ color: var(--fkds-color-text-primary, #1b1e23);
1485
+ background-color: var(--fkds-color-feedback-background-warning-strong, #ffbe10);
1486
+ border-color: var(--fkds-color-feedback-background-warning-strong, #ffbe10);
1487
+ }
1488
+ .badge--warning-inverted {
1489
+ color: var(--fkds-color-text-primary, #1b1e23);
1490
+ background-color: var(--fkds-color-feedback-background-warning, #fffcf3);
1491
+ border-color: var(--fkds-color-feedback-border-warning, #ffbe10);
1492
+ }
1493
+ .badge--error {
1494
+ color: var(--fkds-color-text-inverted, #ffffff);
1495
+ background-color: var(--fkds-color-feedback-background-negative-strong, #ca1515);
1496
+ border-color: var(--fkds-color-feedback-background-negative-strong, #ca1515);
1497
+ }
1498
+ .badge--error-inverted {
1499
+ color: var(--fkds-color-text-primary, #1b1e23);
1500
+ background-color: var(--fkds-color-feedback-background-negative, #fcf3f3);
1501
+ border-color: var(--fkds-color-feedback-border-negative, #ca1515);
1502
+ }
1503
+ .badge--success {
1504
+ color: var(--fkds-color-text-inverted, #ffffff);
1505
+ background-color: var(--fkds-color-feedback-background-positive-strong, #35805b);
1506
+ border-color: var(--fkds-color-feedback-background-positive-strong, #35805b);
1507
+ }
1508
+ .badge--success-inverted {
1509
+ color: var(--fkds-color-text-primary, #1b1e23);
1510
+ background-color: var(--fkds-color-feedback-background-positive, #f3f8f5);
1511
+ border-color: var(--fkds-color-feedback-border-positive, #35805b);
1512
+ }
1513
+ .badge--info {
1514
+ color: var(--fkds-color-text-inverted, #ffffff);
1515
+ background-color: var(--fkds-color-feedback-background-info-strong, #4a52b6);
1516
+ border-color: var(--fkds-color-feedback-background-info-strong, #4a52b6);
1517
+ }
1518
+ .badge--info-inverted {
1519
+ color: var(--fkds-color-text-primary, #1b1e23);
1520
+ background-color: var(--fkds-color-feedback-background-info, #f5f6fa);
1521
+ border-color: var(--fkds-color-feedback-border-info, #4a52b6);
1522
+ }
1523
+
1308
1524
  .button-group {
1309
1525
  align-items: center;
1310
1526
  display: flex;
@@ -1325,43 +1541,43 @@ input[type=search]:focus,
1325
1541
  margin-right: 0;
1326
1542
  }
1327
1543
  }
1328
- .button-group > .button.button--discrete, .button-group > .button--discrete.entrypoint, .button-group > .button.button--text, .button-group > .button--text.entrypoint {
1544
+ .button-group > .button.button--discrete, .button-group > .button.button--text {
1329
1545
  margin-bottom: calc(1rem * var(--f-density-factor, 1));
1330
1546
  margin-right: 1.5rem;
1331
1547
  }
1332
- .button-group > .button.button--discrete:last-child, .button-group > .button--discrete.entrypoint:last-child, .button-group > .button.button--text:last-child, .button-group > .button--text.entrypoint:last-child {
1548
+ .button-group > .button.button--discrete:last-child, .button-group > .button.button--text:last-child {
1333
1549
  margin-right: 0;
1334
1550
  }
1335
- .button-group > .button.button--small, .button-group > .button--small.entrypoint {
1551
+ .button-group > .button.button--small {
1336
1552
  margin-bottom: calc(0.75rem * var(--f-density-factor, 1));
1337
1553
  margin-right: 0.75rem;
1338
1554
  }
1339
- .button-group > .button.button--small:last-child, .button-group > .button--small.entrypoint:last-child {
1555
+ .button-group > .button.button--small:last-child {
1340
1556
  margin-right: 0;
1341
1557
  }
1342
1558
  @media (max-width: 639.98px) {
1343
- .button-group > .button.button--small.button--full-width, .button-group > .button--small.button--full-width.entrypoint {
1559
+ .button-group > .button.button--small.button--full-width {
1344
1560
  margin-right: 0;
1345
1561
  }
1346
1562
  }
1347
- .button-group > .button.button--medium, .button-group > .button--medium.entrypoint {
1563
+ .button-group > .button.button--medium {
1348
1564
  margin-bottom: calc(0.75rem * var(--f-density-factor, 1));
1349
1565
  margin-right: 1rem;
1350
1566
  }
1351
- .button-group > .button.button--medium:last-child, .button-group > .button--medium.entrypoint:last-child {
1567
+ .button-group > .button.button--medium:last-child {
1352
1568
  margin-right: 0;
1353
1569
  }
1354
1570
  @media (max-width: 639.98px) {
1355
- .button-group > .button.button--medium.button--full-width, .button-group > .button--medium.button--full-width.entrypoint {
1571
+ .button-group > .button.button--medium.button--full-width {
1356
1572
  margin-right: 0;
1357
1573
  }
1358
1574
  }
1359
1575
  @media (min-width: 640px) {
1360
- .button-group > .button.button--large, .button-group > .button--large.entrypoint {
1576
+ .button-group > .button.button--large {
1361
1577
  margin-bottom: calc(1rem * var(--f-density-factor, 1));
1362
1578
  margin-right: 1.25rem;
1363
1579
  }
1364
- .button-group > .button.button--large:last-child, .button-group > .button--large.entrypoint:last-child {
1580
+ .button-group > .button.button--large:last-child {
1365
1581
  margin-right: 0;
1366
1582
  }
1367
1583
  }
@@ -1378,14 +1594,14 @@ input[type=search]:focus,
1378
1594
  margin: 0;
1379
1595
  margin-bottom: calc(1rem * var(--f-density-factor, 1));
1380
1596
  }
1381
- .button-list > li button.button.button--small, .button-list > li button.button--small.entrypoint, .button-list > li button.button.button--medium, .button-list > li button.button--medium.entrypoint {
1597
+ .button-list > li button.button.button--small, .button-list > li button.button.button--medium {
1382
1598
  margin-bottom: calc(0.75rem * var(--f-density-factor, 1));
1383
1599
  }
1384
- .button-list > li button.button.button--large, .button-list > li button.button--large.entrypoint {
1600
+ .button-list > li button.button.button--large {
1385
1601
  margin-bottom: calc(1rem * var(--f-density-factor, 1));
1386
1602
  }
1387
1603
 
1388
- .button, .entrypoint {
1604
+ .button {
1389
1605
  border-color: transparent;
1390
1606
  border-radius: var(--f-border-radius-medium, 4px);
1391
1607
  border-style: solid;
@@ -1411,7 +1627,7 @@ input[type=search]:focus,
1411
1627
  transition: background-color var(--f-animation-duration-medium, 350ms) ease-out;
1412
1628
  }
1413
1629
  @media (max-width: 639.98px) {
1414
- .button, .entrypoint {
1630
+ .button {
1415
1631
  max-width: var(--f-width-full, 100%);
1416
1632
  width: var(--f-width-full, 100%);
1417
1633
  }
@@ -1428,7 +1644,7 @@ input[type=search]:focus,
1428
1644
  color: var(--f-icon-color-black, #1b1e23);
1429
1645
  }
1430
1646
 
1431
- .button, .entrypoint {
1647
+ .button {
1432
1648
  background-color: var(--fkds-color-action-background-secondary-default, #f5f6fa);
1433
1649
  border-color: var(--fkds-color-action-border-primary-default, #4a52b6);
1434
1650
  border-width: var(--f-border-width-medium, 2px);
@@ -1436,19 +1652,19 @@ input[type=search]:focus,
1436
1652
  color: var(--f-text-color-button-standard, #4a52b6);
1437
1653
  padding: calc(var(--f-button-standard-padding-top, 1rem) * var(--f-density-factor, 1)) var(--f-button-standard-padding-right, 1.5rem) calc(var(--f-button-standard-padding-bottom, 1rem) * var(--f-density-factor, 1)) var(--f-button-standard-padding-left, 1.5rem);
1438
1654
  }
1439
- .button > .button__icon, .entrypoint > .button__icon {
1655
+ .button > .button__icon {
1440
1656
  color: var(--f-text-color-button-standard, #4a52b6);
1441
1657
  }
1442
- .button:hover, .entrypoint:hover {
1658
+ .button:hover {
1443
1659
  background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
1444
1660
  border-color: var(--fkds-color-action-border-primary-default, #4a52b6);
1445
1661
  color: var(--f-text-color-button-standard, #4a52b6);
1446
1662
  box-shadow: var(--f-button-shadow-hover, 0 1px 3px rgba(0, 0, 0, 0.3));
1447
1663
  }
1448
- .button:hover > .button__icon, .entrypoint:hover > .button__icon {
1664
+ .button:hover > .button__icon {
1449
1665
  color: var(--f-text-color-button-standard, #4a52b6);
1450
1666
  }
1451
- .button:active, .entrypoint:active, .button:focus, .entrypoint:focus {
1667
+ .button:active, .button:focus {
1452
1668
  border-radius: 0;
1453
1669
  box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
1454
1670
  outline: 2px solid transparent;
@@ -1456,18 +1672,18 @@ input[type=search]:focus,
1456
1672
  border-color: var(--fkds-color-action-border-primary-default, #4a52b6);
1457
1673
  color: var(--f-text-color-button-standard, #4a52b6);
1458
1674
  }
1459
- .button:active > .button__icon, .entrypoint:active > .button__icon, .button:focus > .button__icon, .entrypoint:focus > .button__icon {
1675
+ .button:active > .button__icon, .button:focus > .button__icon {
1460
1676
  color: var(--f-text-color-button-standard, #4a52b6);
1461
1677
  }
1462
- .button.disabled, .disabled.entrypoint, .button.disabled:hover, .button:disabled, .entrypoint:disabled, .button:disabled:hover, .button.button--disabled, .button--disabled.entrypoint, .button.button--disabled:hover {
1678
+ .button.disabled, .button.disabled:hover, .button:disabled, .button:disabled:hover, .button.button--disabled, .button.button--disabled:hover {
1463
1679
  background-color: var(--fkds-color-action-background-disabled, #f4f4f4);
1464
1680
  border-color: var(--fkds-color-action-border-disabled, #8d8e91);
1465
1681
  color: var(--fkds-color-action-text-disabled, #8d8e91);
1466
1682
  }
1467
- .button.disabled > .button__icon, .disabled.entrypoint > .button__icon, .button.disabled:hover > .button__icon, .button:disabled > .button__icon, .entrypoint:disabled > .button__icon, .button:disabled:hover > .button__icon, .button.button--disabled > .button__icon, .button--disabled.entrypoint > .button__icon, .button.button--disabled:hover > .button__icon {
1683
+ .button.disabled > .button__icon, .button.disabled:hover > .button__icon, .button:disabled > .button__icon, .button:disabled:hover > .button__icon, .button.button--disabled > .button__icon, .button.button--disabled:hover > .button__icon {
1468
1684
  color: var(--fkds-color-action-text-disabled, #8d8e91);
1469
1685
  }
1470
- .button.button--primary, .button--primary.entrypoint {
1686
+ .button.button--primary {
1471
1687
  background-color: var(--fkds-color-action-background-primary-default, #4a52b6);
1472
1688
  border-color: transparent;
1473
1689
  border-width: var(--f-border-width-medium, 2px);
@@ -1475,19 +1691,19 @@ input[type=search]:focus,
1475
1691
  color: var(--fkds-color-action-text-inverted-default, #ffffff);
1476
1692
  padding: calc(var(--f-button-primary-padding-top, 1rem) * var(--f-density-factor, 1)) var(--f-button-primary-padding-right, 1.5rem) calc(var(--f-button-primary-padding-bottom, 1rem) * var(--f-density-factor, 1)) var(--f-button-primary-padding-left, 1.5rem);
1477
1693
  }
1478
- .button.button--primary > .button__icon, .button--primary.entrypoint > .button__icon {
1694
+ .button.button--primary > .button__icon {
1479
1695
  color: var(--fkds-color-action-text-inverted-default, #ffffff);
1480
1696
  }
1481
- .button.button--primary:hover, .button--primary.entrypoint:hover {
1697
+ .button.button--primary:hover {
1482
1698
  background-color: var(--fkds-color-action-background-primary-hover, #3b4292);
1483
1699
  border-color: transparent;
1484
1700
  color: var(--fkds-color-action-text-inverted-default, #ffffff);
1485
1701
  box-shadow: var(--f-button-shadow-hover, 0 1px 3px rgba(0, 0, 0, 0.3));
1486
1702
  }
1487
- .button.button--primary:hover > .button__icon, .button--primary.entrypoint:hover > .button__icon {
1703
+ .button.button--primary:hover > .button__icon {
1488
1704
  color: var(--fkds-color-action-text-inverted-default, #ffffff);
1489
1705
  }
1490
- .button.button--primary:active, .button--primary.entrypoint:active, .button.button--primary:focus, .button--primary.entrypoint:focus {
1706
+ .button.button--primary:active, .button.button--primary:focus {
1491
1707
  border-radius: 0;
1492
1708
  box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
1493
1709
  outline: 2px solid transparent;
@@ -1495,18 +1711,18 @@ input[type=search]:focus,
1495
1711
  border-color: transparent;
1496
1712
  color: var(--fkds-color-action-text-inverted-default, #ffffff);
1497
1713
  }
1498
- .button.button--primary:active > .button__icon, .button--primary.entrypoint:active > .button__icon, .button.button--primary:focus > .button__icon, .button--primary.entrypoint:focus > .button__icon {
1714
+ .button.button--primary:active > .button__icon, .button.button--primary:focus > .button__icon {
1499
1715
  color: var(--fkds-color-action-text-inverted-default, #ffffff);
1500
1716
  }
1501
- .button.button--primary.disabled, .button--primary.disabled.entrypoint, .button.button--primary.disabled:hover, .button.button--primary:disabled, .button--primary.entrypoint:disabled, .button.button--primary:disabled:hover, .button.button--primary.button--disabled, .button--primary.button--disabled.entrypoint, .button.button--primary.button--disabled:hover {
1717
+ .button.button--primary.disabled, .button.button--primary.disabled:hover, .button.button--primary:disabled, .button.button--primary:disabled:hover, .button.button--primary.button--disabled, .button.button--primary.button--disabled:hover {
1502
1718
  background-color: var(--fkds-color-action-background-disabled, #f4f4f4);
1503
1719
  border-color: var(--fkds-color-action-border-disabled, #8d8e91);
1504
1720
  color: var(--fkds-color-action-text-disabled, #8d8e91);
1505
1721
  }
1506
- .button.button--primary.disabled > .button__icon, .button--primary.disabled.entrypoint > .button__icon, .button.button--primary.disabled:hover > .button__icon, .button.button--primary:disabled > .button__icon, .button--primary.entrypoint:disabled > .button__icon, .button.button--primary:disabled:hover > .button__icon, .button.button--primary.button--disabled > .button__icon, .button--primary.button--disabled.entrypoint > .button__icon, .button.button--primary.button--disabled:hover > .button__icon {
1722
+ .button.button--primary.disabled > .button__icon, .button.button--primary.disabled:hover > .button__icon, .button.button--primary:disabled > .button__icon, .button.button--primary:disabled:hover > .button__icon, .button.button--primary.button--disabled > .button__icon, .button.button--primary.button--disabled:hover > .button__icon {
1507
1723
  color: var(--fkds-color-action-text-disabled, #8d8e91);
1508
1724
  }
1509
- .button.button--secondary, .button--secondary.entrypoint {
1725
+ .button.button--secondary {
1510
1726
  background-color: var(--fkds-color-action-background-secondary-default, #f5f6fa);
1511
1727
  border-color: var(--fkds-color-action-border-primary-default, #4a52b6);
1512
1728
  border-width: var(--f-border-width-medium, 2px);
@@ -1514,19 +1730,19 @@ input[type=search]:focus,
1514
1730
  color: var(--fkds-color-action-text-primary-default, #4a52b6);
1515
1731
  padding: calc(var(--f-button-secondary-padding-top, 1rem) * var(--f-density-factor, 1)) var(--f-button-secondary-padding-right, 1.5rem) calc(var(--f-button-secondary-padding-bottom, 1rem) * var(--f-density-factor, 1)) var(--f-button-secondary-padding-left, 1.5rem);
1516
1732
  }
1517
- .button.button--secondary > .button__icon, .button--secondary.entrypoint > .button__icon {
1733
+ .button.button--secondary > .button__icon {
1518
1734
  color: var(--fkds-color-action-text-primary-default, #4a52b6);
1519
1735
  }
1520
- .button.button--secondary:hover, .button--secondary.entrypoint:hover {
1736
+ .button.button--secondary:hover {
1521
1737
  background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
1522
1738
  border-color: var(--fkds-color-action-border-primary-default, #4a52b6);
1523
1739
  color: var(--fkds-color-action-text-primary-default, #4a52b6);
1524
1740
  box-shadow: var(--f-button-shadow-hover, 0 1px 3px rgba(0, 0, 0, 0.3));
1525
1741
  }
1526
- .button.button--secondary:hover > .button__icon, .button--secondary.entrypoint:hover > .button__icon {
1742
+ .button.button--secondary:hover > .button__icon {
1527
1743
  color: var(--fkds-color-action-text-primary-default, #4a52b6);
1528
1744
  }
1529
- .button.button--secondary:active, .button--secondary.entrypoint:active, .button.button--secondary:focus, .button--secondary.entrypoint:focus {
1745
+ .button.button--secondary:active, .button.button--secondary:focus {
1530
1746
  border-radius: 0;
1531
1747
  box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
1532
1748
  outline: 2px solid transparent;
@@ -1534,18 +1750,18 @@ input[type=search]:focus,
1534
1750
  border-color: var(--fkds-color-action-border-primary-default, #4a52b6);
1535
1751
  color: var(--fkds-color-action-text-primary-default, #4a52b6);
1536
1752
  }
1537
- .button.button--secondary:active > .button__icon, .button--secondary.entrypoint:active > .button__icon, .button.button--secondary:focus > .button__icon, .button--secondary.entrypoint:focus > .button__icon {
1753
+ .button.button--secondary:active > .button__icon, .button.button--secondary:focus > .button__icon {
1538
1754
  color: var(--fkds-color-action-text-primary-default, #4a52b6);
1539
1755
  }
1540
- .button.button--secondary.disabled, .button--secondary.disabled.entrypoint, .button.button--secondary.disabled:hover, .button.button--secondary:disabled, .button--secondary.entrypoint:disabled, .button.button--secondary:disabled:hover, .button.button--secondary.button--disabled, .button--secondary.button--disabled.entrypoint, .button.button--secondary.button--disabled:hover {
1756
+ .button.button--secondary.disabled, .button.button--secondary.disabled:hover, .button.button--secondary:disabled, .button.button--secondary:disabled:hover, .button.button--secondary.button--disabled, .button.button--secondary.button--disabled:hover {
1541
1757
  background-color: var(--fkds-color-action-background-disabled, #f4f4f4);
1542
1758
  border-color: var(--fkds-color-action-border-disabled, #8d8e91);
1543
1759
  color: var(--fkds-color-action-text-disabled, #8d8e91);
1544
1760
  }
1545
- .button.button--secondary.disabled > .button__icon, .button--secondary.disabled.entrypoint > .button__icon, .button.button--secondary.disabled:hover > .button__icon, .button.button--secondary:disabled > .button__icon, .button--secondary.entrypoint:disabled > .button__icon, .button.button--secondary:disabled:hover > .button__icon, .button.button--secondary.button--disabled > .button__icon, .button--secondary.button--disabled.entrypoint > .button__icon, .button.button--secondary.button--disabled:hover > .button__icon {
1761
+ .button.button--secondary.disabled > .button__icon, .button.button--secondary.disabled:hover > .button__icon, .button.button--secondary:disabled > .button__icon, .button.button--secondary:disabled:hover > .button__icon, .button.button--secondary.button--disabled > .button__icon, .button.button--secondary.button--disabled:hover > .button__icon {
1546
1762
  color: var(--fkds-color-action-text-disabled, #8d8e91);
1547
1763
  }
1548
- .button.button--discrete, .button--discrete.entrypoint, .button.button--text, .button--text.entrypoint {
1764
+ .button.button--discrete, .button.button--text {
1549
1765
  width: inherit;
1550
1766
  min-width: 0;
1551
1767
  font-weight: var(--f-font-weight-bold, 900);
@@ -1558,19 +1774,19 @@ input[type=search]:focus,
1558
1774
  color: var(--f-text-color-button-discrete, #4a52b6);
1559
1775
  padding: calc(var(--f-button-discrete-padding-top, initial) * var(--f-density-factor, 1)) var(--f-button-discrete-padding-right, initial) calc(var(--f-button-discrete-padding-bottom, initial) * var(--f-density-factor, 1)) var(--f-button-discrete-padding-left, initial);
1560
1776
  }
1561
- .button.button--discrete > .button__icon, .button--discrete.entrypoint > .button__icon, .button.button--text > .button__icon, .button--text.entrypoint > .button__icon {
1777
+ .button.button--discrete > .button__icon, .button.button--text > .button__icon {
1562
1778
  color: var(--f-text-color-button-discrete, #4a52b6);
1563
1779
  }
1564
- .button.button--discrete:hover, .button--discrete.entrypoint:hover, .button.button--text:hover, .button--text.entrypoint:hover {
1780
+ .button.button--discrete:hover, .button.button--text:hover {
1565
1781
  background-color: var(--f-background-button-discrete-hover, none);
1566
1782
  border-color: transparent;
1567
1783
  color: var(--f-text-color-button-discrete-hover, #3b4292);
1568
1784
  box-shadow: var(--f-button-shadow-hover, 0 1px 3px rgba(0, 0, 0, 0.3));
1569
1785
  }
1570
- .button.button--discrete:hover > .button__icon, .button--discrete.entrypoint:hover > .button__icon, .button.button--text:hover > .button__icon, .button--text.entrypoint:hover > .button__icon {
1786
+ .button.button--discrete:hover > .button__icon, .button.button--text:hover > .button__icon {
1571
1787
  color: var(--f-text-color-button-discrete-hover, #3b4292);
1572
1788
  }
1573
- .button.button--discrete:active, .button--discrete.entrypoint:active, .button.button--text:active, .button--text.entrypoint:active, .button.button--discrete:focus, .button--discrete.entrypoint:focus, .button.button--text:focus, .button--text.entrypoint:focus {
1789
+ .button.button--discrete:active, .button.button--text:active, .button.button--discrete:focus, .button.button--text:focus {
1574
1790
  border-radius: 0;
1575
1791
  box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
1576
1792
  outline: 2px solid transparent;
@@ -1578,23 +1794,23 @@ input[type=search]:focus,
1578
1794
  border-color: transparent;
1579
1795
  color: var(--f-text-color-button-discrete-hover, #3b4292);
1580
1796
  }
1581
- .button.button--discrete:active > .button__icon, .button--discrete.entrypoint:active > .button__icon, .button.button--text:active > .button__icon, .button--text.entrypoint:active > .button__icon, .button.button--discrete:focus > .button__icon, .button--discrete.entrypoint:focus > .button__icon, .button.button--text:focus > .button__icon, .button--text.entrypoint:focus > .button__icon {
1797
+ .button.button--discrete:active > .button__icon, .button.button--text:active > .button__icon, .button.button--discrete:focus > .button__icon, .button.button--text:focus > .button__icon {
1582
1798
  color: var(--f-text-color-button-discrete-hover, #3b4292);
1583
1799
  }
1584
- .button.button--discrete.disabled, .button--discrete.disabled.entrypoint, .button.disabled.button--text, .disabled.button--text.entrypoint, .button.button--discrete.disabled:hover, .button.button--discrete:disabled, .button--discrete.entrypoint:disabled, .button.button--text:disabled, .button--text.entrypoint:disabled, .button.button--discrete:disabled:hover, .button.button--discrete.button--disabled, .button--discrete.button--disabled.entrypoint, .button.button--disabled.button--text, .button--disabled.button--text.entrypoint, .button.button--discrete.button--disabled:hover {
1800
+ .button.button--discrete.disabled, .button.disabled.button--text, .button.button--discrete.disabled:hover, .button.button--discrete:disabled, .button.button--text:disabled, .button.button--discrete:disabled:hover, .button.button--discrete.button--disabled, .button.button--disabled.button--text, .button.button--discrete.button--disabled:hover {
1585
1801
  background-color: transparent;
1586
1802
  border-color: transparent;
1587
1803
  color: var(--f-text-color-button-discrete-disabled, #8d8e91);
1588
1804
  }
1589
- .button.button--discrete.disabled > .button__icon, .button--discrete.disabled.entrypoint > .button__icon, .button.disabled.button--text > .button__icon, .disabled.button--text.entrypoint > .button__icon, .button.button--discrete.disabled:hover > .button__icon, .button.button--discrete:disabled > .button__icon, .button--discrete.entrypoint:disabled > .button__icon, .button.button--text:disabled > .button__icon, .button--text.entrypoint:disabled > .button__icon, .button.button--discrete:disabled:hover > .button__icon, .button.button--discrete.button--disabled > .button__icon, .button--discrete.button--disabled.entrypoint > .button__icon, .button.button--disabled.button--text > .button__icon, .button--disabled.button--text.entrypoint > .button__icon, .button.button--discrete.button--disabled:hover > .button__icon {
1805
+ .button.button--discrete.disabled > .button__icon, .button.disabled.button--text > .button__icon, .button.button--discrete.disabled:hover > .button__icon, .button.button--discrete:disabled > .button__icon, .button.button--text:disabled > .button__icon, .button.button--discrete:disabled:hover > .button__icon, .button.button--discrete.button--disabled > .button__icon, .button.button--disabled.button--text > .button__icon, .button.button--discrete.button--disabled:hover > .button__icon {
1590
1806
  color: var(--f-text-color-button-discrete-disabled, #8d8e91);
1591
1807
  }
1592
1808
  @media (max-width: 639.98px) {
1593
- .button.button--discrete, .button--discrete.entrypoint, .button.button--text, .button--text.entrypoint {
1809
+ .button.button--discrete, .button.button--text {
1594
1810
  width: auto;
1595
1811
  }
1596
1812
  }
1597
- .button.button--discrete--black, .button--discrete--black.entrypoint, .button.button--text--black, .button--text--black.entrypoint {
1813
+ .button.button--discrete--black, .button.button--text--black {
1598
1814
  /* stylelint-disable declaration-block-no-redundant-longhand-properties -- readability */
1599
1815
  padding-top: calc(var(--f-button-discrete-black-padding-top, initial) * var(--f-density-factor, 1));
1600
1816
  padding-right: var(--f-button-discrete-black-padding-right, initial);
@@ -1603,17 +1819,17 @@ input[type=search]:focus,
1603
1819
  /* stylelint-enable declaration-block-no-redundant-longhand-properties */
1604
1820
  color: var(--f-text-color-default, #1b1e23);
1605
1821
  }
1606
- .button.button--discrete--black > .button__icon, .button--discrete--black.entrypoint > .button__icon, .button.button--text--black > .button__icon, .button--text--black.entrypoint > .button__icon {
1822
+ .button.button--discrete--black > .button__icon, .button.button--text--black > .button__icon {
1607
1823
  color: var(--f-icon-color-black, #1b1e23);
1608
1824
  }
1609
- .button.button--discrete:hover, .button--discrete.entrypoint:hover, .button.button--text:hover, .button--text.entrypoint:hover {
1825
+ .button.button--discrete:hover, .button.button--text:hover {
1610
1826
  box-shadow: none;
1611
1827
  mix-blend-mode: multiply;
1612
1828
  }
1613
- .button.button--discrete, .button--discrete.entrypoint, .button.button--text, .button--text.entrypoint, .button.button--discrete:focus, .button.button--discrete:active, .button.button--discrete:hover {
1829
+ .button.button--discrete, .button.button--text, .button.button--discrete:focus, .button.button--discrete:active, .button.button--discrete:hover {
1614
1830
  border-radius: var(--f-button-discrete-radius-hover, none);
1615
1831
  }
1616
- .button.button--discrete-inverted, .button--discrete-inverted.entrypoint {
1832
+ .button.button--discrete-inverted {
1617
1833
  width: inherit;
1618
1834
  min-width: 0;
1619
1835
  font-weight: var(--f-font-weight-bold, 900);
@@ -1632,19 +1848,19 @@ input[type=search]:focus,
1632
1848
  color: var(--f-text-color-button-discrete-inverted, #ffffff);
1633
1849
  padding: calc(var(--f-button-discrete-padding-top, initial) * var(--f-density-factor, 1)) var(--f-button-discrete-padding-right, initial) calc(var(--f-button-discrete-padding-bottom, initial) * var(--f-density-factor, 1)) var(--f-button-discrete-padding-left, initial);
1634
1850
  }
1635
- .button.button--discrete-inverted > .button__icon, .button--discrete-inverted.entrypoint > .button__icon {
1851
+ .button.button--discrete-inverted > .button__icon {
1636
1852
  color: var(--f-text-color-button-discrete-inverted, #ffffff);
1637
1853
  }
1638
- .button.button--discrete-inverted:hover, .button--discrete-inverted.entrypoint:hover {
1854
+ .button.button--discrete-inverted:hover {
1639
1855
  background-color: transparent;
1640
1856
  border-color: transparent;
1641
1857
  color: var(--f-text-color-button-discrete-inverted-hover, #ffffff);
1642
1858
  box-shadow: var(--f-button-shadow-hover, 0 1px 3px rgba(0, 0, 0, 0.3));
1643
1859
  }
1644
- .button.button--discrete-inverted:hover > .button__icon, .button--discrete-inverted.entrypoint:hover > .button__icon {
1860
+ .button.button--discrete-inverted:hover > .button__icon {
1645
1861
  color: var(--f-text-color-button-discrete-inverted-hover, #ffffff);
1646
1862
  }
1647
- .button.button--discrete-inverted:active, .button--discrete-inverted.entrypoint:active, .button.button--discrete-inverted:focus, .button--discrete-inverted.entrypoint:focus {
1863
+ .button.button--discrete-inverted:active, .button.button--discrete-inverted:focus {
1648
1864
  border-radius: 0;
1649
1865
  box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
1650
1866
  outline: 2px solid transparent;
@@ -1652,26 +1868,26 @@ input[type=search]:focus,
1652
1868
  border-color: transparent;
1653
1869
  color: var(--f-text-color-button-discrete-inverted-hover, #ffffff);
1654
1870
  }
1655
- .button.button--discrete-inverted:active > .button__icon, .button--discrete-inverted.entrypoint:active > .button__icon, .button.button--discrete-inverted:focus > .button__icon, .button--discrete-inverted.entrypoint:focus > .button__icon {
1871
+ .button.button--discrete-inverted:active > .button__icon, .button.button--discrete-inverted:focus > .button__icon {
1656
1872
  color: var(--f-text-color-button-discrete-inverted-hover, #ffffff);
1657
1873
  }
1658
- .button.button--discrete-inverted.disabled, .button--discrete-inverted.disabled.entrypoint, .button.button--discrete-inverted.disabled:hover, .button.button--discrete-inverted:disabled, .button--discrete-inverted.entrypoint:disabled, .button.button--discrete-inverted:disabled:hover, .button.button--discrete-inverted.button--disabled, .button--discrete-inverted.button--disabled.entrypoint, .button.button--discrete-inverted.button--disabled:hover {
1874
+ .button.button--discrete-inverted.disabled, .button.button--discrete-inverted.disabled:hover, .button.button--discrete-inverted:disabled, .button.button--discrete-inverted:disabled:hover, .button.button--discrete-inverted.button--disabled, .button.button--discrete-inverted.button--disabled:hover {
1659
1875
  background-color: transparent;
1660
1876
  border-color: transparent;
1661
1877
  color: var(--f-text-color-button-discrete-inverted-disabled, #e5e5f5);
1662
1878
  }
1663
- .button.button--discrete-inverted.disabled > .button__icon, .button--discrete-inverted.disabled.entrypoint > .button__icon, .button.button--discrete-inverted.disabled:hover > .button__icon, .button.button--discrete-inverted:disabled > .button__icon, .button--discrete-inverted.entrypoint:disabled > .button__icon, .button.button--discrete-inverted:disabled:hover > .button__icon, .button.button--discrete-inverted.button--disabled > .button__icon, .button--discrete-inverted.button--disabled.entrypoint > .button__icon, .button.button--discrete-inverted.button--disabled:hover > .button__icon {
1879
+ .button.button--discrete-inverted.disabled > .button__icon, .button.button--discrete-inverted.disabled:hover > .button__icon, .button.button--discrete-inverted:disabled > .button__icon, .button.button--discrete-inverted:disabled:hover > .button__icon, .button.button--discrete-inverted.button--disabled > .button__icon, .button.button--discrete-inverted.button--disabled:hover > .button__icon {
1664
1880
  color: var(--f-text-color-button-discrete-inverted-disabled, #e5e5f5);
1665
1881
  }
1666
1882
  @media (max-width: 639.98px) {
1667
- .button.button--discrete-inverted, .button--discrete-inverted.entrypoint {
1883
+ .button.button--discrete-inverted {
1668
1884
  width: auto;
1669
1885
  }
1670
1886
  }
1671
- .button.button--discrete-inverted, .button--discrete-inverted.entrypoint, .button.button--discrete-inverted:focus, .button.button--discrete-inverted:active, .button.button--discrete-inverted:hover {
1887
+ .button.button--discrete-inverted, .button.button--discrete-inverted:focus, .button.button--discrete-inverted:active, .button.button--discrete-inverted:hover {
1672
1888
  border-radius: var(--f-button-discrete-radius-hover, none);
1673
1889
  }
1674
- .button.button--tertiary, .button--tertiary.entrypoint {
1890
+ .button.button--tertiary {
1675
1891
  width: inherit;
1676
1892
  min-width: 0;
1677
1893
  font-weight: var(--f-font-weight-medium, 700);
@@ -1683,19 +1899,19 @@ input[type=search]:focus,
1683
1899
  color: var(--fkds-color-action-text-primary-default, #4a52b6);
1684
1900
  padding: calc(var(--f-button-tertiary-padding-top, 0.75rem) * var(--f-density-factor, 1)) var(--f-button-tertiary-padding-right, 0.5rem) calc(var(--f-button-tertiary-padding-bottom, 0.75rem) * var(--f-density-factor, 1)) var(--f-button-tertiary-padding-left, 0.5rem);
1685
1901
  }
1686
- .button.button--tertiary > .button__icon, .button--tertiary.entrypoint > .button__icon {
1902
+ .button.button--tertiary > .button__icon {
1687
1903
  color: var(--fkds-color-action-text-primary-default, #4a52b6);
1688
1904
  }
1689
- .button.button--tertiary:hover, .button--tertiary.entrypoint:hover {
1905
+ .button.button--tertiary:hover {
1690
1906
  background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
1691
1907
  border-color: transparent;
1692
1908
  color: var(--fkds-color-action-text-primary-default, #4a52b6);
1693
1909
  box-shadow: none;
1694
1910
  }
1695
- .button.button--tertiary:hover > .button__icon, .button--tertiary.entrypoint:hover > .button__icon {
1911
+ .button.button--tertiary:hover > .button__icon {
1696
1912
  color: var(--fkds-color-action-text-primary-default, #4a52b6);
1697
1913
  }
1698
- .button.button--tertiary:active, .button--tertiary.entrypoint:active, .button.button--tertiary:focus, .button--tertiary.entrypoint:focus {
1914
+ .button.button--tertiary:active, .button.button--tertiary:focus {
1699
1915
  border-radius: 0;
1700
1916
  box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
1701
1917
  outline: 2px solid transparent;
@@ -1703,72 +1919,72 @@ input[type=search]:focus,
1703
1919
  border-color: transparent;
1704
1920
  color: var(--fkds-color-action-text-primary-default, #4a52b6);
1705
1921
  }
1706
- .button.button--tertiary:active > .button__icon, .button--tertiary.entrypoint:active > .button__icon, .button.button--tertiary:focus > .button__icon, .button--tertiary.entrypoint:focus > .button__icon {
1922
+ .button.button--tertiary:active > .button__icon, .button.button--tertiary:focus > .button__icon {
1707
1923
  color: var(--fkds-color-action-text-primary-default, #4a52b6);
1708
1924
  }
1709
- .button.button--tertiary.disabled, .button--tertiary.disabled.entrypoint, .button.button--tertiary.disabled:hover, .button.button--tertiary:disabled, .button--tertiary.entrypoint:disabled, .button.button--tertiary:disabled:hover, .button.button--tertiary.button--disabled, .button--tertiary.button--disabled.entrypoint, .button.button--tertiary.button--disabled:hover {
1925
+ .button.button--tertiary.disabled, .button.button--tertiary.disabled:hover, .button.button--tertiary:disabled, .button.button--tertiary:disabled:hover, .button.button--tertiary.button--disabled, .button.button--tertiary.button--disabled:hover {
1710
1926
  background-color: transparent;
1711
1927
  border-color: transparent;
1712
1928
  color: var(--fkds-color-text-disabled, #8d8e91);
1713
1929
  }
1714
- .button.button--tertiary.disabled > .button__icon, .button--tertiary.disabled.entrypoint > .button__icon, .button.button--tertiary.disabled:hover > .button__icon, .button.button--tertiary:disabled > .button__icon, .button--tertiary.entrypoint:disabled > .button__icon, .button.button--tertiary:disabled:hover > .button__icon, .button.button--tertiary.button--disabled > .button__icon, .button--tertiary.button--disabled.entrypoint > .button__icon, .button.button--tertiary.button--disabled:hover > .button__icon {
1930
+ .button.button--tertiary.disabled > .button__icon, .button.button--tertiary.disabled:hover > .button__icon, .button.button--tertiary:disabled > .button__icon, .button.button--tertiary:disabled:hover > .button__icon, .button.button--tertiary.button--disabled > .button__icon, .button.button--tertiary.button--disabled:hover > .button__icon {
1715
1931
  color: var(--fkds-color-text-disabled, #8d8e91);
1716
1932
  }
1717
1933
  @media (max-width: 639.98px) {
1718
- .button.button--tertiary, .button--tertiary.entrypoint {
1934
+ .button.button--tertiary {
1719
1935
  width: auto;
1720
1936
  }
1721
1937
  }
1722
- .button.button--tertiary--black, .button--tertiary--black.entrypoint {
1938
+ .button.button--tertiary--black {
1723
1939
  color: var(--fkds-color-action-text-secondary-default, #1b1e23);
1724
1940
  }
1725
- .button.button--tertiary--black > .button__icon, .button--tertiary--black.entrypoint > .button__icon {
1941
+ .button.button--tertiary--black > .button__icon {
1726
1942
  color: var(--fkds-icon-color-action-content-secondary-default, #1b1e23);
1727
1943
  }
1728
- .button.button--tertiary--black:hover, .button--tertiary--black.entrypoint:hover, .button.button--tertiary--black:active, .button--tertiary--black.entrypoint:active, .button.button--tertiary--black:focus, .button--tertiary--black.entrypoint:focus {
1944
+ .button.button--tertiary--black:hover, .button.button--tertiary--black:active, .button.button--tertiary--black:focus {
1729
1945
  color: var(--fkds-color-action-text-secondary-default, #1b1e23);
1730
1946
  }
1731
- .button.button--tertiary--black:hover > .button__icon, .button--tertiary--black.entrypoint:hover > .button__icon, .button.button--tertiary--black:active > .button__icon, .button--tertiary--black.entrypoint:active > .button__icon, .button.button--tertiary--black:focus > .button__icon, .button--tertiary--black.entrypoint:focus > .button__icon {
1947
+ .button.button--tertiary--black:hover > .button__icon, .button.button--tertiary--black:active > .button__icon, .button.button--tertiary--black:focus > .button__icon {
1732
1948
  color: var(--fkds-icon-color-action-content-secondary-default, #1b1e23);
1733
1949
  }
1734
- .button.button--tertiary--inverted, .button--tertiary--inverted.entrypoint {
1950
+ .button.button--tertiary--inverted {
1735
1951
  color: var(--fkds-color-action-text-inverted-default, #ffffff);
1736
1952
  }
1737
- .button.button--tertiary--inverted > .button__icon, .button--tertiary--inverted.entrypoint > .button__icon {
1953
+ .button.button--tertiary--inverted > .button__icon {
1738
1954
  color: var(--fkds-icon-color-action-content-inverted-default, #ffffff);
1739
1955
  }
1740
- .button.button--tertiary--inverted:hover, .button--tertiary--inverted.entrypoint:hover, .button.button--tertiary--inverted:active, .button--tertiary--inverted.entrypoint:active, .button.button--tertiary--inverted:focus, .button--tertiary--inverted.entrypoint:focus {
1956
+ .button.button--tertiary--inverted:hover, .button.button--tertiary--inverted:active, .button.button--tertiary--inverted:focus {
1741
1957
  color: var(--fkds-color-action-text-inverted-focus, #ffffff);
1742
1958
  background-color: transparent;
1743
1959
  }
1744
- .button.button--tertiary--inverted:hover > .button__icon, .button--tertiary--inverted.entrypoint:hover > .button__icon, .button.button--tertiary--inverted:active > .button__icon, .button--tertiary--inverted.entrypoint:active > .button__icon, .button.button--tertiary--inverted:focus > .button__icon, .button--tertiary--inverted.entrypoint:focus > .button__icon {
1960
+ .button.button--tertiary--inverted:hover > .button__icon, .button.button--tertiary--inverted:active > .button__icon, .button.button--tertiary--inverted:focus > .button__icon {
1745
1961
  color: var(--fkds-icon-color-action-content-inverted-default, #ffffff);
1746
1962
  }
1747
- .button.button--tertiary--inverted:disabled, .button--tertiary--inverted.entrypoint:disabled {
1963
+ .button.button--tertiary--inverted:disabled {
1748
1964
  color: var(--fkds-color-text-disabled, #8d8e91);
1749
1965
  border-width: 0;
1750
1966
  background-color: transparent;
1751
1967
  }
1752
- .button.button--tertiary--inverted:disabled > .button__icon, .button--tertiary--inverted.entrypoint:disabled > .button__icon {
1968
+ .button.button--tertiary--inverted:disabled > .button__icon {
1753
1969
  color: var(--fkds-icon-color-action-content-primary-disabled, #8d8e91);
1754
1970
  }
1755
- .button.button--tertiary--underline, .button--tertiary--underline.entrypoint {
1971
+ .button.button--tertiary--underline {
1756
1972
  text-decoration: underline;
1757
1973
  text-decoration-thickness: 2px;
1758
1974
  text-underline-offset: 4px;
1759
1975
  }
1760
- .button.button--tertiary--underline:disabled, .button--tertiary--underline.entrypoint:disabled {
1976
+ .button.button--tertiary--underline:disabled {
1761
1977
  text-decoration: none;
1762
1978
  }
1763
- .button.button--tertiary.button--small, .button--tertiary.button--small.entrypoint {
1979
+ .button.button--tertiary.button--small {
1764
1980
  min-width: 24px;
1765
1981
  padding: calc(0.375rem * var(--f-density-factor, 1)) 0.25rem;
1766
1982
  text-underline-offset: 3.5px;
1767
1983
  }
1768
- .button.button--tertiary.button--small.button--align-text, .button--tertiary.button--small.button--align-text.entrypoint {
1984
+ .button.button--tertiary.button--small.button--align-text {
1769
1985
  margin-left: -0.25rem;
1770
1986
  }
1771
- .button.button--tertiary.button--medium, .button--tertiary.button--medium.entrypoint {
1987
+ .button.button--tertiary.button--medium {
1772
1988
  min-width: 8rem;
1773
1989
  /* stylelint-disable declaration-block-no-redundant-longhand-properties -- readability */
1774
1990
  padding-top: calc(var(--f-button-tertiary-padding-top, 0.75rem) * var(--f-density-factor, 1));
@@ -1777,324 +1993,85 @@ input[type=search]:focus,
1777
1993
  padding-left: var(--f-button-tertiary-padding-left, 0.5rem);
1778
1994
  /* stylelint-enable declaration-block-no-redundant-longhand-properties */
1779
1995
  }
1780
- .button.button--tertiary.button--medium.button--align-text, .button--tertiary.button--medium.button--align-text.entrypoint {
1996
+ .button.button--tertiary.button--medium.button--align-text {
1781
1997
  margin-left: -0.5rem;
1782
1998
  }
1783
- .button.button--tertiary.button--large, .button--tertiary.button--large.entrypoint {
1999
+ .button.button--tertiary.button--large {
1784
2000
  min-width: var(--f-button-min-width, 9.5rem);
1785
2001
  padding: calc(1.125rem * var(--f-density-factor, 1)) 0.75rem;
1786
2002
  }
1787
- .button.button--tertiary.button--large.button--align-text, .button--tertiary.button--large.button--align-text.entrypoint {
2003
+ .button.button--tertiary.button--large.button--align-text {
1788
2004
  margin-left: -0.75rem;
1789
2005
  }
1790
- .button.button--tertiary.button--align-text, .button--tertiary.button--align-text.entrypoint {
2006
+ .button.button--tertiary.button--align-text {
1791
2007
  margin-left: -0.5rem;
1792
2008
  min-width: 0;
1793
2009
  }
1794
2010
  @media (max-width: 639.98px) {
1795
- .button.button--tertiary.button--full-width, .button--tertiary.button--full-width.entrypoint {
2011
+ .button.button--tertiary.button--full-width {
1796
2012
  min-width: var(--f-width-full, 100%);
1797
2013
  }
1798
2014
  }
1799
- .button.button--full-width, .button--full-width.entrypoint {
2015
+ .button.button--full-width {
1800
2016
  min-width: var(--f-width-full, 100%);
1801
2017
  }
1802
- .button.button--margin-bottom-0, .button--margin-bottom-0.entrypoint {
2018
+ .button.button--margin-bottom-0 {
1803
2019
  margin-bottom: 0;
1804
2020
  }
1805
- .button.button--small, .button--small.entrypoint {
2021
+ .button.button--small {
1806
2022
  font-size: 14px;
1807
2023
  line-height: 1.25rem;
1808
2024
  min-width: 4rem;
1809
2025
  padding: calc(0.25rem * var(--f-density-factor, 1)) 0.75rem;
1810
2026
  }
1811
2027
  @media (max-width: 639.98px) {
1812
- .button.button--small:not(.button--full-width), .button--small.entrypoint:not(.button--full-width) {
2028
+ .button.button--small:not(.button--full-width) {
1813
2029
  width: auto;
1814
2030
  }
1815
2031
  }
1816
- .button.button--small > .button__icon, .button--small.entrypoint > .button__icon {
2032
+ .button.button--small > .button__icon {
1817
2033
  height: 14px;
1818
2034
  width: 14px;
1819
2035
  }
1820
- .button.button--medium, .button--medium.entrypoint {
2036
+ .button.button--medium {
1821
2037
  line-height: 1.5rem;
1822
2038
  min-width: 8rem;
1823
2039
  padding: calc(0.625rem * var(--f-density-factor, 1)) 1.25rem;
1824
2040
  }
1825
2041
  @media (max-width: 639.98px) {
1826
- .button.button--medium:not(.button--full-width), .button--medium.entrypoint:not(.button--full-width) {
2042
+ .button.button--medium:not(.button--full-width) {
1827
2043
  width: auto;
1828
2044
  }
1829
2045
  }
1830
- .button.button--large, .button--large.entrypoint {
2046
+ .button.button--large {
1831
2047
  line-height: 1.5rem;
1832
2048
  min-width: 9.5rem;
1833
2049
  padding: calc(1rem * var(--f-density-factor, 1)) 1.5rem;
1834
2050
  }
1835
2051
  @media (max-width: 639.98px) {
1836
- .button.button--large, .button--large.entrypoint {
2052
+ .button.button--large {
1837
2053
  max-width: var(--f-width-full, 100%);
1838
2054
  width: var(--f-width-full, 100%);
1839
2055
  }
1840
2056
  }
1841
- .button > .button__icon, .entrypoint > .button__icon {
2057
+ .button > .button__icon {
1842
2058
  margin-right: 0.25rem;
1843
2059
  transform: translate(0, 15%);
1844
2060
  }
1845
- .button > .button__icon:not(:first-child), .entrypoint > .button__icon:not(:first-child) {
2061
+ .button > .button__icon:not(:first-child) {
1846
2062
  margin-left: 0.25rem;
1847
2063
  margin-right: 0;
1848
2064
  }
1849
- .button > .button__icon--end, .entrypoint > .button__icon--end, .button > .entrypoint__icon, .entrypoint > .entrypoint__icon {
2065
+ .button > .button__icon--end {
1850
2066
  position: absolute;
1851
2067
  right: 1.25rem;
1852
2068
  }
1853
- .button.disabled, .disabled.entrypoint, .button.disabled:hover, .button:disabled, .entrypoint:disabled, .button:disabled:hover, .button.button--disabled, .button--disabled.entrypoint {
2069
+ .button.disabled, .button.disabled:hover, .button:disabled, .button:disabled:hover, .button.button--disabled {
1854
2070
  border-width: var(--f-border-width-medium, 2px);
1855
2071
  box-shadow: none;
1856
2072
  cursor: default;
1857
2073
  }
1858
2074
 
1859
- .entrypoint {
1860
- /* stylelint-disable-next-line scss/at-extend-no-missing-placeholder -- technical debt */
1861
- background-color: var(--fkds-color-action-background-primary-default, #4a52b6);
1862
- border-color: transparent;
1863
- border-width: var(--f-border-width-medium, 2px);
1864
- box-shadow: var(--f-button-shadow, 0 1px 3px rgba(0, 0, 0, 0.3));
1865
- color: var(--fkds-color-action-text-inverted-default, #ffffff);
1866
- padding: calc(var(--f-button-primary-padding-top, 1rem) * var(--f-density-factor, 1)) var(--f-button-primary-padding-right, 1.5rem) calc(var(--f-button-primary-padding-bottom, 1rem) * var(--f-density-factor, 1)) var(--f-button-primary-padding-left, 1.5rem);
1867
- }
1868
- .entrypoint > .button__icon {
1869
- color: var(--fkds-color-action-text-inverted-default, #ffffff);
1870
- }
1871
- .entrypoint:hover {
1872
- background-color: var(--fkds-color-action-background-primary-hover, #3b4292);
1873
- border-color: transparent;
1874
- color: var(--fkds-color-action-text-inverted-default, #ffffff);
1875
- box-shadow: var(--f-button-shadow-hover, 0 1px 3px rgba(0, 0, 0, 0.3));
1876
- }
1877
- .entrypoint:hover > .button__icon {
1878
- color: var(--fkds-color-action-text-inverted-default, #ffffff);
1879
- }
1880
- .entrypoint:active, .entrypoint:focus {
1881
- border-radius: 0;
1882
- box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #ffffff, 0 0 0 4px #1b1e23, 0 0 0 6px #ffffff);
1883
- outline: 2px solid transparent;
1884
- background-color: var(--fkds-color-action-background-primary-hover, #3b4292);
1885
- border-color: transparent;
1886
- color: var(--fkds-color-action-text-inverted-default, #ffffff);
1887
- }
1888
- .entrypoint:active > .button__icon, .entrypoint:focus > .button__icon {
1889
- color: var(--fkds-color-action-text-inverted-default, #ffffff);
1890
- }
1891
- .entrypoint.disabled, .entrypoint.disabled:hover, .entrypoint:disabled, .entrypoint:disabled:hover, .entrypoint.entrypoint--disabled, .entrypoint.entrypoint--disabled:hover {
1892
- background-color: var(--fkds-color-action-background-disabled, #f4f4f4);
1893
- border-color: var(--fkds-color-action-border-disabled, #8d8e91);
1894
- color: var(--fkds-color-action-text-disabled, #8d8e91);
1895
- }
1896
- .entrypoint.disabled > .button__icon, .entrypoint.disabled:hover > .button__icon, .entrypoint:disabled > .button__icon, .entrypoint:disabled:hover > .button__icon, .entrypoint.entrypoint--disabled > .button__icon, .entrypoint.entrypoint--disabled:hover > .button__icon {
1897
- color: var(--fkds-color-action-text-disabled, #8d8e91);
1898
- }
1899
- .entrypoint {
1900
- text-align: left;
1901
- padding: 1rem 4rem 1rem 1rem;
1902
- line-height: var(--f-line-height-large, 1.5);
1903
- width: 100%;
1904
- }
1905
- .entrypoint__icon {
1906
- /* stylelint-disable-next-line scss/at-extend-no-missing-placeholder -- technical debt */
1907
- color: var(--f-icon-color-white, #ffffff);
1908
- top: 50%;
1909
- transform: translate(0, -50%);
1910
- }
1911
- .entrypoint:hover {
1912
- padding-bottom: 1rem;
1913
- }
1914
-
1915
- .page-header {
1916
- display: flex;
1917
- flex-direction: row;
1918
- width: 100%;
1919
- color: var(--f-text-color-default-inverted, #ffffff);
1920
- background-color: var(--f-background-pageheader-primary, #116a3e);
1921
- padding: 1rem 0 1rem 1rem;
1922
- align-items: center;
1923
- overflow: hidden;
1924
- }
1925
- .page-header__logo {
1926
- display: flex;
1927
- margin: 0;
1928
- padding: 0;
1929
- align-items: center;
1930
- box-sizing: border-box;
1931
- }
1932
- .page-header__logo > a {
1933
- display: inline-flex;
1934
- }
1935
- .page-header__logo::after {
1936
- content: " ";
1937
- background-color: var(--f-border-color-separator-pageheader-primary, #ffffff);
1938
- height: 1.38rem;
1939
- padding: 0.5px;
1940
- margin: 0 1rem 0.155rem;
1941
- }
1942
- .page-header__app-name {
1943
- padding-top: 0.22rem;
1944
- margin: 0;
1945
- font-size: var(--f-font-size-h3, 1.375rem);
1946
- font-weight: var(--f-font-weight-medium, 700);
1947
- color: var(--f-text-color-default-inverted, #ffffff);
1948
- white-space: nowrap;
1949
- overflow: hidden;
1950
- text-overflow: ellipsis;
1951
- min-width: 9rem;
1952
- }
1953
- .page-header__right {
1954
- display: flex;
1955
- justify-content: flex-end;
1956
- align-items: center;
1957
- flex-grow: 1;
1958
- white-space: nowrap;
1959
- padding-top: 0.4rem;
1960
- font-size: var(--f-font-size-standard, 1rem);
1961
- }
1962
- .page-header__right-slot {
1963
- padding-left: 1rem;
1964
- padding-right: 1rem;
1965
- }
1966
-
1967
- .card {
1968
- padding: calc(1rem * var(--f-density-factor, 1)) 1rem;
1969
- margin: calc(1rem * var(--f-density-factor, 1)) 0;
1970
- }
1971
- .card--default {
1972
- border-radius: var(--f-border-radius-medium, 4px);
1973
- border: var(--f-border-width-medium, 2px) solid var(--f-border-color-card, #8d8e91);
1974
- }
1975
- .card--error {
1976
- border-radius: var(--f-border-radius-medium, 4px);
1977
- border: var(--f-border-width-medium, 2px) solid var(--fkds-color-feedback-border-negative, #ca1515);
1978
- }
1979
- .card__content > p:last-child,
1980
- .card__content > div:last-child {
1981
- margin-bottom: 0;
1982
- }
1983
- .card__content > p:last-child > *:last-child,
1984
- .card__content > div:last-child > *:last-child {
1985
- margin-bottom: 0;
1986
- }
1987
- .card__header-label {
1988
- color: var(--f-text-color-default, #1b1e23);
1989
- font-size: var(--f-font-size-large, 1.125rem);
1990
- font-weight: var(--f-font-weight-bold, 900);
1991
- line-height: var(--f-line-height-large, 1.5);
1992
- margin-bottom: calc(0.25rem * var(--f-density-factor, 1));
1993
- display: block;
1994
- }
1995
- .card__footer {
1996
- padding-top: calc(1.25rem * var(--f-density-factor, 1));
1997
- }
1998
- .card__footer > .button-group {
1999
- margin-bottom: 0;
2000
- }
2001
- .card__footer > .button-group .button-group__item {
2002
- margin-bottom: 0 !important;
2003
- }
2004
- .card__error-message {
2005
- color: var(--f-text-color-error, #d23838);
2006
- }
2007
-
2008
- .anchor, .file-item__file-open {
2009
- color: var(--f-text-color-link, #4a52b6);
2010
- text-decoration: underline;
2011
- text-decoration-thickness: 2px;
2012
- text-underline-offset: 0.25em;
2013
- text-decoration-color: var(--f-text-color-link, #4a52b6);
2014
- font-weight: var(--f-font-weight-medium, 700);
2015
- }
2016
- .anchor:hover, .file-item__file-open:hover {
2017
- color: var(--f-text-color-link-hover, #1b1e23);
2018
- text-decoration-color: var(--f-border-color-link-hover, #8d8e91);
2019
- }
2020
- .anchor.anchor--block, .file-item__file-open {
2021
- display: inline-flex;
2022
- }
2023
- .anchor.anchor--block > svg, .file-item__file-open > svg, .anchor.anchor--block > .icon-stack, .file-item__file-open > .icon-stack {
2024
- flex-shrink: 0;
2025
- margin: calc((var(--f-line-height-large, 1.5) * 1rem - var(--f-icon-size-small, 1rem)) / 2) 0.25rem 0;
2026
- }
2027
- .anchor.anchor--discrete, .anchor--discrete.file-item__file-open {
2028
- color: var(--f-text-color-link-discrete, #1b1e23);
2029
- text-decoration-color: var(--f-border-color-link-discrete, #8d8e91);
2030
- }
2031
- .anchor.anchor--discrete:hover, .anchor--discrete.file-item__file-open:hover {
2032
- color: var(--f-text-color-link-discrete-hover, #4a52b6);
2033
- text-decoration-color: var(--f-text-color-link-discrete-hover, #4a52b6);
2034
- }
2035
-
2036
- .badge {
2037
- border-radius: var(--f-border-radius-medium, 4px);
2038
- border-style: solid;
2039
- border-width: var(--f-border-width-small, 1px);
2040
- box-sizing: border-box;
2041
- display: inline-block;
2042
- font-size: var(--f-font-size-standard, 1rem);
2043
- line-height: calc(var(--f-line-height-large, 1.5) * var(--f-density-factor, 1));
2044
- font-weight: var(--f-font-weight-normal, 400);
2045
- padding: 0 0.5rem;
2046
- }
2047
- .badge--default {
2048
- color: var(--fkds-color-text-primary, #1b1e23);
2049
- background-color: var(--fkds-color-feedback-background-neutral-strong, #ddddde);
2050
- border-color: var(--fkds-color-feedback-background-neutral-strong, #ddddde);
2051
- }
2052
- .badge--default-inverted {
2053
- color: var(--fkds-color-text-primary, #1b1e23);
2054
- background-color: var(--fkds-color-feedback-background-neutral, #f4f4f4);
2055
- border-color: var(--fkds-color-feedback-border-neutral, #8d8e91);
2056
- }
2057
- .badge--warning {
2058
- color: var(--fkds-color-text-primary, #1b1e23);
2059
- background-color: var(--fkds-color-feedback-background-warning-strong, #ffbe10);
2060
- border-color: var(--fkds-color-feedback-background-warning-strong, #ffbe10);
2061
- }
2062
- .badge--warning-inverted {
2063
- color: var(--fkds-color-text-primary, #1b1e23);
2064
- background-color: var(--fkds-color-feedback-background-warning, #fffcf3);
2065
- border-color: var(--fkds-color-feedback-border-warning, #ffbe10);
2066
- }
2067
- .badge--error {
2068
- color: var(--fkds-color-text-inverted, #ffffff);
2069
- background-color: var(--fkds-color-feedback-background-negative-strong, #ca1515);
2070
- border-color: var(--fkds-color-feedback-background-negative-strong, #ca1515);
2071
- }
2072
- .badge--error-inverted {
2073
- color: var(--fkds-color-text-primary, #1b1e23);
2074
- background-color: var(--fkds-color-feedback-background-negative, #fcf3f3);
2075
- border-color: var(--fkds-color-feedback-border-negative, #ca1515);
2076
- }
2077
- .badge--success {
2078
- color: var(--fkds-color-text-inverted, #ffffff);
2079
- background-color: var(--fkds-color-feedback-background-positive-strong, #35805b);
2080
- border-color: var(--fkds-color-feedback-background-positive-strong, #35805b);
2081
- }
2082
- .badge--success-inverted {
2083
- color: var(--fkds-color-text-primary, #1b1e23);
2084
- background-color: var(--fkds-color-feedback-background-positive, #f3f8f5);
2085
- border-color: var(--fkds-color-feedback-border-positive, #35805b);
2086
- }
2087
- .badge--info {
2088
- color: var(--fkds-color-text-inverted, #ffffff);
2089
- background-color: var(--fkds-color-feedback-background-info-strong, #4a52b6);
2090
- border-color: var(--fkds-color-feedback-background-info-strong, #4a52b6);
2091
- }
2092
- .badge--info-inverted {
2093
- color: var(--fkds-color-text-primary, #1b1e23);
2094
- background-color: var(--fkds-color-feedback-background-info, #f5f6fa);
2095
- border-color: var(--fkds-color-feedback-border-info, #4a52b6);
2096
- }
2097
-
2098
2075
  .calendar-day {
2099
2076
  align-items: center;
2100
2077
  display: inline-flex;
@@ -2650,11 +2627,6 @@ input[type=search]:focus,
2650
2627
  background: var(--f-background-grid-hover, #f5f6fa);
2651
2628
  }
2652
2629
 
2653
- .radio-button-group--border .radio-button-group__content .radio-button:has(input:checked), .checkbox-group--border .checkbox-group__content .checkbox:has(input:checked), .list--hover .list__item:focus-within.list__item--selected,
2654
- .list--hover .list__item:hover.list__item--selected, .list__item--selected {
2655
- background: var(--f-background-grid-selected, #f5f6fa);
2656
- }
2657
-
2658
2630
  .list--hover .list__item:focus-within.list__item--active,
2659
2631
  .list--hover .list__item:hover.list__item--active, .list__item--active {
2660
2632
  background: var(--f-background-grid-active, #e5e5f5);
@@ -5346,11 +5318,6 @@ input[type=search]:focus,
5346
5318
  box-shadow: none;
5347
5319
  }
5348
5320
 
5349
- .table--hover tbody .table__row:hover.table__row--selected, .table--striped tbody .table__row:nth-child(even).table__row--selected, .table tbody .table__row--selected, .table tbody .table__row:focus.table__row--selected, .table tbody .table__row--focus.table__row--selected, .table tbody .table__row:focus-within.table__row--selected, .table tbody .table__row--focus-within.table__row--selected {
5350
- background: var(--f-background-grid-selected, #f5f6fa);
5351
- color: var(--f-text-color-default, #1b1e23);
5352
- }
5353
-
5354
5321
  .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 {
5355
5322
  background: var(--f-background-grid-active, #e5e5f5);
5356
5323
  color: var(--f-text-color-default, #1b1e23);
@@ -5395,6 +5362,7 @@ input[type=search]:focus,
5395
5362
  font-weight: var(--f-font-weight-medium, 700);
5396
5363
  line-height: var(--f-line-height-large, 1.5);
5397
5364
  padding: calc(0.25rem * var(--f-density-factor, 1)) 0.5rem;
5365
+ text-align: left;
5398
5366
  vertical-align: top;
5399
5367
  }
5400
5368
  .table thead th:last-child {
@@ -5410,7 +5378,7 @@ input[type=search]:focus,
5410
5378
  color: var(--f-icon-color-table-header-discrete, #8d8e91);
5411
5379
  }
5412
5380
  .table tbody .table__expandable-row--collapsed {
5413
- visibility: collapse;
5381
+ display: none;
5414
5382
  }
5415
5383
  .table tbody td,
5416
5384
  .table tbody th {
@@ -5850,7 +5818,7 @@ input[type=search]:focus,
5850
5818
  display: none;
5851
5819
  }
5852
5820
  .wizard-step .wizard-step__header__step-of {
5853
- color: var(--f-text-color-discrete, #5f6165);
5821
+ color: var(--fkds-color-text-secondary, #5f6165);
5854
5822
  font-weight: normal;
5855
5823
  font-size: 1rem;
5856
5824
  }
@@ -5861,7 +5829,7 @@ input[type=search]:focus,
5861
5829
  height: 13px;
5862
5830
  margin-top: 4px;
5863
5831
  width: 2px;
5864
- background-color: var(--f-background-wizard-step-line, #5f6165);
5832
+ background-color: var(--fkds-color-border-strong, #5f6165);
5865
5833
  }
5866
5834
  .wizard-step .wizard-step__header__line-up {
5867
5835
  margin-left: 14px;
@@ -5869,7 +5837,12 @@ input[type=search]:focus,
5869
5837
  width: 2px;
5870
5838
  margin-top: 4px;
5871
5839
  margin-bottom: 4px;
5872
- background-color: var(--f-background-wizard-step-line, #5f6165);
5840
+ background-color: var(--fkds-color-border-strong, #5f6165);
5841
+ }
5842
+ @media (forced-colors: active) {
5843
+ .wizard-step .wizard-step__header__line-up, .wizard-step .wizard-step__header__line-down {
5844
+ background-color: CanvasText;
5845
+ }
5873
5846
  }
5874
5847
  @media (min-width: 640px) {
5875
5848
  .wizard-step .wizard-step__header__line-up {
@@ -5878,7 +5851,7 @@ input[type=search]:focus,
5878
5851
  }
5879
5852
  @media (min-width: 640px) {
5880
5853
  .wizard-step__connector {
5881
- border-left: 2px solid var(--f-border-color-wizard-step-line, #5f6165);
5854
+ border-left: 2px solid var(--fkds-color-border-strong, #5f6165);
5882
5855
  padding-left: 22px;
5883
5856
  margin-top: -3px;
5884
5857
  margin-left: 4px;
@@ -5887,11 +5860,11 @@ input[type=search]:focus,
5887
5860
  }
5888
5861
  }
5889
5862
  .wizard-step--open .wizard-step__header .wizard-step__header__title {
5890
- color: var(--f-text-color-default, #1b1e23);
5863
+ color: var(--fkds-color-text-primary, #1b1e23);
5891
5864
  }
5892
5865
  .wizard-step--open .wizard-step__header .icon.f-icon-circle {
5893
- fill: var(--f-icon-color-discrete, #5f6165);
5894
- color: var(--f-icon-color-white, #ffffff);
5866
+ fill: var(--fkds-color-border-strong, #5f6165);
5867
+ color: var(--fkds-color-background-primary, #ffffff);
5895
5868
  }
5896
5869
  .wizard-step--open .wizard-step__header .icon-stack div {
5897
5870
  color: var(--f-icon-color-black, #1b1e23);
@@ -5908,15 +5881,25 @@ input[type=search]:focus,
5908
5881
  .wizard-step--open .wizard-step__header .wizard-step__header__line-down {
5909
5882
  margin-bottom: 0;
5910
5883
  }
5884
+ @media (forced-colors: active) {
5885
+ .wizard-step--open .wizard-step__header .icon.f-icon-circle {
5886
+ fill: CanvasText;
5887
+ color: Canvas;
5888
+ }
5889
+ }
5911
5890
  .wizard-step--done .wizard-step__header {
5912
5891
  margin-top: 4px;
5913
5892
  }
5914
5893
  .wizard-step--done .wizard-step__header .wizard-step__header__title {
5915
- color: var(--f-text-color-wizard-step-done, #35805b);
5916
- text-decoration-color: var(--f-text-color-wizard-step-done, #35805b);
5894
+ color: var(--fkds-color-feedback-text-positive, #35805b);
5895
+ text-decoration-color: var(--fkds-color-feedback-text-positive, #35805b);
5896
+ text-decoration-thickness: 2px;
5897
+ text-underline-offset: 0.25em;
5917
5898
  }
5918
5899
  .wizard-step--done .wizard-step__header .wizard-step__header__title:hover {
5919
- text-decoration-color: var(--f-text-color-link-hover, #1b1e23);
5900
+ text-decoration-color: var(--fkds-color-feedback-text-positive, #35805b);
5901
+ text-decoration-thickness: 3px;
5902
+ text-underline-offset: 0.25em;
5920
5903
  }
5921
5904
  .wizard-step--done .wizard-step__header .wizard-step__header__line-up {
5922
5905
  display: none;
@@ -5925,15 +5908,15 @@ input[type=search]:focus,
5925
5908
  margin-bottom: 0;
5926
5909
  }
5927
5910
  .wizard-step--done .wizard-step__header .icon.f-icon-circle {
5928
- fill: var(--f-icon-color-wizard-step-done, #35805b);
5929
- color: var(--f-icon-color-wizard-step-done, #35805b);
5911
+ fill: var(--fkds-color-feedback-border-positive, #35805b);
5912
+ color: var(--fkds-color-feedback-background-positive-strong, #35805b);
5930
5913
  }
5931
5914
  .wizard-step--done .wizard-step__header .icon-stack div {
5932
5915
  display: none;
5933
5916
  }
5934
5917
  .wizard-step--done .wizard-step__header .icon.f-icon-success {
5935
5918
  display: block;
5936
- color: var(--f-icon-color-white, #ffffff);
5919
+ color: var(--fkds-icon-color-content-inverted, #ffffff);
5937
5920
  width: 20px;
5938
5921
  height: 20px;
5939
5922
  left: 5px;
@@ -5942,6 +5925,15 @@ input[type=search]:focus,
5942
5925
  .wizard-step--done .wizard-step__header .wizard-step__header__line-adjustment {
5943
5926
  height: calc(13px + 4px);
5944
5927
  }
5928
+ @media (forced-colors: active) {
5929
+ .wizard-step--done .wizard-step__header .icon.f-icon-circle {
5930
+ fill: CanvasText;
5931
+ color: Canvas;
5932
+ }
5933
+ .wizard-step--done .wizard-step__header .icon.f-icon-success {
5934
+ color: CanvasText;
5935
+ }
5936
+ }
5945
5937
  .wizard-step--pending .wizard-step__header .wizard-step__header__title {
5946
5938
  color: var(--f-text-color-discrete, #5f6165);
5947
5939
  }
@@ -5949,8 +5941,8 @@ input[type=search]:focus,
5949
5941
  color: var(--f-icon-color-discrete, #5f6165);
5950
5942
  }
5951
5943
  .wizard-step--pending .wizard-step__header .icon.f-icon-circle {
5952
- color: var(--f-icon-color-wizard-step-pending, #f4f4f4);
5953
- fill: var(--f-text-color-discrete, #5f6165);
5944
+ fill: var(--fkds-color-border-strong, #5f6165);
5945
+ color: var(--fkds-color-background-disabled, #f4f4f4);
5954
5946
  }
5955
5947
  .wizard-step--pending .wizard-step__header .iflex--grow {
5956
5948
  padding-top: 0;
@@ -5958,6 +5950,12 @@ input[type=search]:focus,
5958
5950
  .wizard-step--pending .wizard-step__header .wizard-step__header__line-adjustment {
5959
5951
  height: calc(13px + 4px * 2);
5960
5952
  }
5953
+ @media (forced-colors: active) {
5954
+ .wizard-step--pending .wizard-step__header .icon.f-icon-circle {
5955
+ fill: CanvasText;
5956
+ color: Canvas;
5957
+ }
5958
+ }
5961
5959
 
5962
5960
  .wizard-step--pending + .wizard-step .wizard-step__header__line-up {
5963
5961
  display: none;