@fkui/design 6.29.0 → 6.31.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 +102 -69
- package/lib/fkui.min.css +1 -1
- package/package.json +5 -5
- package/src/components/anchor/_anchor.scss +5 -4
- package/src/components/anchor/_variables.scss +2 -1
- package/src/components/badge/_badge.scss +0 -3
- package/src/components/fieldset/_fieldset.scss +5 -2
- package/src/components/file-item/_file-item.scss +1 -1
- package/src/components/indent/_indent.scss +2 -1
- package/src/components/indent/_variables.scss +1 -1
- package/src/components/navigation-menu/_navigation-menu.scss +15 -10
- package/src/components/navigation-menu/_variables.scss +8 -1
- package/src/components/page-header/_page-header.scss +2 -2
- package/src/components/page-header/_variables.scss +2 -0
- package/src/components/paginator/_paginator.scss +3 -4
- package/src/components/select-field/_select-field.scss +4 -0
- package/src/components/static-panel/_static-panel.scss +14 -7
- package/src/components/static-panel/_variables.scss +4 -1
- package/src/components/table-ng/_cell.scss +22 -1
- package/src/components/table-ng/_column.scss +6 -1
- package/src/components/tooltip/_tooltip.scss +9 -18
- package/src/components/wizard/_wizard-step.scss +16 -4
- package/src/core/mixins/_anchor.scss +7 -4
- package/src/core/mixins/_variables.scss +3 -0
- package/src/core/utils/_functions.scss +10 -3
- package/src/internal-components/popup-menu/_popup-menu.scss +11 -6
- package/src/internal-components/popup-menu/_variables.scss +7 -0
- package/src/internal-components/skip-link/_skip-link.scss +9 -4
package/lib/fkui.css
CHANGED
|
@@ -1089,16 +1089,17 @@ input[type=search]:focus,
|
|
|
1089
1089
|
}
|
|
1090
1090
|
|
|
1091
1091
|
.anchor, .file-item__file-open {
|
|
1092
|
-
color: var(--
|
|
1092
|
+
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
1093
1093
|
text-decoration: underline;
|
|
1094
1094
|
text-decoration-thickness: 2px;
|
|
1095
1095
|
text-underline-offset: 0.25em;
|
|
1096
|
-
text-decoration-color: var(--
|
|
1096
|
+
text-decoration-color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
1097
1097
|
font-weight: var(--f-font-weight-medium, 700);
|
|
1098
1098
|
}
|
|
1099
1099
|
.anchor:hover, .file-item__file-open:hover {
|
|
1100
|
-
|
|
1101
|
-
|
|
1100
|
+
text-decoration-thickness: 3px;
|
|
1101
|
+
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
1102
|
+
text-decoration-color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
1102
1103
|
}
|
|
1103
1104
|
.anchor.anchor--block, .file-item__file-open {
|
|
1104
1105
|
display: inline-flex;
|
|
@@ -1108,12 +1109,12 @@ input[type=search]:focus,
|
|
|
1108
1109
|
margin: calc((var(--f-line-height-large, 1.5) * 1rem - var(--f-icon-size-small, 1rem)) / 2) 0.25rem 0;
|
|
1109
1110
|
}
|
|
1110
1111
|
.anchor.anchor--discrete, .anchor--discrete.file-item__file-open {
|
|
1111
|
-
color: var(--
|
|
1112
|
-
text-decoration-color: var(--
|
|
1112
|
+
color: var(--fkds-color-action-text-secondary-default, #1b1e23);
|
|
1113
|
+
text-decoration-color: var(--fkds-color-border-primary, #8d8e91);
|
|
1113
1114
|
}
|
|
1114
1115
|
.anchor.anchor--discrete:hover, .anchor--discrete.file-item__file-open:hover {
|
|
1115
|
-
color: var(--
|
|
1116
|
-
text-decoration-color: var(--
|
|
1116
|
+
color: var(--fkds-color-action-text-secondary-default, #1b1e23);
|
|
1117
|
+
text-decoration-color: var(--fkds-color-border-primary, #8d8e91);
|
|
1117
1118
|
}
|
|
1118
1119
|
|
|
1119
1120
|
.badge {
|
|
@@ -1142,11 +1143,6 @@ input[type=search]:focus,
|
|
|
1142
1143
|
background-color: var(--fkds-color-feedback-background-warning-strong, #ffbe10);
|
|
1143
1144
|
border-color: var(--fkds-color-feedback-background-warning-strong, #ffbe10);
|
|
1144
1145
|
}
|
|
1145
|
-
@media (prefers-color-scheme: dark) {
|
|
1146
|
-
.badge--warning {
|
|
1147
|
-
color: var(--fkds-color-text-inverted, #fff);
|
|
1148
|
-
}
|
|
1149
|
-
}
|
|
1150
1146
|
.badge--warning-inverted {
|
|
1151
1147
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
1152
1148
|
background-color: var(--fkds-color-feedback-background-warning, #fffcf3);
|
|
@@ -2864,7 +2860,7 @@ input[type=search]:focus,
|
|
|
2864
2860
|
padding: 0;
|
|
2865
2861
|
width: var(--f-width-full, 100%);
|
|
2866
2862
|
}
|
|
2867
|
-
.fieldset__label {
|
|
2863
|
+
.fieldset__label.label {
|
|
2868
2864
|
padding: 0;
|
|
2869
2865
|
margin-bottom: calc(0.75rem * var(--f-density-factor, 1));
|
|
2870
2866
|
}
|
|
@@ -2898,8 +2894,8 @@ input[type=search]:focus,
|
|
|
2898
2894
|
/* stylelint-disable-next-line scss/at-extend-no-missing-placeholder -- technical debt */
|
|
2899
2895
|
/* stylelint-disable-next-line scss/at-extend-no-missing-placeholder -- technical debt */
|
|
2900
2896
|
flex: 0 1 auto;
|
|
2901
|
-
overflow: hidden;
|
|
2902
2897
|
white-space: nowrap;
|
|
2898
|
+
cursor: pointer;
|
|
2903
2899
|
}
|
|
2904
2900
|
.file-item__file-remove {
|
|
2905
2901
|
flex: 0 0 auto;
|
|
@@ -2960,7 +2956,7 @@ input[type=search]:focus,
|
|
|
2960
2956
|
}
|
|
2961
2957
|
|
|
2962
2958
|
.indent {
|
|
2963
|
-
border-left: var(--f-border-width-medium, 2px) solid var(--
|
|
2959
|
+
border-left: var(--f-border-width-medium, 2px) solid var(--fkds-color-border-weak, #ddddde);
|
|
2964
2960
|
margin-bottom: 1rem;
|
|
2965
2961
|
margin-left: 0.5rem;
|
|
2966
2962
|
padding-left: 1.5rem;
|
|
@@ -4313,7 +4309,7 @@ input[type=search]:focus,
|
|
|
4313
4309
|
}
|
|
4314
4310
|
|
|
4315
4311
|
.imenu__list {
|
|
4316
|
-
background-color: var(--
|
|
4312
|
+
background-color: var(--fkds-color-background-secondary, #f4f4f4);
|
|
4317
4313
|
margin: 0;
|
|
4318
4314
|
padding: 0;
|
|
4319
4315
|
}
|
|
@@ -4325,10 +4321,10 @@ input[type=search]:focus,
|
|
|
4325
4321
|
.imenu__list__item a,
|
|
4326
4322
|
.imenu__list__item a:visited,
|
|
4327
4323
|
.imenu__list__item a:active {
|
|
4328
|
-
color: var(--
|
|
4324
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4329
4325
|
}
|
|
4330
4326
|
.imenu__list__item a:hover {
|
|
4331
|
-
color: var(--
|
|
4327
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4332
4328
|
}
|
|
4333
4329
|
.imenu__popup-item {
|
|
4334
4330
|
position: relative;
|
|
@@ -4353,14 +4349,19 @@ input[type=search]:focus,
|
|
|
4353
4349
|
}
|
|
4354
4350
|
.imenu--vertical .imenu__list__item:hover {
|
|
4355
4351
|
font-weight: var(--f-font-weight-normal, 400);
|
|
4356
|
-
background-color: var(--
|
|
4352
|
+
background-color: var(--fkds-color-navigation-background-hover, #dbe9e2);
|
|
4357
4353
|
}
|
|
4358
4354
|
.imenu--vertical .imenu__list__item--highlight {
|
|
4359
|
-
background-color: var(--f-background-menu-vertical-highlight, #e7f0e9);
|
|
4360
4355
|
font-weight: var(--f-font-weight-medium, 700);
|
|
4356
|
+
background-color: var(--fkds-color-navigation-background-selected, #35805b);
|
|
4357
|
+
}
|
|
4358
|
+
.imenu--vertical .imenu__list__item--highlight .imenu__list__anchor {
|
|
4359
|
+
color: var(--fkds-color-text-inverted, #fff);
|
|
4361
4360
|
}
|
|
4362
4361
|
.imenu--vertical .imenu__list__item--highlight:hover {
|
|
4362
|
+
background-color: var(--fkds-color-navigation-background-selected, #35805b);
|
|
4363
4363
|
font-weight: var(--f-font-weight-medium, 700);
|
|
4364
|
+
color: var(--fkds-color-text-inverted, #fff);
|
|
4364
4365
|
}
|
|
4365
4366
|
|
|
4366
4367
|
.imenu--horizontal {
|
|
@@ -4376,11 +4377,10 @@ input[type=search]:focus,
|
|
|
4376
4377
|
padding-right: 0.75rem;
|
|
4377
4378
|
}
|
|
4378
4379
|
.imenu--horizontal .imenu__list__item--highlight {
|
|
4379
|
-
color: var(--f-text-color-menu-horizontal-highlight, #1b1e23);
|
|
4380
4380
|
font-weight: var(--f-font-weight-medium, 700);
|
|
4381
4381
|
}
|
|
4382
4382
|
.imenu--horizontal .imenu__list__item--highlight .imenu__list__anchor-container {
|
|
4383
|
-
border-bottom: 5px solid var(--
|
|
4383
|
+
border-bottom: 5px solid var(--fkds-color-navigation-border-selected, #35805b);
|
|
4384
4384
|
}
|
|
4385
4385
|
.imenu--horizontal .imenu__list__item--highlight .imenu__list__anchor:hover {
|
|
4386
4386
|
font-weight: var(--f-font-weight-medium, 700);
|
|
@@ -4393,7 +4393,7 @@ input[type=search]:focus,
|
|
|
4393
4393
|
border-bottom: 5px solid transparent;
|
|
4394
4394
|
}
|
|
4395
4395
|
.imenu--horizontal .imenu__list__anchor-container:hover {
|
|
4396
|
-
border-bottom: 5px solid var(--
|
|
4396
|
+
border-bottom: 5px solid var(--fkds-color-navigation-border-hover, #88b49f);
|
|
4397
4397
|
}
|
|
4398
4398
|
.imenu--horizontal .imenu__list__anchor {
|
|
4399
4399
|
display: inline-flex;
|
|
@@ -4401,8 +4401,7 @@ input[type=search]:focus,
|
|
|
4401
4401
|
.imenu--horizontal .imenu__list__anchor-icon-right {
|
|
4402
4402
|
flex: 1 0 auto;
|
|
4403
4403
|
padding-top: 0.25rem;
|
|
4404
|
-
margin-left: 0.
|
|
4405
|
-
color: var(--f-border-color-menu-horizontal-highlight, #116a3e);
|
|
4404
|
+
margin-left: 0.25rem;
|
|
4406
4405
|
}
|
|
4407
4406
|
|
|
4408
4407
|
.offline {
|
|
@@ -4478,7 +4477,7 @@ input[type=search]:focus,
|
|
|
4478
4477
|
flex-direction: row;
|
|
4479
4478
|
width: 100%;
|
|
4480
4479
|
color: var(--fkds-color-text-inverted, #fff);
|
|
4481
|
-
background-color: var(--
|
|
4480
|
+
background-color: var(--fkds-color-header-background-primary, #116a3e);
|
|
4482
4481
|
padding: 1rem 0 1rem 1rem;
|
|
4483
4482
|
align-items: center;
|
|
4484
4483
|
overflow: hidden;
|
|
@@ -4495,7 +4494,7 @@ input[type=search]:focus,
|
|
|
4495
4494
|
}
|
|
4496
4495
|
.page-header__logo::after {
|
|
4497
4496
|
content: " ";
|
|
4498
|
-
background-color: var(--
|
|
4497
|
+
background-color: var(--fkds-color-border-inverted, #fff);
|
|
4499
4498
|
height: 1.38rem;
|
|
4500
4499
|
padding: 0.5px;
|
|
4501
4500
|
margin: 0 1rem 0.155rem;
|
|
@@ -4538,7 +4537,7 @@ input[type=search]:focus,
|
|
|
4538
4537
|
}
|
|
4539
4538
|
.paginator__page, .paginator__previous, .paginator__next {
|
|
4540
4539
|
border: none;
|
|
4541
|
-
color:
|
|
4540
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4542
4541
|
height: 2.5rem;
|
|
4543
4542
|
background-color: transparent;
|
|
4544
4543
|
padding: 0.25rem;
|
|
@@ -4546,11 +4545,10 @@ input[type=search]:focus,
|
|
|
4546
4545
|
cursor: pointer;
|
|
4547
4546
|
}
|
|
4548
4547
|
.paginator__page--active, .paginator__previous--active, .paginator__next--active {
|
|
4549
|
-
color:
|
|
4548
|
+
color: var(--fkds-color-action-text-inverted-default, #fff);
|
|
4550
4549
|
background-color: var(--fkds-color-action-background-primary-default, #4a52b6);
|
|
4551
4550
|
}
|
|
4552
4551
|
.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) {
|
|
4553
|
-
color: black;
|
|
4554
4552
|
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
4555
4553
|
}
|
|
4556
4554
|
.paginator__next, .paginator__previous {
|
|
@@ -4783,6 +4781,9 @@ input[type=search]:focus,
|
|
|
4783
4781
|
background-color: var(--fkds-color-background-disabled, #f4f4f4);
|
|
4784
4782
|
opacity: 1;
|
|
4785
4783
|
}
|
|
4784
|
+
.select-field__select:open + .select-field__icon {
|
|
4785
|
+
transform: rotate(180deg);
|
|
4786
|
+
}
|
|
4786
4787
|
.select-field__select:disabled + .select-field__icon {
|
|
4787
4788
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
4788
4789
|
}
|
|
@@ -4860,18 +4861,23 @@ input[type=search]:focus,
|
|
|
4860
4861
|
margin-bottom: 2.5rem;
|
|
4861
4862
|
}
|
|
4862
4863
|
.static-panel__heading {
|
|
4863
|
-
background: var(--
|
|
4864
|
-
border: var(--f-
|
|
4864
|
+
background: var(--fkds-color-background-secondary, #f4f4f4);
|
|
4865
|
+
border: var(--f-border-width-medium, 2px) solid var(--fkds-color-border-primary, #8d8e91);
|
|
4866
|
+
border-radius: var(--f-border-radius-medium, 4px) var(--f-border-radius-medium, 4px) 0 0;
|
|
4865
4867
|
border-bottom: 0;
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
|
|
4869
|
-
|
|
4868
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4869
|
+
font-size: var(--f-font-size-large, 1.125rem);
|
|
4870
|
+
font-weight: var(--f-font-weight-bold, 900);
|
|
4871
|
+
line-height: var(--f-line-height-large, 1.5);
|
|
4872
|
+
margin: 0;
|
|
4873
|
+
padding: calc(1rem * var(--f-density-factor, 1)) 1rem;
|
|
4870
4874
|
}
|
|
4871
4875
|
.static-panel__content {
|
|
4872
4876
|
border-top: 0;
|
|
4873
|
-
border: var(--f-border-width-medium, 2px) solid var(--
|
|
4877
|
+
border: var(--f-border-width-medium, 2px) solid var(--fkds-color-border-primary, #8d8e91);
|
|
4878
|
+
border-radius: 0 0 var(--f-border-radius-medium, 4px) var(--f-border-radius-medium, 4px);
|
|
4874
4879
|
padding: 1.75rem 1.5rem;
|
|
4880
|
+
background: var(--fkds-color-background-primary, #fff);
|
|
4875
4881
|
}
|
|
4876
4882
|
.static-panel__icon {
|
|
4877
4883
|
height: var(--f-icon-size-x-large, 2rem);
|
|
@@ -5221,6 +5227,14 @@ input[type=search]:focus,
|
|
|
5221
5227
|
.table-ng__cell [role=combobox]:focus {
|
|
5222
5228
|
box-shadow: none;
|
|
5223
5229
|
}
|
|
5230
|
+
.table-ng__cell--align-left span,
|
|
5231
|
+
.table-ng__cell--align-left input {
|
|
5232
|
+
text-align: left;
|
|
5233
|
+
}
|
|
5234
|
+
.table-ng__cell--align-right span,
|
|
5235
|
+
.table-ng__cell--align-right input {
|
|
5236
|
+
text-align: right;
|
|
5237
|
+
}
|
|
5224
5238
|
.table-ng__cell--select, .table-ng__cell--text {
|
|
5225
5239
|
padding: 0 0.25rem;
|
|
5226
5240
|
}
|
|
@@ -5270,7 +5284,7 @@ input[type=search]:focus,
|
|
|
5270
5284
|
width: var(--f-icon-size-medium, 1.25rem);
|
|
5271
5285
|
padding: calc(0.25rem * var(--f-density-factor, 1));
|
|
5272
5286
|
}
|
|
5273
|
-
.table-ng__cell--
|
|
5287
|
+
.table-ng__cell--selectable {
|
|
5274
5288
|
width: var(--f-icon-size-medium, 1.25rem);
|
|
5275
5289
|
}
|
|
5276
5290
|
.table-ng__cell--rowheader {
|
|
@@ -5309,6 +5323,10 @@ input[type=search]:focus,
|
|
|
5309
5323
|
.table-ng__editable__text {
|
|
5310
5324
|
flex: 1 1 auto;
|
|
5311
5325
|
}
|
|
5326
|
+
.table-ng__editable__numeric span,
|
|
5327
|
+
.table-ng__editable__numeric input {
|
|
5328
|
+
font-feature-settings: "tnum" 1;
|
|
5329
|
+
}
|
|
5312
5330
|
.table-ng__editable__icon {
|
|
5313
5331
|
visibility: hidden;
|
|
5314
5332
|
margin-left: 1rem;
|
|
@@ -5334,11 +5352,11 @@ input[type=search]:focus,
|
|
|
5334
5352
|
border-bottom: 2px solid var(--f-color-focus, #1b1e23);
|
|
5335
5353
|
border-right: 1px solid var(--f-color-focus, #1b1e23);
|
|
5336
5354
|
}
|
|
5337
|
-
.table-ng__column--
|
|
5355
|
+
.table-ng__column--selectable {
|
|
5338
5356
|
text-align: center;
|
|
5339
5357
|
padding: calc(0.25rem * var(--f-density-factor, 1));
|
|
5340
5358
|
}
|
|
5341
|
-
.table-ng__column--
|
|
5359
|
+
.table-ng__column--selectable input {
|
|
5342
5360
|
height: var(--f-icon-size-medium, 1.25rem);
|
|
5343
5361
|
width: var(--f-icon-size-medium, 1.25rem);
|
|
5344
5362
|
vertical-align: middle;
|
|
@@ -5347,6 +5365,10 @@ input[type=search]:focus,
|
|
|
5347
5365
|
text-align: left;
|
|
5348
5366
|
padding: calc(0.25rem * var(--f-density-factor, 1));
|
|
5349
5367
|
}
|
|
5368
|
+
.table-ng__column--shrink {
|
|
5369
|
+
width: 1px;
|
|
5370
|
+
white-space: nowrap;
|
|
5371
|
+
}
|
|
5350
5372
|
.table-ng__column__sort-icon {
|
|
5351
5373
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
5352
5374
|
height: var(--f-icon-size-x-small, 0.75rem);
|
|
@@ -5556,15 +5578,6 @@ input[type=search]:focus,
|
|
|
5556
5578
|
width: -moz-max-content;
|
|
5557
5579
|
width: max-content;
|
|
5558
5580
|
}
|
|
5559
|
-
.tooltip__container:has(h1) .tooltip__button {
|
|
5560
|
-
bottom: 0.2lh;
|
|
5561
|
-
}
|
|
5562
|
-
.tooltip__container:has(h2) .tooltip__button {
|
|
5563
|
-
bottom: 0.1lh;
|
|
5564
|
-
}
|
|
5565
|
-
.tooltip__container:has(h3) .tooltip__button {
|
|
5566
|
-
bottom: 0;
|
|
5567
|
-
}
|
|
5568
5581
|
.tooltip__button {
|
|
5569
5582
|
display: inline-flex;
|
|
5570
5583
|
-webkit-appearance: none;
|
|
@@ -5572,21 +5585,24 @@ input[type=search]:focus,
|
|
|
5572
5585
|
appearance: none;
|
|
5573
5586
|
background: none;
|
|
5574
5587
|
border: 0;
|
|
5575
|
-
padding: 0;
|
|
5576
5588
|
cursor: pointer;
|
|
5577
|
-
|
|
5589
|
+
min-height: 24px;
|
|
5590
|
+
min-width: 24px;
|
|
5591
|
+
margin-left: 6px;
|
|
5592
|
+
padding: 0;
|
|
5578
5593
|
position: relative;
|
|
5579
|
-
|
|
5594
|
+
transform: translateY(2px);
|
|
5580
5595
|
}
|
|
5581
5596
|
.tooltip__button .icon {
|
|
5582
5597
|
top: 0;
|
|
5583
5598
|
left: 0;
|
|
5584
5599
|
}
|
|
5585
|
-
.tooltip__button,
|
|
5586
5600
|
.tooltip__button .icon,
|
|
5587
5601
|
.tooltip__button .icon-stack {
|
|
5588
|
-
|
|
5589
|
-
|
|
5602
|
+
height: var(--f-icon-size-medium, 1.25rem);
|
|
5603
|
+
width: var(--f-icon-size-medium, 1.25rem);
|
|
5604
|
+
padding: 0;
|
|
5605
|
+
margin: auto;
|
|
5590
5606
|
}
|
|
5591
5607
|
.tooltip__body {
|
|
5592
5608
|
padding: 0 1rem;
|
|
@@ -5656,6 +5672,9 @@ input[type=search]:focus,
|
|
|
5656
5672
|
.wizard-step:last-of-type .wizard-step__icon-container__line-down {
|
|
5657
5673
|
border: 0;
|
|
5658
5674
|
}
|
|
5675
|
+
.wizard-step .button-group:last-of-type {
|
|
5676
|
+
margin-top: calc(4rem * var(--f-density-factor, 1));
|
|
5677
|
+
}
|
|
5659
5678
|
.wizard-step .wizard-step__header__title {
|
|
5660
5679
|
font-size: 1.125rem;
|
|
5661
5680
|
margin-top: 2px;
|
|
@@ -5708,9 +5727,6 @@ input[type=search]:focus,
|
|
|
5708
5727
|
.wizard-step .wizard-step__icon-container__line-down {
|
|
5709
5728
|
margin-top: 4px;
|
|
5710
5729
|
}
|
|
5711
|
-
.wizard-step .wizard-step__line-down {
|
|
5712
|
-
grid-area: wizard-step__line-down;
|
|
5713
|
-
}
|
|
5714
5730
|
.wizard-step .wizard-step__content {
|
|
5715
5731
|
margin-left: 0.5rem;
|
|
5716
5732
|
min-width: 0;
|
|
@@ -5738,6 +5754,9 @@ input[type=search]:focus,
|
|
|
5738
5754
|
.wizard-step .wizard-step__content {
|
|
5739
5755
|
margin-left: 0;
|
|
5740
5756
|
}
|
|
5757
|
+
.wizard-step .wizard-step__line-down {
|
|
5758
|
+
grid-area: wizard-step__line-down;
|
|
5759
|
+
}
|
|
5741
5760
|
}
|
|
5742
5761
|
.wizard-step--open .wizard-step__header__title {
|
|
5743
5762
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
@@ -5768,6 +5787,9 @@ input[type=search]:focus,
|
|
|
5768
5787
|
.wizard-step--done .wizard-step__icon-container__number {
|
|
5769
5788
|
display: none;
|
|
5770
5789
|
}
|
|
5790
|
+
.wizard-step--done .wizard-step__line-down {
|
|
5791
|
+
display: none;
|
|
5792
|
+
}
|
|
5771
5793
|
.wizard-step--pending .wizard-step__header__title {
|
|
5772
5794
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
5773
5795
|
}
|
|
@@ -5776,6 +5798,9 @@ input[type=search]:focus,
|
|
|
5776
5798
|
background-color: var(--fkds-color-background-primary, #fff);
|
|
5777
5799
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
5778
5800
|
}
|
|
5801
|
+
.wizard-step--pending .wizard-step__line-down {
|
|
5802
|
+
display: none;
|
|
5803
|
+
}
|
|
5779
5804
|
@media (forced-colors: active) {
|
|
5780
5805
|
.wizard-step .icon.f-icon-success {
|
|
5781
5806
|
color: CanvasText;
|
|
@@ -6139,11 +6164,11 @@ input[type=search]:focus,
|
|
|
6139
6164
|
}
|
|
6140
6165
|
|
|
6141
6166
|
.ipopupmenu {
|
|
6142
|
-
background-color:
|
|
6167
|
+
background-color: --fkds-color-background-primary;
|
|
6143
6168
|
}
|
|
6144
6169
|
.ipopupmenu__list {
|
|
6145
6170
|
margin: 0;
|
|
6146
|
-
border: 1px solid var(--
|
|
6171
|
+
border: var(--f-border-width-small, 1px) solid var(--fkds-color-border-primary, #8d8e91);
|
|
6147
6172
|
padding: 0.5rem;
|
|
6148
6173
|
}
|
|
6149
6174
|
.ipopupmenu__list__item {
|
|
@@ -6154,10 +6179,10 @@ input[type=search]:focus,
|
|
|
6154
6179
|
.ipopupmenu__list__item a,
|
|
6155
6180
|
.ipopupmenu__list__item a:visited,
|
|
6156
6181
|
.ipopupmenu__list__item a:active {
|
|
6157
|
-
color: var(--
|
|
6182
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
6158
6183
|
}
|
|
6159
6184
|
.ipopupmenu__list__item a:hover {
|
|
6160
|
-
color: var(--
|
|
6185
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
6161
6186
|
}
|
|
6162
6187
|
|
|
6163
6188
|
.ipopupmenu--vertical .ipopupmenu__list {
|
|
@@ -6168,12 +6193,15 @@ input[type=search]:focus,
|
|
|
6168
6193
|
display: block;
|
|
6169
6194
|
}
|
|
6170
6195
|
.ipopupmenu--vertical .ipopupmenu__list__item:hover {
|
|
6171
|
-
background-color: var(--
|
|
6196
|
+
background-color: var(--fkds-color-navigation-background-hover, #dbe9e2);
|
|
6172
6197
|
}
|
|
6173
6198
|
.ipopupmenu--vertical .ipopupmenu__list__item--highlight {
|
|
6174
|
-
background-color: var(--
|
|
6199
|
+
background-color: var(--fkds-color-navigation-background-selected, #35805b);
|
|
6175
6200
|
font-weight: var(--f-font-weight-medium, 700);
|
|
6176
6201
|
}
|
|
6202
|
+
.ipopupmenu--vertical .ipopupmenu__list__item--highlight a {
|
|
6203
|
+
color: var(--fkds-color-text-inverted, #fff);
|
|
6204
|
+
}
|
|
6177
6205
|
|
|
6178
6206
|
.popup--overlay {
|
|
6179
6207
|
position: absolute;
|
|
@@ -6203,8 +6231,13 @@ input[type=search]:focus,
|
|
|
6203
6231
|
top: -200px;
|
|
6204
6232
|
}
|
|
6205
6233
|
.iskiplink:focus {
|
|
6206
|
-
color:
|
|
6207
|
-
background-color: var(--
|
|
6208
|
-
left:
|
|
6209
|
-
top:
|
|
6234
|
+
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
6235
|
+
background-color: var(--fkds-color-background-primary, #fff);
|
|
6236
|
+
left: 20px;
|
|
6237
|
+
top: 20px;
|
|
6238
|
+
font-size: var(--f-font-size-standard, 1rem);
|
|
6239
|
+
font-weight: var(--f-font-weight-medium, 700);
|
|
6240
|
+
text-decoration: underline;
|
|
6241
|
+
text-underline-offset: 0.25em;
|
|
6242
|
+
padding: 0.25rem 0.5rem;
|
|
6210
6243
|
}
|