@fkui/design 6.37.0 → 6.39.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 +437 -184
- package/lib/fkui.min.css +1 -1
- package/package.json +9 -9
- package/src/components/button/_button.scss +4 -0
- package/src/components/checkbox/_checkbox.scss +1 -0
- package/src/components/contextmenu/_contextmenu.scss +1 -0
- package/src/components/expandable-panel/_variables.scss +2 -2
- package/src/components/icon/_icon-stack.scss +170 -0
- package/src/components/icon/_icon.scss +0 -118
- package/src/components/icon/_index.scss +1 -0
- package/src/components/navigation-menu/_navigation-menu.scss +22 -0
- package/src/components/offline/_offline.scss +1 -0
- package/src/components/page-header/_page-header.scss +0 -1
- package/src/components/page-header/_variables.scss +0 -1
- package/src/components/paginator/_paginator.scss +4 -1
- package/src/components/radio-button/_radio-button.scss +2 -0
- package/src/components/table-ng/_cell.scss +112 -42
- package/src/components/table-ng/_column.scss +1 -0
- package/src/components/table-ng/_table-ng.scss +8 -1
- package/src/components/table-ng/_variables.scss +11 -0
- package/src/components/text-field/_text-field.scss +4 -0
- package/src/internal-components/popup-error/_popup-error.scss +16 -2
- package/src/internal-components/popup-menu/_popup-menu.scss +15 -0
package/lib/fkui.css
CHANGED
|
@@ -87,7 +87,7 @@ p {
|
|
|
87
87
|
|
|
88
88
|
b,
|
|
89
89
|
strong {
|
|
90
|
-
font-weight: var(--f-font-weight-medium,
|
|
90
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
code {
|
|
@@ -115,7 +115,7 @@ h5,
|
|
|
115
115
|
.heading--h5,
|
|
116
116
|
h6,
|
|
117
117
|
.heading--h6 {
|
|
118
|
-
font-weight: var(--f-font-weight-bold,
|
|
118
|
+
font-weight: var(--f-font-weight-bold, 700);
|
|
119
119
|
margin-bottom: 0.25rem;
|
|
120
120
|
line-height: var(--f-line-height-medium, 1.4);
|
|
121
121
|
}
|
|
@@ -152,7 +152,7 @@ h6, .heading--h6 {
|
|
|
152
152
|
|
|
153
153
|
.heading--strong {
|
|
154
154
|
font-size: var(--f-font-size-large, 1.125rem);
|
|
155
|
-
font-weight: var(--f-font-weight-medium,
|
|
155
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
* + h1, * + .heading--h1,
|
|
@@ -190,7 +190,7 @@ h6, .heading--h6 {
|
|
|
190
190
|
}
|
|
191
191
|
.heading--strong {
|
|
192
192
|
font-size: var(--f-font-size-large, 1.125rem);
|
|
193
|
-
font-weight: var(--f-font-weight-medium,
|
|
193
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
194
194
|
}
|
|
195
195
|
}
|
|
196
196
|
.heading--h1 {
|
|
@@ -1096,7 +1096,7 @@ input[type=search]:focus,
|
|
|
1096
1096
|
text-decoration-thickness: 2px;
|
|
1097
1097
|
text-underline-offset: 0.25em;
|
|
1098
1098
|
text-decoration-color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
1099
|
-
font-weight: var(--f-font-weight-medium,
|
|
1099
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
1100
1100
|
line-height: var(--f-line-height-large, 1.5);
|
|
1101
1101
|
}
|
|
1102
1102
|
.anchor:hover, .file-item__file-open:hover {
|
|
@@ -1270,7 +1270,7 @@ input[type=search]:focus,
|
|
|
1270
1270
|
cursor: pointer;
|
|
1271
1271
|
display: inline-block;
|
|
1272
1272
|
font-size: var(--f-font-size-standard, 1rem);
|
|
1273
|
-
font-weight: var(--f-font-weight-medium,
|
|
1273
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
1274
1274
|
justify-content: center;
|
|
1275
1275
|
align-items: center;
|
|
1276
1276
|
letter-spacing: var(--f-button-letter-spacing, 0.01rem);
|
|
@@ -1389,9 +1389,10 @@ input[type=search]:focus,
|
|
|
1389
1389
|
.button.button--discrete, .button--discrete.calendar-navbar__year-selector-button, .button.button--text, .button--text.calendar-navbar__year-selector-button {
|
|
1390
1390
|
width: inherit;
|
|
1391
1391
|
min-width: 0;
|
|
1392
|
-
font-weight: var(--f-font-weight-bold,
|
|
1392
|
+
font-weight: var(--f-font-weight-bold, 700);
|
|
1393
1393
|
outline-offset: 0.25rem;
|
|
1394
1394
|
line-height: calc(1.25 * var(--f-font-size-standard, 1rem));
|
|
1395
|
+
align-items: flex-start;
|
|
1395
1396
|
background-color: transparent;
|
|
1396
1397
|
border-color: transparent;
|
|
1397
1398
|
border-width: 0;
|
|
@@ -1439,10 +1440,13 @@ input[type=search]:focus,
|
|
|
1439
1440
|
.button.button--discrete, .button--discrete.calendar-navbar__year-selector-button, .button.button--text, .button--text.calendar-navbar__year-selector-button, .button.button--discrete:focus, .button.button--discrete:active, .button.button--discrete:hover {
|
|
1440
1441
|
border-radius: var(--f-button-discrete-radius-hover, none);
|
|
1441
1442
|
}
|
|
1443
|
+
.button.button--discrete > .button__icon, .button--discrete.calendar-navbar__year-selector-button > .button__icon, .button.button--text > .button__icon, .button--text.calendar-navbar__year-selector-button > .button__icon {
|
|
1444
|
+
flex-shrink: 0;
|
|
1445
|
+
}
|
|
1442
1446
|
.button.button--discrete-inverted, .button--discrete-inverted.calendar-navbar__year-selector-button {
|
|
1443
1447
|
width: inherit;
|
|
1444
1448
|
min-width: 0;
|
|
1445
|
-
font-weight: var(--f-font-weight-bold,
|
|
1449
|
+
font-weight: var(--f-font-weight-bold, 700);
|
|
1446
1450
|
outline-offset: 0.25rem;
|
|
1447
1451
|
/* stylelint-disable declaration-block-no-redundant-longhand-properties -- readability */
|
|
1448
1452
|
padding-top: calc(var(--f-button-discrete-padding-top, initial) * var(--f-density-factor, 1));
|
|
@@ -1488,7 +1492,7 @@ input[type=search]:focus,
|
|
|
1488
1492
|
.button.button--tertiary, .calendar-navbar__year-selector-button {
|
|
1489
1493
|
width: inherit;
|
|
1490
1494
|
min-width: 0;
|
|
1491
|
-
font-weight: var(--f-font-weight-medium,
|
|
1495
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
1492
1496
|
outline-offset: 0.25rem;
|
|
1493
1497
|
background-color: transparent;
|
|
1494
1498
|
border-color: transparent;
|
|
@@ -1703,7 +1707,7 @@ input[type=search]:focus,
|
|
|
1703
1707
|
.calendar-day {
|
|
1704
1708
|
align-items: center;
|
|
1705
1709
|
display: inline-flex;
|
|
1706
|
-
font-weight: var(--f-font-weight-medium,
|
|
1710
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
1707
1711
|
justify-content: center;
|
|
1708
1712
|
height: 2.75rem;
|
|
1709
1713
|
width: 100%;
|
|
@@ -1824,7 +1828,7 @@ input[type=search]:focus,
|
|
|
1824
1828
|
.card__header-label {
|
|
1825
1829
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
1826
1830
|
font-size: var(--f-font-size-large, 1.125rem);
|
|
1827
|
-
font-weight: var(--f-font-weight-bold,
|
|
1831
|
+
font-weight: var(--f-font-weight-bold, 700);
|
|
1828
1832
|
line-height: var(--f-line-height-large, 1.5);
|
|
1829
1833
|
margin-bottom: calc(0.25rem * var(--f-density-factor, 1));
|
|
1830
1834
|
display: block;
|
|
@@ -2025,6 +2029,7 @@ input[type=search]:focus,
|
|
|
2025
2029
|
}
|
|
2026
2030
|
}
|
|
2027
2031
|
.checkbox.disabled .checkbox__label {
|
|
2032
|
+
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
2028
2033
|
cursor: default;
|
|
2029
2034
|
}
|
|
2030
2035
|
.checkbox.disabled .checkbox__label::before {
|
|
@@ -2087,7 +2092,7 @@ input[type=search]:focus,
|
|
|
2087
2092
|
display: flex;
|
|
2088
2093
|
align-items: center;
|
|
2089
2094
|
cursor: pointer;
|
|
2090
|
-
font-weight: var(--f-font-weight-medium,
|
|
2095
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
2091
2096
|
padding: 0.5rem 1rem;
|
|
2092
2097
|
border-radius: 20px;
|
|
2093
2098
|
border: var(--f-border-width-medium, 2px) solid var(--fkds-color-border-primary, #8d8e91);
|
|
@@ -2170,7 +2175,7 @@ input[type=search]:focus,
|
|
|
2170
2175
|
display: flex;
|
|
2171
2176
|
align-items: center;
|
|
2172
2177
|
cursor: pointer;
|
|
2173
|
-
font-weight: var(--f-font-weight-medium,
|
|
2178
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
2174
2179
|
padding: 0.5rem 1rem;
|
|
2175
2180
|
border-radius: 20px;
|
|
2176
2181
|
border: var(--f-border-width-medium, 2px) solid var(--fkds-color-border-primary, #8d8e91);
|
|
@@ -2279,7 +2284,7 @@ input[type=search]:focus,
|
|
|
2279
2284
|
.calendar__year-selector__year--highlight, .combobox__listbox__option--highlight {
|
|
2280
2285
|
background-color: var(--fkds-color-select-background-primary-default, #4a52b6);
|
|
2281
2286
|
color: var(--fkds-color-text-inverted, #fff);
|
|
2282
|
-
font-weight: var(--f-font-weight-medium,
|
|
2287
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
2283
2288
|
}
|
|
2284
2289
|
@media (forced-colors: active) {
|
|
2285
2290
|
.calendar__year-selector__year--highlight, .combobox__listbox__option--highlight {
|
|
@@ -2318,6 +2323,7 @@ input[type=search]:focus,
|
|
|
2318
2323
|
display: flex;
|
|
2319
2324
|
align-items: center;
|
|
2320
2325
|
padding: 0.75rem;
|
|
2326
|
+
margin: 0.5rem 0;
|
|
2321
2327
|
}
|
|
2322
2328
|
.contextmenu__list__item a,
|
|
2323
2329
|
.contextmenu__list__item a:visited,
|
|
@@ -2457,7 +2463,7 @@ input[type=search]:focus,
|
|
|
2457
2463
|
-webkit-line-clamp: 2;
|
|
2458
2464
|
-webkit-box-orient: vertical;
|
|
2459
2465
|
overflow: hidden;
|
|
2460
|
-
font-weight: var(--f-font-weight-medium,
|
|
2466
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
2461
2467
|
font-size: var(--f-font-size-standard, 1rem);
|
|
2462
2468
|
text-align: left;
|
|
2463
2469
|
cursor: pointer;
|
|
@@ -2474,7 +2480,7 @@ input[type=search]:focus,
|
|
|
2474
2480
|
border-radius: var(--f-border-radius-medium, 4px);
|
|
2475
2481
|
box-shadow: var(--f-button-shadow, 0 1px 3px rgba(0,0,0,.3));
|
|
2476
2482
|
font-size: var(--f-font-size-standard, 1rem);
|
|
2477
|
-
font-weight: var(--f-font-weight-medium,
|
|
2483
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
2478
2484
|
transition: background-color var(--f-animation-duration-medium, 350ms) ease-out;
|
|
2479
2485
|
display: inline-flex;
|
|
2480
2486
|
justify-content: space-between;
|
|
@@ -2539,8 +2545,8 @@ input[type=search]:focus,
|
|
|
2539
2545
|
display: list-item;
|
|
2540
2546
|
}
|
|
2541
2547
|
|
|
2542
|
-
.offline .icon, .icon
|
|
2543
|
-
.icon--stack {
|
|
2548
|
+
.offline .icon, .icon-stack,
|
|
2549
|
+
.icon--stack, .offline .icon-stack, .icon {
|
|
2544
2550
|
display: inline-block;
|
|
2545
2551
|
height: var(--f-icon-size-small, 1rem);
|
|
2546
2552
|
max-height: 100%;
|
|
@@ -2559,15 +2565,6 @@ input[type=search]:focus,
|
|
|
2559
2565
|
width: var(--f-icon-size-large, 1.5rem);
|
|
2560
2566
|
}
|
|
2561
2567
|
|
|
2562
|
-
.offline .icon-stack, .icon-stack,
|
|
2563
|
-
.icon--stack {
|
|
2564
|
-
position: relative;
|
|
2565
|
-
}
|
|
2566
|
-
.icon-stack .icon,
|
|
2567
|
-
.icon--stack .icon {
|
|
2568
|
-
position: absolute;
|
|
2569
|
-
}
|
|
2570
|
-
|
|
2571
2568
|
.icon--flip-horizontal {
|
|
2572
2569
|
transform: scaleX(-1);
|
|
2573
2570
|
}
|
|
@@ -2584,14 +2581,12 @@ input[type=search]:focus,
|
|
|
2584
2581
|
transform: rotate(270deg);
|
|
2585
2582
|
}
|
|
2586
2583
|
|
|
2587
|
-
.icon-stack--new-window .icon.f-icon-new-window,
|
|
2588
2584
|
.icon--new-window .icon.f-icon-new-window {
|
|
2589
2585
|
width: 55%;
|
|
2590
2586
|
height: 55%;
|
|
2591
2587
|
top: 0;
|
|
2592
2588
|
right: 0;
|
|
2593
2589
|
}
|
|
2594
|
-
.icon-stack--new-window .icon:not(.f-icon-new-window),
|
|
2595
2590
|
.icon--new-window .icon:not(.f-icon-new-window) {
|
|
2596
2591
|
width: 83%;
|
|
2597
2592
|
height: 83%;
|
|
@@ -2599,101 +2594,6 @@ input[type=search]:focus,
|
|
|
2599
2594
|
left: 5%;
|
|
2600
2595
|
}
|
|
2601
2596
|
|
|
2602
|
-
.icon-stack--tooltip .f-icon-circle,
|
|
2603
|
-
.icon--stack--tooltip .f-icon-circle {
|
|
2604
|
-
fill: var(--fkds-color-action-background-primary-default, #4a52b6);
|
|
2605
|
-
color: var(--fkds-color-action-border-primary-default, #4a52b6);
|
|
2606
|
-
}
|
|
2607
|
-
.icon-stack--tooltip .f-icon-i,
|
|
2608
|
-
.icon--stack--tooltip .f-icon-i {
|
|
2609
|
-
color: var(--fkds-color-text-inverted, #fff);
|
|
2610
|
-
}
|
|
2611
|
-
.icon-stack--info .f-icon-circle,
|
|
2612
|
-
.icon--stack--info .f-icon-circle {
|
|
2613
|
-
color: var(--fkds-color-feedback-background-info, #f5f6fa);
|
|
2614
|
-
fill: var(--fkds-color-feedback-border-info, #4a52b6);
|
|
2615
|
-
}
|
|
2616
|
-
.icon-stack--info .f-icon-i,
|
|
2617
|
-
.icon--stack--info .f-icon-i {
|
|
2618
|
-
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2619
|
-
}
|
|
2620
|
-
.icon-stack--warning .f-icon-circle,
|
|
2621
|
-
.icon--stack--warning .f-icon-circle {
|
|
2622
|
-
color: var(--fkds-color-feedback-background-warning, #fffcf3);
|
|
2623
|
-
fill: var(--fkds-color-feedback-border-warning, #ffbe10);
|
|
2624
|
-
}
|
|
2625
|
-
.icon-stack--warning .f-icon-alert,
|
|
2626
|
-
.icon--stack--warning .f-icon-alert {
|
|
2627
|
-
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2628
|
-
}
|
|
2629
|
-
.icon-stack--error .f-icon-triangle,
|
|
2630
|
-
.icon--stack--error .f-icon-triangle {
|
|
2631
|
-
color: var(--fkds-color-feedback-background-negative, #fcf3f3);
|
|
2632
|
-
fill: var(--fkds-color-feedback-border-negative, #ca1515);
|
|
2633
|
-
}
|
|
2634
|
-
.icon-stack--error .f-icon-alert,
|
|
2635
|
-
.icon--stack--error .f-icon-alert {
|
|
2636
|
-
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2637
|
-
}
|
|
2638
|
-
.icon-stack--success .f-icon-circle,
|
|
2639
|
-
.icon--stack--success .f-icon-circle {
|
|
2640
|
-
color: var(--fkds-color-feedback-background-positive, #f3f8f5);
|
|
2641
|
-
fill: var(--fkds-color-feedback-border-positive, #35805b);
|
|
2642
|
-
}
|
|
2643
|
-
.icon-stack--success .f-icon-success,
|
|
2644
|
-
.icon--stack--success .f-icon-success {
|
|
2645
|
-
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2646
|
-
transform: scale(0.6);
|
|
2647
|
-
}
|
|
2648
|
-
.icon-stack--large,
|
|
2649
|
-
.icon--stack--large {
|
|
2650
|
-
width: 2.5rem;
|
|
2651
|
-
height: 2.5rem;
|
|
2652
|
-
}
|
|
2653
|
-
.icon-stack--large svg,
|
|
2654
|
-
.icon--stack--large svg {
|
|
2655
|
-
width: 100%;
|
|
2656
|
-
height: 100%;
|
|
2657
|
-
}
|
|
2658
|
-
.icon-stack--circle, .icon-stack--circle-bottom,
|
|
2659
|
-
.icon--stack--circle,
|
|
2660
|
-
.icon--stack--circle-bottom {
|
|
2661
|
-
width: 4rem;
|
|
2662
|
-
height: 4rem;
|
|
2663
|
-
border-radius: 100%;
|
|
2664
|
-
overflow: hidden;
|
|
2665
|
-
}
|
|
2666
|
-
.icon-stack--circle .f-icon-circle, .icon-stack--circle-bottom .f-icon-circle,
|
|
2667
|
-
.icon--stack--circle .f-icon-circle,
|
|
2668
|
-
.icon--stack--circle-bottom .f-icon-circle {
|
|
2669
|
-
color: var(--f-icon-color-success-background, #dbe9e2);
|
|
2670
|
-
fill: var(--f-icon-color-success-background, #dbe9e2);
|
|
2671
|
-
width: 100%;
|
|
2672
|
-
height: 100%;
|
|
2673
|
-
}
|
|
2674
|
-
.icon-stack--circle .icon:not(.f-icon-circle), .icon-stack--circle-bottom .icon:not(.f-icon-circle),
|
|
2675
|
-
.icon--stack--circle .icon:not(.f-icon-circle),
|
|
2676
|
-
.icon--stack--circle-bottom .icon:not(.f-icon-circle) {
|
|
2677
|
-
color: var(--f-icon-color-success, #35805b);
|
|
2678
|
-
position: absolute;
|
|
2679
|
-
}
|
|
2680
|
-
.icon-stack--circle .icon:not(.f-icon-circle),
|
|
2681
|
-
.icon--stack--circle .icon:not(.f-icon-circle) {
|
|
2682
|
-
width: 70%;
|
|
2683
|
-
height: 70%;
|
|
2684
|
-
inset: 0;
|
|
2685
|
-
margin: auto;
|
|
2686
|
-
}
|
|
2687
|
-
.icon-stack--circle-bottom .icon:not(.f-icon-circle),
|
|
2688
|
-
.icon--stack--circle-bottom .icon:not(.f-icon-circle) {
|
|
2689
|
-
width: 80%;
|
|
2690
|
-
height: 80%;
|
|
2691
|
-
left: 0;
|
|
2692
|
-
right: 0;
|
|
2693
|
-
margin: 0 auto;
|
|
2694
|
-
bottom: 0%;
|
|
2695
|
-
}
|
|
2696
|
-
|
|
2697
2597
|
.expandable-panel {
|
|
2698
2598
|
margin-bottom: calc(2rem * var(--f-density-factor, 1));
|
|
2699
2599
|
}
|
|
@@ -2720,7 +2620,7 @@ input[type=search]:focus,
|
|
|
2720
2620
|
margin-bottom: 0 !important;
|
|
2721
2621
|
}
|
|
2722
2622
|
.expandable-panel__heading button {
|
|
2723
|
-
background-color: var(--fkds-color-background-
|
|
2623
|
+
background-color: var(--fkds-color-interactive-surface-background-primary-default, #f4f4f4);
|
|
2724
2624
|
border: var(--f-border-width-medium, 2px) solid var(--fkds-color-border-primary, #8d8e91);
|
|
2725
2625
|
border-radius: var(--f-border-radius-medium, 4px);
|
|
2726
2626
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
@@ -2732,11 +2632,11 @@ input[type=search]:focus,
|
|
|
2732
2632
|
text-align: left;
|
|
2733
2633
|
width: 100%;
|
|
2734
2634
|
font-size: var(--f-font-size-large, 1.125rem);
|
|
2735
|
-
font-weight: var(--f-font-weight-bold,
|
|
2635
|
+
font-weight: var(--f-font-weight-bold, 700);
|
|
2736
2636
|
line-height: var(--f-line-height-large, 1.5);
|
|
2737
2637
|
}
|
|
2738
2638
|
.expandable-panel__heading button:focus, .expandable-panel__heading button:hover {
|
|
2739
|
-
background-color: var(--fkds-color-
|
|
2639
|
+
background-color: var(--fkds-color-interactive-surface-background-primary-hover, #ddddde);
|
|
2740
2640
|
}
|
|
2741
2641
|
.expandable-panel__title {
|
|
2742
2642
|
flex-grow: 1;
|
|
@@ -2959,6 +2859,174 @@ input[type=search]:focus,
|
|
|
2959
2859
|
margin-bottom: 2rem;
|
|
2960
2860
|
}
|
|
2961
2861
|
|
|
2862
|
+
.offline .icon-stack, .icon-stack,
|
|
2863
|
+
.icon--stack {
|
|
2864
|
+
position: relative;
|
|
2865
|
+
}
|
|
2866
|
+
.icon-stack .icon,
|
|
2867
|
+
.icon--stack .icon {
|
|
2868
|
+
position: absolute;
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2871
|
+
.icon-stack--new-window .icon.f-icon-new-window,
|
|
2872
|
+
.icon--stack--new-window .icon.f-icon-new-window {
|
|
2873
|
+
width: 55%;
|
|
2874
|
+
height: 55%;
|
|
2875
|
+
top: 0;
|
|
2876
|
+
right: 0;
|
|
2877
|
+
}
|
|
2878
|
+
.icon-stack--new-window .icon:not(.f-icon-new-window),
|
|
2879
|
+
.icon--stack--new-window .icon:not(.f-icon-new-window) {
|
|
2880
|
+
width: 83%;
|
|
2881
|
+
height: 83%;
|
|
2882
|
+
bottom: 0;
|
|
2883
|
+
left: 5%;
|
|
2884
|
+
}
|
|
2885
|
+
.icon-stack--tooltip .f-icon-circle,
|
|
2886
|
+
.icon--stack--tooltip .f-icon-circle {
|
|
2887
|
+
fill: var(--fkds-color-action-background-primary-default, #4a52b6);
|
|
2888
|
+
color: var(--fkds-color-action-border-primary-default, #4a52b6);
|
|
2889
|
+
}
|
|
2890
|
+
.icon-stack--tooltip .f-icon-i,
|
|
2891
|
+
.icon--stack--tooltip .f-icon-i {
|
|
2892
|
+
color: var(--fkds-color-text-inverted, #fff);
|
|
2893
|
+
}
|
|
2894
|
+
.icon-stack--info .f-icon-circle,
|
|
2895
|
+
.icon--stack--info .f-icon-circle {
|
|
2896
|
+
color: var(--fkds-color-feedback-background-info, #f5f6fa);
|
|
2897
|
+
fill: var(--fkds-color-feedback-border-info, #4a52b6);
|
|
2898
|
+
}
|
|
2899
|
+
.icon-stack--info .f-icon-i,
|
|
2900
|
+
.icon--stack--info .f-icon-i {
|
|
2901
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2902
|
+
}
|
|
2903
|
+
.icon-stack--warning .f-icon-circle,
|
|
2904
|
+
.icon--stack--warning .f-icon-circle {
|
|
2905
|
+
color: var(--fkds-color-feedback-background-warning, #fffcf3);
|
|
2906
|
+
fill: var(--fkds-color-feedback-border-warning, #ffbe10);
|
|
2907
|
+
}
|
|
2908
|
+
.icon-stack--warning .f-icon-alert,
|
|
2909
|
+
.icon--stack--warning .f-icon-alert {
|
|
2910
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2911
|
+
}
|
|
2912
|
+
.icon-stack--error .f-icon-triangle,
|
|
2913
|
+
.icon--stack--error .f-icon-triangle {
|
|
2914
|
+
color: var(--fkds-color-feedback-background-negative, #fcf3f3);
|
|
2915
|
+
fill: var(--fkds-color-feedback-border-negative, #ca1515);
|
|
2916
|
+
}
|
|
2917
|
+
.icon-stack--error .f-icon-alert,
|
|
2918
|
+
.icon--stack--error .f-icon-alert {
|
|
2919
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2920
|
+
}
|
|
2921
|
+
.icon-stack--success .f-icon-circle,
|
|
2922
|
+
.icon--stack--success .f-icon-circle {
|
|
2923
|
+
color: var(--fkds-color-feedback-background-positive, #f3f8f5);
|
|
2924
|
+
fill: var(--fkds-color-feedback-border-positive, #35805b);
|
|
2925
|
+
}
|
|
2926
|
+
.icon-stack--success .f-icon-success,
|
|
2927
|
+
.icon--stack--success .f-icon-success {
|
|
2928
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2929
|
+
transform: scale(0.6);
|
|
2930
|
+
}
|
|
2931
|
+
@media (forced-colors: active) {
|
|
2932
|
+
.icon-stack--info .f-icon-circle,
|
|
2933
|
+
.icon-stack--info .f-icon-triangle, .icon-stack--warning .f-icon-circle,
|
|
2934
|
+
.icon-stack--warning .f-icon-triangle, .icon-stack--error .f-icon-circle,
|
|
2935
|
+
.icon-stack--error .f-icon-triangle, .icon-stack--success .f-icon-circle,
|
|
2936
|
+
.icon-stack--success .f-icon-triangle,
|
|
2937
|
+
.icon--stack--info .f-icon-circle,
|
|
2938
|
+
.icon--stack--info .f-icon-triangle,
|
|
2939
|
+
.icon--stack--warning .f-icon-circle,
|
|
2940
|
+
.icon--stack--warning .f-icon-triangle,
|
|
2941
|
+
.icon--stack--error .f-icon-circle,
|
|
2942
|
+
.icon--stack--error .f-icon-triangle,
|
|
2943
|
+
.icon--stack--success .f-icon-circle,
|
|
2944
|
+
.icon--stack--success .f-icon-triangle {
|
|
2945
|
+
color: Canvas;
|
|
2946
|
+
fill: CanvasText;
|
|
2947
|
+
}
|
|
2948
|
+
.icon-stack--info .f-icon-alert,
|
|
2949
|
+
.icon-stack--info .f-icon-i,
|
|
2950
|
+
.icon-stack--info .f-icon-success, .icon-stack--warning .f-icon-alert,
|
|
2951
|
+
.icon-stack--warning .f-icon-i,
|
|
2952
|
+
.icon-stack--warning .f-icon-success, .icon-stack--error .f-icon-alert,
|
|
2953
|
+
.icon-stack--error .f-icon-i,
|
|
2954
|
+
.icon-stack--error .f-icon-success, .icon-stack--success .f-icon-alert,
|
|
2955
|
+
.icon-stack--success .f-icon-i,
|
|
2956
|
+
.icon-stack--success .f-icon-success,
|
|
2957
|
+
.icon--stack--info .f-icon-alert,
|
|
2958
|
+
.icon--stack--info .f-icon-i,
|
|
2959
|
+
.icon--stack--info .f-icon-success,
|
|
2960
|
+
.icon--stack--warning .f-icon-alert,
|
|
2961
|
+
.icon--stack--warning .f-icon-i,
|
|
2962
|
+
.icon--stack--warning .f-icon-success,
|
|
2963
|
+
.icon--stack--error .f-icon-alert,
|
|
2964
|
+
.icon--stack--error .f-icon-i,
|
|
2965
|
+
.icon--stack--error .f-icon-success,
|
|
2966
|
+
.icon--stack--success .f-icon-alert,
|
|
2967
|
+
.icon--stack--success .f-icon-i,
|
|
2968
|
+
.icon--stack--success .f-icon-success {
|
|
2969
|
+
color: CanvasText;
|
|
2970
|
+
}
|
|
2971
|
+
.icon-stack--tooltip .f-icon-circle,
|
|
2972
|
+
.icon--stack--tooltip .f-icon-circle {
|
|
2973
|
+
color: Canvas;
|
|
2974
|
+
fill: ButtonBorder;
|
|
2975
|
+
}
|
|
2976
|
+
.icon-stack--tooltip .f-icon-i,
|
|
2977
|
+
.icon--stack--tooltip .f-icon-i {
|
|
2978
|
+
color: ButtonText;
|
|
2979
|
+
}
|
|
2980
|
+
}
|
|
2981
|
+
.icon-stack--large,
|
|
2982
|
+
.icon--stack--large {
|
|
2983
|
+
width: 2.5rem;
|
|
2984
|
+
height: 2.5rem;
|
|
2985
|
+
}
|
|
2986
|
+
.icon-stack--large svg,
|
|
2987
|
+
.icon--stack--large svg {
|
|
2988
|
+
width: 100%;
|
|
2989
|
+
height: 100%;
|
|
2990
|
+
}
|
|
2991
|
+
.icon-stack--circle, .icon-stack--circle-bottom,
|
|
2992
|
+
.icon--stack--circle,
|
|
2993
|
+
.icon--stack--circle-bottom {
|
|
2994
|
+
width: 4rem;
|
|
2995
|
+
height: 4rem;
|
|
2996
|
+
border-radius: 100%;
|
|
2997
|
+
overflow: hidden;
|
|
2998
|
+
}
|
|
2999
|
+
.icon-stack--circle .f-icon-circle, .icon-stack--circle-bottom .f-icon-circle,
|
|
3000
|
+
.icon--stack--circle .f-icon-circle,
|
|
3001
|
+
.icon--stack--circle-bottom .f-icon-circle {
|
|
3002
|
+
color: var(--f-icon-color-success-background, #dbe9e2);
|
|
3003
|
+
fill: var(--f-icon-color-success-background, #dbe9e2);
|
|
3004
|
+
width: 100%;
|
|
3005
|
+
height: 100%;
|
|
3006
|
+
}
|
|
3007
|
+
.icon-stack--circle .icon:not(.f-icon-circle), .icon-stack--circle-bottom .icon:not(.f-icon-circle),
|
|
3008
|
+
.icon--stack--circle .icon:not(.f-icon-circle),
|
|
3009
|
+
.icon--stack--circle-bottom .icon:not(.f-icon-circle) {
|
|
3010
|
+
color: var(--f-icon-color-success, #35805b);
|
|
3011
|
+
position: absolute;
|
|
3012
|
+
}
|
|
3013
|
+
.icon-stack--circle .icon:not(.f-icon-circle),
|
|
3014
|
+
.icon--stack--circle .icon:not(.f-icon-circle) {
|
|
3015
|
+
width: 70%;
|
|
3016
|
+
height: 70%;
|
|
3017
|
+
inset: 0;
|
|
3018
|
+
margin: auto;
|
|
3019
|
+
}
|
|
3020
|
+
.icon-stack--circle-bottom .icon:not(.f-icon-circle),
|
|
3021
|
+
.icon--stack--circle-bottom .icon:not(.f-icon-circle) {
|
|
3022
|
+
width: 80%;
|
|
3023
|
+
height: 80%;
|
|
3024
|
+
left: 0;
|
|
3025
|
+
right: 0;
|
|
3026
|
+
margin: 0 auto;
|
|
3027
|
+
bottom: 0%;
|
|
3028
|
+
}
|
|
3029
|
+
|
|
2962
3030
|
.indent {
|
|
2963
3031
|
border-left: var(--f-border-width-medium, 2px) solid var(--fkds-color-border-weak, #ddddde);
|
|
2964
3032
|
margin-bottom: 1rem;
|
|
@@ -2970,7 +3038,7 @@ input[type=search]:focus,
|
|
|
2970
3038
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2971
3039
|
display: inline-block;
|
|
2972
3040
|
font-size: var(--f-font-size-standard, 1rem);
|
|
2973
|
-
font-weight: var(--f-font-weight-medium,
|
|
3041
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
2974
3042
|
line-height: var(--f-line-height-large, 1.5);
|
|
2975
3043
|
margin-bottom: calc(0.25rem * var(--f-density-factor, 1));
|
|
2976
3044
|
width: var(--f-width-full, 100%);
|
|
@@ -3976,7 +4044,7 @@ input[type=search]:focus,
|
|
|
3976
4044
|
}
|
|
3977
4045
|
.message-box__heading {
|
|
3978
4046
|
font-size: var(--f-font-size-large, 1.125rem);
|
|
3979
|
-
font-weight: var(--f-font-weight-medium,
|
|
4047
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
3980
4048
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
3981
4049
|
line-height: var(--f-line-height-medium, 1.4);
|
|
3982
4050
|
align-items: flex-start;
|
|
@@ -4209,7 +4277,7 @@ input[type=search]:focus,
|
|
|
4209
4277
|
}
|
|
4210
4278
|
.modal__header .modal__title {
|
|
4211
4279
|
font-size: var(--f-modal-title-font-size, 1.25rem);
|
|
4212
|
-
font-weight: var(--f-font-weight-bold,
|
|
4280
|
+
font-weight: var(--f-font-weight-bold, 700);
|
|
4213
4281
|
margin-bottom: 0;
|
|
4214
4282
|
margin-top: 0;
|
|
4215
4283
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
@@ -4332,9 +4400,21 @@ input[type=search]:focus,
|
|
|
4332
4400
|
.imenu__list__item a:active {
|
|
4333
4401
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4334
4402
|
}
|
|
4403
|
+
@media (forced-colors: active) {
|
|
4404
|
+
.imenu__list__item a,
|
|
4405
|
+
.imenu__list__item a:visited,
|
|
4406
|
+
.imenu__list__item a:active {
|
|
4407
|
+
color: LinkText;
|
|
4408
|
+
}
|
|
4409
|
+
}
|
|
4335
4410
|
.imenu__list__item a:hover {
|
|
4336
4411
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4337
4412
|
}
|
|
4413
|
+
@media (forced-colors: active) {
|
|
4414
|
+
.imenu__list__item a:hover {
|
|
4415
|
+
color: LinkText;
|
|
4416
|
+
}
|
|
4417
|
+
}
|
|
4338
4418
|
.imenu__popup-item {
|
|
4339
4419
|
position: relative;
|
|
4340
4420
|
list-style-type: none;
|
|
@@ -4360,18 +4440,42 @@ input[type=search]:focus,
|
|
|
4360
4440
|
font-weight: var(--f-font-weight-normal, 400);
|
|
4361
4441
|
background-color: var(--fkds-color-navigation-background-hover, #dbe9e2);
|
|
4362
4442
|
}
|
|
4443
|
+
@media (forced-colors: active) {
|
|
4444
|
+
.imenu--vertical .imenu__list__item:hover {
|
|
4445
|
+
outline: 2px solid highlight;
|
|
4446
|
+
}
|
|
4447
|
+
}
|
|
4363
4448
|
.imenu--vertical .imenu__list__item--highlight {
|
|
4364
|
-
font-weight: var(--f-font-weight-medium,
|
|
4449
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
4365
4450
|
background-color: var(--fkds-color-navigation-background-selected, #35805b);
|
|
4366
4451
|
}
|
|
4452
|
+
@media (forced-colors: active) {
|
|
4453
|
+
.imenu--vertical .imenu__list__item--highlight {
|
|
4454
|
+
background-color: highlight;
|
|
4455
|
+
color: highlightText;
|
|
4456
|
+
forced-color-adjust: none;
|
|
4457
|
+
}
|
|
4458
|
+
}
|
|
4367
4459
|
.imenu--vertical .imenu__list__item--highlight .imenu__list__anchor {
|
|
4368
4460
|
color: var(--fkds-color-text-inverted, #fff);
|
|
4369
4461
|
}
|
|
4462
|
+
@media (forced-colors: active) {
|
|
4463
|
+
.imenu--vertical .imenu__list__item--highlight .imenu__list__anchor {
|
|
4464
|
+
color: HighlightText;
|
|
4465
|
+
}
|
|
4466
|
+
}
|
|
4370
4467
|
.imenu--vertical .imenu__list__item--highlight:hover {
|
|
4371
4468
|
background-color: var(--fkds-color-navigation-background-selected, #35805b);
|
|
4372
|
-
font-weight: var(--f-font-weight-medium,
|
|
4469
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
4373
4470
|
color: var(--fkds-color-text-inverted, #fff);
|
|
4374
4471
|
}
|
|
4472
|
+
@media (forced-colors: active) {
|
|
4473
|
+
.imenu--vertical .imenu__list__item--highlight:hover {
|
|
4474
|
+
background-color: highlight;
|
|
4475
|
+
color: highlightText;
|
|
4476
|
+
forced-color-adjust: none;
|
|
4477
|
+
}
|
|
4478
|
+
}
|
|
4375
4479
|
|
|
4376
4480
|
.imenu--horizontal {
|
|
4377
4481
|
overflow: hidden;
|
|
@@ -4386,13 +4490,18 @@ input[type=search]:focus,
|
|
|
4386
4490
|
padding-right: 0.75rem;
|
|
4387
4491
|
}
|
|
4388
4492
|
.imenu--horizontal .imenu__list__item--highlight {
|
|
4389
|
-
font-weight: var(--f-font-weight-medium,
|
|
4493
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
4390
4494
|
}
|
|
4391
4495
|
.imenu--horizontal .imenu__list__item--highlight .imenu__list__anchor-container {
|
|
4392
4496
|
border-bottom: 5px solid var(--fkds-color-navigation-border-selected, #35805b);
|
|
4393
4497
|
}
|
|
4498
|
+
@media (forced-colors: active) {
|
|
4499
|
+
.imenu--horizontal .imenu__list__item--highlight .imenu__list__anchor-container {
|
|
4500
|
+
border-bottom: 5px solid highlight;
|
|
4501
|
+
}
|
|
4502
|
+
}
|
|
4394
4503
|
.imenu--horizontal .imenu__list__item--highlight .imenu__list__anchor:hover {
|
|
4395
|
-
font-weight: var(--f-font-weight-medium,
|
|
4504
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
4396
4505
|
}
|
|
4397
4506
|
.imenu--horizontal .imenu__list__item--hidden {
|
|
4398
4507
|
visibility: hidden;
|
|
@@ -4400,10 +4509,20 @@ input[type=search]:focus,
|
|
|
4400
4509
|
.imenu--horizontal .imenu__list__item:not(.imenu__list__item--highlight) .imenu__list__anchor-container:hover {
|
|
4401
4510
|
border-bottom: 5px solid var(--fkds-color-navigation-border-hover, #88b49f);
|
|
4402
4511
|
}
|
|
4512
|
+
@media (forced-colors: active) {
|
|
4513
|
+
.imenu--horizontal .imenu__list__item:not(.imenu__list__item--highlight) .imenu__list__anchor-container:hover {
|
|
4514
|
+
border-bottom: 5px solid highlight;
|
|
4515
|
+
}
|
|
4516
|
+
}
|
|
4403
4517
|
.imenu--horizontal .imenu__list__anchor-container {
|
|
4404
4518
|
padding-bottom: 0.5rem;
|
|
4405
4519
|
border-bottom: 5px solid transparent;
|
|
4406
4520
|
}
|
|
4521
|
+
@media (forced-colors: active) {
|
|
4522
|
+
.imenu--horizontal .imenu__list__anchor-container {
|
|
4523
|
+
border-bottom: none;
|
|
4524
|
+
}
|
|
4525
|
+
}
|
|
4407
4526
|
.imenu--horizontal .imenu__list__anchor {
|
|
4408
4527
|
display: inline-flex;
|
|
4409
4528
|
}
|
|
@@ -4504,7 +4623,6 @@ input[type=search]:focus,
|
|
|
4504
4623
|
}
|
|
4505
4624
|
.page-header__logo::after {
|
|
4506
4625
|
content: " ";
|
|
4507
|
-
background-color: var(--fkds-color-header-text-primary, #fff);
|
|
4508
4626
|
height: 1.38rem;
|
|
4509
4627
|
padding: 0.5px;
|
|
4510
4628
|
margin: 0 1rem 0.155rem;
|
|
@@ -4513,7 +4631,7 @@ input[type=search]:focus,
|
|
|
4513
4631
|
padding-top: 0.22rem;
|
|
4514
4632
|
margin: 0;
|
|
4515
4633
|
font-size: var(--f-font-size-h3, 1.375rem);
|
|
4516
|
-
font-weight: var(--f-font-weight-medium,
|
|
4634
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
4517
4635
|
color: var(--fkds-color-header-text-primary, #fff);
|
|
4518
4636
|
white-space: nowrap;
|
|
4519
4637
|
overflow: hidden;
|
|
@@ -4546,7 +4664,7 @@ input[type=search]:focus,
|
|
|
4546
4664
|
align-items: center;
|
|
4547
4665
|
}
|
|
4548
4666
|
.paginator__page, .paginator__previous, .paginator__next {
|
|
4549
|
-
border:
|
|
4667
|
+
border: 2px solid transparent;
|
|
4550
4668
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4551
4669
|
height: 2.5rem;
|
|
4552
4670
|
background-color: transparent;
|
|
@@ -4558,9 +4676,21 @@ input[type=search]:focus,
|
|
|
4558
4676
|
color: var(--fkds-color-action-text-inverted-default, #fff);
|
|
4559
4677
|
background-color: var(--fkds-color-action-background-primary-default, #4a52b6);
|
|
4560
4678
|
}
|
|
4679
|
+
@media (forced-colors: active) {
|
|
4680
|
+
.paginator__page--active, .paginator__previous--active, .paginator__next--active {
|
|
4681
|
+
background-color: highlight;
|
|
4682
|
+
color: highlightText;
|
|
4683
|
+
forced-color-adjust: none;
|
|
4684
|
+
}
|
|
4685
|
+
}
|
|
4561
4686
|
.paginator__page:hover:enabled:not(.paginator__page--active, .paginator__previous--active, .paginator__next--active), .paginator__previous:hover:enabled:not(.paginator__page--active, .paginator__previous--active, .paginator__next--active), .paginator__next:hover:enabled:not(.paginator__page--active, .paginator__previous--active, .paginator__next--active) {
|
|
4562
4687
|
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
4563
4688
|
}
|
|
4689
|
+
@media (forced-colors: active) {
|
|
4690
|
+
.paginator__page:hover:enabled:not(.paginator__page--active, .paginator__previous--active, .paginator__next--active), .paginator__previous:hover:enabled:not(.paginator__page--active, .paginator__previous--active, .paginator__next--active), .paginator__next:hover:enabled:not(.paginator__page--active, .paginator__previous--active, .paginator__next--active) {
|
|
4691
|
+
border: 2px solid highlight;
|
|
4692
|
+
}
|
|
4693
|
+
}
|
|
4564
4694
|
.paginator__next, .paginator__previous {
|
|
4565
4695
|
display: flex;
|
|
4566
4696
|
align-items: center;
|
|
@@ -4695,6 +4825,7 @@ input[type=search]:focus,
|
|
|
4695
4825
|
}
|
|
4696
4826
|
}
|
|
4697
4827
|
.radio-button.disabled .radio-button__label {
|
|
4828
|
+
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
4698
4829
|
cursor: default;
|
|
4699
4830
|
}
|
|
4700
4831
|
.radio-button.disabled .radio-button__label::before, .radio-button.disabled .radio-button__label::after {
|
|
@@ -4877,7 +5008,7 @@ input[type=search]:focus,
|
|
|
4877
5008
|
border-bottom: 0;
|
|
4878
5009
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4879
5010
|
font-size: var(--f-font-size-large, 1.125rem);
|
|
4880
|
-
font-weight: var(--f-font-weight-bold,
|
|
5011
|
+
font-weight: var(--f-font-weight-bold, 700);
|
|
4881
5012
|
line-height: var(--f-line-height-large, 1.5);
|
|
4882
5013
|
margin: 0;
|
|
4883
5014
|
padding: calc(1rem * var(--f-density-factor, 1)) 1rem;
|
|
@@ -4960,7 +5091,7 @@ input[type=search]:focus,
|
|
|
4960
5091
|
background: transparent;
|
|
4961
5092
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4962
5093
|
font-size: var(--f-font-size-standard, 1rem);
|
|
4963
|
-
font-weight: var(--f-font-weight-medium,
|
|
5094
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
4964
5095
|
line-height: var(--f-line-height-large, 1.5);
|
|
4965
5096
|
margin-bottom: calc(0.25rem * var(--f-density-factor, 1));
|
|
4966
5097
|
width: var(--f-width-full, 100%);
|
|
@@ -4971,7 +5102,7 @@ input[type=search]:focus,
|
|
|
4971
5102
|
border-bottom: 2px solid var(--fkds-color-border-primary, #8d8e91);
|
|
4972
5103
|
border-right: 1px solid var(--fkds-color-border-primary, #8d8e91);
|
|
4973
5104
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4974
|
-
font-weight: var(--f-font-weight-medium,
|
|
5105
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
4975
5106
|
line-height: var(--f-line-height-large, 1.5);
|
|
4976
5107
|
padding: calc(0.25rem * var(--f-density-factor, 1)) 0.5rem;
|
|
4977
5108
|
text-align: left;
|
|
@@ -5006,7 +5137,7 @@ input[type=search]:focus,
|
|
|
5006
5137
|
}
|
|
5007
5138
|
.table tbody th {
|
|
5008
5139
|
border-right: 1px solid var(--fkds-color-border-primary, #8d8e91);
|
|
5009
|
-
font-weight: var(--f-font-weight-medium,
|
|
5140
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
5010
5141
|
line-height: calc(1.5rem * var(--f-density-factor, 1));
|
|
5011
5142
|
}
|
|
5012
5143
|
.table tbody .table__column--action {
|
|
@@ -5154,7 +5285,7 @@ input[type=search]:focus,
|
|
|
5154
5285
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
5155
5286
|
}
|
|
5156
5287
|
.table__button {
|
|
5157
|
-
font-weight: var(--f-font-weight-medium,
|
|
5288
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
5158
5289
|
outline-offset: 0.25rem;
|
|
5159
5290
|
font-size: 14px;
|
|
5160
5291
|
line-height: 1.25rem;
|
|
@@ -5173,7 +5304,7 @@ input[type=search]:focus,
|
|
|
5173
5304
|
}
|
|
5174
5305
|
|
|
5175
5306
|
.table-ng {
|
|
5176
|
-
border-collapse:
|
|
5307
|
+
border-collapse: collapse;
|
|
5177
5308
|
border-spacing: 0;
|
|
5178
5309
|
font-size: var(--f-font-size-standard, 1rem);
|
|
5179
5310
|
margin: 0 0 calc(var(--f-margin-component-bottom, 1.5rem) * var(--f-density-factor, 1));
|
|
@@ -5183,7 +5314,7 @@ input[type=search]:focus,
|
|
|
5183
5314
|
background: transparent;
|
|
5184
5315
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
5185
5316
|
font-size: var(--f-font-size-standard, 1rem);
|
|
5186
|
-
font-weight: var(--f-font-weight-medium,
|
|
5317
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
5187
5318
|
line-height: var(--f-line-height-large, 1.5);
|
|
5188
5319
|
margin-bottom: calc(0.25rem * var(--f-density-factor, 1));
|
|
5189
5320
|
width: var(--f-width-full, 100%);
|
|
@@ -5194,7 +5325,7 @@ input[type=search]:focus,
|
|
|
5194
5325
|
border-bottom: 2px solid var(--fkds-color-border-primary, #8d8e91);
|
|
5195
5326
|
border-right: 1px solid var(--fkds-color-border-primary, #8d8e91);
|
|
5196
5327
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
5197
|
-
font-weight: var(--f-font-weight-medium,
|
|
5328
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
5198
5329
|
line-height: var(--f-line-height-large, 1.5);
|
|
5199
5330
|
padding: calc(0.25rem * var(--f-density-factor, 1)) 0.5rem;
|
|
5200
5331
|
text-align: left;
|
|
@@ -5221,15 +5352,23 @@ input[type=search]:focus,
|
|
|
5221
5352
|
background: var(--fkds-color-background-secondary, #f4f4f4);
|
|
5222
5353
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
5223
5354
|
}
|
|
5355
|
+
.table-ng--divided tbody > tr > td,
|
|
5356
|
+
.table-ng--divided tbody > tr > th {
|
|
5357
|
+
border-bottom: 1px solid var(--fkds-color-border-primary, #8d8e91);
|
|
5358
|
+
}
|
|
5224
5359
|
|
|
5225
5360
|
.table-ng__cell {
|
|
5226
5361
|
padding: calc(0.25rem * var(--f-density-factor, 1)) 0.5rem;
|
|
5227
5362
|
text-wrap: nowrap;
|
|
5228
|
-
border:
|
|
5363
|
+
border: 1px solid transparent;
|
|
5229
5364
|
}
|
|
5230
5365
|
.table-ng__cell:focus, .table-ng__cell:focus-within {
|
|
5231
5366
|
box-shadow: none;
|
|
5232
|
-
|
|
5367
|
+
outline: 3px solid var(--fkds-color-text-primary, #1b1e23);
|
|
5368
|
+
outline-offset: -3px;
|
|
5369
|
+
}
|
|
5370
|
+
.table-ng__cell:not(.table-ng__cell--menu-open):hover:has(button) {
|
|
5371
|
+
background: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
5233
5372
|
}
|
|
5234
5373
|
.table-ng__cell input:focus,
|
|
5235
5374
|
.table-ng__cell button:focus,
|
|
@@ -5251,29 +5390,65 @@ input[type=search]:focus,
|
|
|
5251
5390
|
.table-ng__cell--align-right input {
|
|
5252
5391
|
text-align: right;
|
|
5253
5392
|
}
|
|
5254
|
-
.table-ng__cell--select .table-ng__editable__icon--active {
|
|
5255
|
-
rotate: 180deg;
|
|
5256
|
-
}
|
|
5257
5393
|
.table-ng__cell--select, .table-ng__cell--text {
|
|
5258
|
-
padding: 0
|
|
5394
|
+
padding: 0;
|
|
5259
5395
|
}
|
|
5260
|
-
.table-ng__cell--select:
|
|
5261
|
-
|
|
5396
|
+
.table-ng__cell--select:hover, .table-ng__cell--text:hover {
|
|
5397
|
+
background: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
5398
|
+
}
|
|
5399
|
+
.table-ng__cell--select:focus .table-ng__editable, .table-ng__cell--select:focus-within .table-ng__editable, .table-ng__cell--text:focus .table-ng__editable, .table-ng__cell--text:focus-within .table-ng__editable {
|
|
5400
|
+
box-shadow: inset 0 -3px 0 0 var(--fkds-color-border-strong, #5f6165);
|
|
5401
|
+
border-radius: 0;
|
|
5402
|
+
}
|
|
5403
|
+
.table-ng__cell .table-ng__editable:focus-within {
|
|
5404
|
+
box-shadow: inset 0 -3px 0 0 var(--fkds-color-border-strong, #5f6165);
|
|
5405
|
+
border-radius: 0;
|
|
5406
|
+
}
|
|
5407
|
+
.table-ng__cell .table-ng__editable:hover {
|
|
5408
|
+
box-shadow: inset 0 -3px 0 0 var(--fkds-color-border-strong, #5f6165);
|
|
5409
|
+
border-radius: 0;
|
|
5410
|
+
}
|
|
5411
|
+
.table-ng__cell--select .table-ng__editable {
|
|
5412
|
+
border: 3px solid transparent;
|
|
5413
|
+
box-sizing: border-box;
|
|
5262
5414
|
}
|
|
5263
5415
|
.table-ng__cell--text:focus-visible {
|
|
5264
|
-
outline: none !important;
|
|
5265
5416
|
box-shadow: none !important;
|
|
5266
5417
|
}
|
|
5418
|
+
.table-ng__cell--text.table-ng__cell--error:not(:focus-within) .table-ng__editable {
|
|
5419
|
+
box-shadow: inset 0 -3px 0 0 var(--fkds-color-feedback-text-negative, #ca1515);
|
|
5420
|
+
border-radius: 0;
|
|
5421
|
+
}
|
|
5422
|
+
.table-ng__cell--text.table-ng__cell--error:hover:not(:focus-within) .table-ng__editable {
|
|
5423
|
+
box-shadow: inset 0 -3px 0 0 var(--fkds-color-feedback-text-negative, #ca1515);
|
|
5424
|
+
border-radius: 0;
|
|
5425
|
+
}
|
|
5426
|
+
.table-ng__cell--text.table-ng__cell--error:focus .table-ng__editable {
|
|
5427
|
+
box-shadow: inset 0 -3px 0 0 var(--fkds-color-feedback-text-negative, #ca1515);
|
|
5428
|
+
border-radius: 0;
|
|
5429
|
+
}
|
|
5267
5430
|
.table-ng__cell--text .table-ng__editable {
|
|
5268
|
-
border
|
|
5269
|
-
|
|
5270
|
-
|
|
5431
|
+
border: 3px solid transparent;
|
|
5432
|
+
box-sizing: border-box;
|
|
5433
|
+
position: relative;
|
|
5434
|
+
}
|
|
5435
|
+
.table-ng__cell--text .table-ng__editable:focus-within {
|
|
5436
|
+
box-shadow: inset 0 -3px 0 0 var(--fkds-color-border-strong, #5f6165);
|
|
5437
|
+
border-radius: 0;
|
|
5271
5438
|
}
|
|
5272
5439
|
.table-ng__cell--text .table-ng__editable:focus-within .table-ng__editable__text {
|
|
5273
|
-
|
|
5440
|
+
visibility: hidden;
|
|
5274
5441
|
}
|
|
5275
5442
|
.table-ng__cell--text .table-ng__editable:focus-within .table-ng__textedit {
|
|
5276
|
-
|
|
5443
|
+
position: absolute;
|
|
5444
|
+
inset: 0;
|
|
5445
|
+
width: 100%;
|
|
5446
|
+
min-width: 0;
|
|
5447
|
+
padding: calc(0.25rem * var(--f-density-factor, 1)) 0.5rem;
|
|
5448
|
+
}
|
|
5449
|
+
.table-ng__cell--text .table-ng__editable:hover {
|
|
5450
|
+
box-shadow: inset 0 -3px 0 0 var(--fkds-color-border-strong, #5f6165);
|
|
5451
|
+
border-radius: 0;
|
|
5277
5452
|
}
|
|
5278
5453
|
.table-ng__cell--checkbox, .table-ng__cell--radio {
|
|
5279
5454
|
text-align: center;
|
|
@@ -5283,6 +5458,11 @@ input[type=search]:focus,
|
|
|
5283
5458
|
height: var(--f-icon-size-medium, 1.25rem);
|
|
5284
5459
|
width: var(--f-icon-size-medium, 1.25rem);
|
|
5285
5460
|
vertical-align: middle;
|
|
5461
|
+
accent-color: var(--fkds-color-action-background-primary-default, #4a52b6);
|
|
5462
|
+
}
|
|
5463
|
+
.table-ng__cell--checkbox:hover, .table-ng__cell--radio:hover {
|
|
5464
|
+
background: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
5465
|
+
accent-color: var(--fkds-color-action-background-primary-hover, #3b4292);
|
|
5286
5466
|
}
|
|
5287
5467
|
.table-ng__cell--expand button, .table-ng__cell--button button {
|
|
5288
5468
|
padding: 0;
|
|
@@ -5291,8 +5471,12 @@ input[type=search]:focus,
|
|
|
5291
5471
|
min-width: var(--f-icon-size-medium, 1.25rem);
|
|
5292
5472
|
width: 100%;
|
|
5293
5473
|
background: inherit;
|
|
5474
|
+
color: var(--fkds-color-action-background-primary-default, #4a52b6);
|
|
5294
5475
|
cursor: pointer;
|
|
5295
5476
|
}
|
|
5477
|
+
.table-ng__cell--expand button:hover, .table-ng__cell--button button:hover {
|
|
5478
|
+
color: var(--fkds-color-action-background-primary-hover, #3b4292);
|
|
5479
|
+
}
|
|
5296
5480
|
.table-ng__cell--expand button svg, .table-ng__cell--button button svg {
|
|
5297
5481
|
vertical-align: middle;
|
|
5298
5482
|
}
|
|
@@ -5303,17 +5487,30 @@ input[type=search]:focus,
|
|
|
5303
5487
|
.table-ng__cell--selectable {
|
|
5304
5488
|
width: var(--f-icon-size-medium, 1.25rem);
|
|
5305
5489
|
}
|
|
5490
|
+
.table-ng__cell--selectable:hover {
|
|
5491
|
+
background: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
5492
|
+
}
|
|
5306
5493
|
.table-ng__cell--rowheader {
|
|
5307
|
-
font-weight: var(--f-font-weight-medium,
|
|
5494
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
5308
5495
|
text-align: left;
|
|
5309
5496
|
}
|
|
5310
5497
|
.table-ng__cell--custom {
|
|
5311
5498
|
padding: calc(0.25rem * var(--f-density-factor, 1)) 0.5rem;
|
|
5312
|
-
border:
|
|
5499
|
+
border: 1px solid transparent;
|
|
5313
5500
|
}
|
|
5314
5501
|
.table-ng__cell--custom:focus {
|
|
5315
5502
|
box-shadow: none;
|
|
5316
|
-
|
|
5503
|
+
outline: 3px solid var(--fkds-color-text-primary, #1b1e23);
|
|
5504
|
+
outline-offset: -3px;
|
|
5505
|
+
}
|
|
5506
|
+
.table-ng__cell--menu-open, .table-ng__cell--menu-open:hover {
|
|
5507
|
+
background: var(--fkds-color-action-background-primary-active, #3b4292);
|
|
5508
|
+
}
|
|
5509
|
+
.table-ng__cell--menu-open .icon-button, .table-ng__cell--menu-open:hover .icon-button {
|
|
5510
|
+
color: var(--fkds-color-text-inverted, #fff);
|
|
5511
|
+
}
|
|
5512
|
+
.table-ng__cell--menu-open .table-ng__editable:hover, .table-ng__cell--menu-open:hover .table-ng__editable:hover {
|
|
5513
|
+
background: transparent;
|
|
5317
5514
|
}
|
|
5318
5515
|
|
|
5319
5516
|
.table-ng__textedit {
|
|
@@ -5325,16 +5522,13 @@ input[type=search]:focus,
|
|
|
5325
5522
|
}
|
|
5326
5523
|
.table-ng__textedit:focus {
|
|
5327
5524
|
box-shadow: none !important;
|
|
5328
|
-
outline: none !important;
|
|
5329
5525
|
}
|
|
5330
5526
|
|
|
5331
5527
|
.table-ng__editable {
|
|
5332
5528
|
padding: calc(0.25rem * var(--f-density-factor, 1)) 0.5rem;
|
|
5333
5529
|
display: flex;
|
|
5334
5530
|
align-items: center;
|
|
5335
|
-
|
|
5336
|
-
.table-ng__editable:hover:not(:focus-within) .table-ng__editable__icon {
|
|
5337
|
-
visibility: visible;
|
|
5531
|
+
margin-block: 2px;
|
|
5338
5532
|
}
|
|
5339
5533
|
.table-ng__editable__text {
|
|
5340
5534
|
flex: 1 1 auto;
|
|
@@ -5343,21 +5537,30 @@ input[type=search]:focus,
|
|
|
5343
5537
|
.table-ng__editable__numeric input {
|
|
5344
5538
|
font-feature-settings: "tnum" 1;
|
|
5345
5539
|
}
|
|
5346
|
-
.table-ng__editable__icon {
|
|
5347
|
-
visibility: hidden;
|
|
5348
|
-
margin-left: 1rem;
|
|
5349
|
-
flex: none;
|
|
5350
|
-
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
5351
|
-
}
|
|
5352
|
-
|
|
5353
|
-
.table-ng__cell--select:hover .table-ng__editable, .table-ng__cell--text:hover .table-ng__editable {
|
|
5354
|
-
background: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
5355
|
-
}
|
|
5356
5540
|
|
|
5357
|
-
|
|
5358
|
-
|
|
5541
|
+
@media (forced-colors: active) {
|
|
5542
|
+
.table-ng__editable {
|
|
5543
|
+
forced-color-adjust: none;
|
|
5544
|
+
color: CanvasText;
|
|
5545
|
+
}
|
|
5546
|
+
.table-ng__cell--text:hover .table-ng__editable,
|
|
5547
|
+
.table-ng__cell--select:hover .table-ng__editable,
|
|
5548
|
+
.table-ng__cell--text:focus-within .table-ng__editable,
|
|
5549
|
+
.table-ng__cell--select:focus-within .table-ng__editable {
|
|
5550
|
+
box-shadow: inset 0 -3px 0 0 Highlight;
|
|
5551
|
+
border-radius: 0;
|
|
5552
|
+
}
|
|
5553
|
+
.table-ng [tabindex="0"]:focus,
|
|
5554
|
+
.table-ng [tabindex="0"]:focus-visible {
|
|
5555
|
+
outline: 3px solid CanvasText;
|
|
5556
|
+
outline-offset: -3px;
|
|
5557
|
+
background: transparent;
|
|
5558
|
+
}
|
|
5559
|
+
.table-ng__cell :is(button, a, input, select, [role=combobox]):focus,
|
|
5560
|
+
.table-ng__cell :is(button, a, input, select, [role=combobox]):focus-visible {
|
|
5561
|
+
outline: none;
|
|
5562
|
+
}
|
|
5359
5563
|
}
|
|
5360
|
-
|
|
5361
5564
|
.table-ng__column {
|
|
5362
5565
|
padding: calc(0.25rem * var(--f-density-factor, 1)) 0.5rem;
|
|
5363
5566
|
border-bottom: 2px solid transparent;
|
|
@@ -5376,6 +5579,7 @@ input[type=search]:focus,
|
|
|
5376
5579
|
height: var(--f-icon-size-medium, 1.25rem);
|
|
5377
5580
|
width: var(--f-icon-size-medium, 1.25rem);
|
|
5378
5581
|
vertical-align: middle;
|
|
5582
|
+
accent-color: var(--fkds-color-action-background-primary-default, #4a52b6);
|
|
5379
5583
|
}
|
|
5380
5584
|
.table-ng__column--rowheader {
|
|
5381
5585
|
text-align: left;
|
|
@@ -5426,6 +5630,11 @@ input[type=search]:focus,
|
|
|
5426
5630
|
color: var(--fkds-color-feedback-text-negative, #ca1515);
|
|
5427
5631
|
height: 16px;
|
|
5428
5632
|
}
|
|
5633
|
+
@media (forced-colors: active) {
|
|
5634
|
+
.text-field__error-popup-icon {
|
|
5635
|
+
color: CanvasText;
|
|
5636
|
+
}
|
|
5637
|
+
}
|
|
5429
5638
|
.text-field__input-wrapper {
|
|
5430
5639
|
display: flex;
|
|
5431
5640
|
gap: calc(0.5rem * var(--f-density-factor, 1));
|
|
@@ -5626,7 +5835,7 @@ input[type=search]:focus,
|
|
|
5626
5835
|
}
|
|
5627
5836
|
.tooltip__header {
|
|
5628
5837
|
font-size: var(--f-font-size-large, 1.125rem);
|
|
5629
|
-
font-weight: var(--f-font-weight-bold,
|
|
5838
|
+
font-weight: var(--f-font-weight-bold, 700);
|
|
5630
5839
|
line-height: var(--f-line-height-medium, 1.4);
|
|
5631
5840
|
padding: 0 1rem;
|
|
5632
5841
|
margin-bottom: 0.5rem;
|
|
@@ -6128,12 +6337,27 @@ input[type=search]:focus,
|
|
|
6128
6337
|
min-height: var(--f-icon-size-medium, 1.25rem);
|
|
6129
6338
|
min-width: var(--f-icon-size-medium, 1.25rem);
|
|
6130
6339
|
}
|
|
6340
|
+
@media (forced-colors: active) {
|
|
6341
|
+
.popup-error--arrow .popup-error__icon {
|
|
6342
|
+
color: CanvasText;
|
|
6343
|
+
}
|
|
6344
|
+
}
|
|
6131
6345
|
.popup-error--arrow .popup-error__button {
|
|
6132
|
-
|
|
6346
|
+
display: flex;
|
|
6347
|
+
align-items: center;
|
|
6348
|
+
justify-content: center;
|
|
6133
6349
|
min-height: 24px;
|
|
6134
6350
|
min-width: 24px;
|
|
6135
6351
|
padding: 0;
|
|
6136
|
-
|
|
6352
|
+
border: 1px solid transparent;
|
|
6353
|
+
background-color: transparent;
|
|
6354
|
+
}
|
|
6355
|
+
@media (forced-colors: active) {
|
|
6356
|
+
.popup-error--arrow {
|
|
6357
|
+
background: CanvasText;
|
|
6358
|
+
--fkds-color-feedback-border-negative: CanvasText;
|
|
6359
|
+
--fkds-color-feedback-background-negative: Canvas;
|
|
6360
|
+
}
|
|
6137
6361
|
}
|
|
6138
6362
|
.popup-error--arrow::before {
|
|
6139
6363
|
content: "";
|
|
@@ -6207,9 +6431,21 @@ input[type=search]:focus,
|
|
|
6207
6431
|
.ipopupmenu__list__item a:active {
|
|
6208
6432
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
6209
6433
|
}
|
|
6434
|
+
@media (forced-colors: active) {
|
|
6435
|
+
.ipopupmenu__list__item a,
|
|
6436
|
+
.ipopupmenu__list__item a:visited,
|
|
6437
|
+
.ipopupmenu__list__item a:active {
|
|
6438
|
+
color: LinkText;
|
|
6439
|
+
}
|
|
6440
|
+
}
|
|
6210
6441
|
.ipopupmenu__list__item a:hover {
|
|
6211
6442
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
6212
6443
|
}
|
|
6444
|
+
@media (forced-colors: active) {
|
|
6445
|
+
.ipopupmenu__list__item a:hover {
|
|
6446
|
+
color: LinkText;
|
|
6447
|
+
}
|
|
6448
|
+
}
|
|
6213
6449
|
|
|
6214
6450
|
.ipopupmenu--vertical .ipopupmenu__list {
|
|
6215
6451
|
display: block;
|
|
@@ -6221,13 +6457,30 @@ input[type=search]:focus,
|
|
|
6221
6457
|
.ipopupmenu--vertical .ipopupmenu__list__item:hover:not(.ipopupmenu__list__item--highlight) {
|
|
6222
6458
|
background-color: var(--fkds-color-navigation-background-hover, #dbe9e2);
|
|
6223
6459
|
}
|
|
6460
|
+
@media (forced-colors: active) {
|
|
6461
|
+
.ipopupmenu--vertical .ipopupmenu__list__item:hover:not(.ipopupmenu__list__item--highlight) {
|
|
6462
|
+
outline: 2px solid highlight;
|
|
6463
|
+
}
|
|
6464
|
+
}
|
|
6224
6465
|
.ipopupmenu--vertical .ipopupmenu__list__item--highlight {
|
|
6225
6466
|
background-color: var(--fkds-color-navigation-background-selected, #35805b);
|
|
6226
|
-
font-weight: var(--f-font-weight-medium,
|
|
6467
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
6468
|
+
}
|
|
6469
|
+
@media (forced-colors: active) {
|
|
6470
|
+
.ipopupmenu--vertical .ipopupmenu__list__item--highlight {
|
|
6471
|
+
background-color: highlight;
|
|
6472
|
+
color: highlightText;
|
|
6473
|
+
forced-color-adjust: none;
|
|
6474
|
+
}
|
|
6227
6475
|
}
|
|
6228
6476
|
.ipopupmenu--vertical .ipopupmenu__list__item--highlight a {
|
|
6229
6477
|
color: var(--fkds-color-text-inverted, #fff);
|
|
6230
6478
|
}
|
|
6479
|
+
@media (forced-colors: active) {
|
|
6480
|
+
.ipopupmenu--vertical .ipopupmenu__list__item--highlight a {
|
|
6481
|
+
color: HighlightText;
|
|
6482
|
+
}
|
|
6483
|
+
}
|
|
6231
6484
|
|
|
6232
6485
|
.popup--overlay {
|
|
6233
6486
|
position: absolute;
|
|
@@ -6262,7 +6515,7 @@ input[type=search]:focus,
|
|
|
6262
6515
|
left: 20px;
|
|
6263
6516
|
top: 20px;
|
|
6264
6517
|
font-size: var(--f-font-size-standard, 1rem);
|
|
6265
|
-
font-weight: var(--f-font-weight-medium,
|
|
6518
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
6266
6519
|
text-decoration: underline;
|
|
6267
6520
|
text-underline-offset: 0.25em;
|
|
6268
6521
|
padding: 0.25rem 0.5rem;
|