@fkui/design 6.28.0 → 6.30.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 +125 -49
- package/lib/fkui.min.css +1 -1
- package/package.json +5 -5
- package/src/components/_index.scss +2 -0
- package/src/components/navigation-menu/_navigation-menu.scss +15 -10
- package/src/components/navigation-menu/_variables.scss +8 -1
- package/src/components/paginator/_index.scss +1 -0
- package/src/components/paginator/_paginator.scss +83 -0
- package/src/components/paginator/_variables.scss +1 -0
- 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 +31 -10
- package/src/components/table-ng/_table-ng.scss +2 -1
- package/src/components/tooltip/_tooltip.scss +9 -18
- package/src/internal-components/popup-menu/_popup-menu.scss +11 -6
- package/src/internal-components/popup-menu/_variables.scss +7 -0
package/lib/fkui.css
CHANGED
|
@@ -4313,7 +4313,7 @@ input[type=search]:focus,
|
|
|
4313
4313
|
}
|
|
4314
4314
|
|
|
4315
4315
|
.imenu__list {
|
|
4316
|
-
background-color: var(--
|
|
4316
|
+
background-color: var(--fkds-color-background-secondary, #f4f4f4);
|
|
4317
4317
|
margin: 0;
|
|
4318
4318
|
padding: 0;
|
|
4319
4319
|
}
|
|
@@ -4325,10 +4325,10 @@ input[type=search]:focus,
|
|
|
4325
4325
|
.imenu__list__item a,
|
|
4326
4326
|
.imenu__list__item a:visited,
|
|
4327
4327
|
.imenu__list__item a:active {
|
|
4328
|
-
color: var(--
|
|
4328
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4329
4329
|
}
|
|
4330
4330
|
.imenu__list__item a:hover {
|
|
4331
|
-
color: var(--
|
|
4331
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4332
4332
|
}
|
|
4333
4333
|
.imenu__popup-item {
|
|
4334
4334
|
position: relative;
|
|
@@ -4353,14 +4353,19 @@ input[type=search]:focus,
|
|
|
4353
4353
|
}
|
|
4354
4354
|
.imenu--vertical .imenu__list__item:hover {
|
|
4355
4355
|
font-weight: var(--f-font-weight-normal, 400);
|
|
4356
|
-
background-color: var(--
|
|
4356
|
+
background-color: var(--fkds-color-navigation-background-hover, #dbe9e2);
|
|
4357
4357
|
}
|
|
4358
4358
|
.imenu--vertical .imenu__list__item--highlight {
|
|
4359
|
-
background-color: var(--f-background-menu-vertical-highlight, #e7f0e9);
|
|
4360
4359
|
font-weight: var(--f-font-weight-medium, 700);
|
|
4360
|
+
background-color: var(--fkds-color-navigation-background-selected, #35805b);
|
|
4361
|
+
}
|
|
4362
|
+
.imenu--vertical .imenu__list__item--highlight .imenu__list__anchor {
|
|
4363
|
+
color: var(--fkds-color-text-inverted, #fff);
|
|
4361
4364
|
}
|
|
4362
4365
|
.imenu--vertical .imenu__list__item--highlight:hover {
|
|
4366
|
+
background-color: var(--fkds-color-navigation-background-selected, #35805b);
|
|
4363
4367
|
font-weight: var(--f-font-weight-medium, 700);
|
|
4368
|
+
color: var(--fkds-color-text-inverted, #fff);
|
|
4364
4369
|
}
|
|
4365
4370
|
|
|
4366
4371
|
.imenu--horizontal {
|
|
@@ -4376,11 +4381,10 @@ input[type=search]:focus,
|
|
|
4376
4381
|
padding-right: 0.75rem;
|
|
4377
4382
|
}
|
|
4378
4383
|
.imenu--horizontal .imenu__list__item--highlight {
|
|
4379
|
-
color: var(--f-text-color-menu-horizontal-highlight, #1b1e23);
|
|
4380
4384
|
font-weight: var(--f-font-weight-medium, 700);
|
|
4381
4385
|
}
|
|
4382
4386
|
.imenu--horizontal .imenu__list__item--highlight .imenu__list__anchor-container {
|
|
4383
|
-
border-bottom: 5px solid var(--
|
|
4387
|
+
border-bottom: 5px solid var(--fkds-color-navigation-border-selected, #35805b);
|
|
4384
4388
|
}
|
|
4385
4389
|
.imenu--horizontal .imenu__list__item--highlight .imenu__list__anchor:hover {
|
|
4386
4390
|
font-weight: var(--f-font-weight-medium, 700);
|
|
@@ -4393,7 +4397,7 @@ input[type=search]:focus,
|
|
|
4393
4397
|
border-bottom: 5px solid transparent;
|
|
4394
4398
|
}
|
|
4395
4399
|
.imenu--horizontal .imenu__list__anchor-container:hover {
|
|
4396
|
-
border-bottom: 5px solid var(--
|
|
4400
|
+
border-bottom: 5px solid var(--fkds-color-navigation-border-hover, #88b49f);
|
|
4397
4401
|
}
|
|
4398
4402
|
.imenu--horizontal .imenu__list__anchor {
|
|
4399
4403
|
display: inline-flex;
|
|
@@ -4401,8 +4405,7 @@ input[type=search]:focus,
|
|
|
4401
4405
|
.imenu--horizontal .imenu__list__anchor-icon-right {
|
|
4402
4406
|
flex: 1 0 auto;
|
|
4403
4407
|
padding-top: 0.25rem;
|
|
4404
|
-
margin-left: 0.
|
|
4405
|
-
color: var(--f-border-color-menu-horizontal-highlight, #116a3e);
|
|
4408
|
+
margin-left: 0.25rem;
|
|
4406
4409
|
}
|
|
4407
4410
|
|
|
4408
4411
|
.offline {
|
|
@@ -4525,6 +4528,61 @@ input[type=search]:focus,
|
|
|
4525
4528
|
padding-right: 1rem;
|
|
4526
4529
|
}
|
|
4527
4530
|
|
|
4531
|
+
.paginator {
|
|
4532
|
+
display: flex;
|
|
4533
|
+
gap: 0.5rem;
|
|
4534
|
+
align-items: center;
|
|
4535
|
+
justify-content: center;
|
|
4536
|
+
white-space: nowrap;
|
|
4537
|
+
container-type: inline-size;
|
|
4538
|
+
}
|
|
4539
|
+
.paginator__icon {
|
|
4540
|
+
align-items: center;
|
|
4541
|
+
}
|
|
4542
|
+
.paginator__page, .paginator__previous, .paginator__next {
|
|
4543
|
+
border: none;
|
|
4544
|
+
color: black;
|
|
4545
|
+
height: 2.5rem;
|
|
4546
|
+
background-color: transparent;
|
|
4547
|
+
padding: 0.25rem;
|
|
4548
|
+
border-radius: 2px;
|
|
4549
|
+
cursor: pointer;
|
|
4550
|
+
}
|
|
4551
|
+
.paginator__page--active, .paginator__previous--active, .paginator__next--active {
|
|
4552
|
+
color: white;
|
|
4553
|
+
background-color: var(--fkds-color-action-background-primary-default, #4a52b6);
|
|
4554
|
+
}
|
|
4555
|
+
.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) {
|
|
4556
|
+
color: black;
|
|
4557
|
+
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
4558
|
+
}
|
|
4559
|
+
.paginator__next, .paginator__previous {
|
|
4560
|
+
display: flex;
|
|
4561
|
+
align-items: center;
|
|
4562
|
+
justify-content: center;
|
|
4563
|
+
gap: 0.25rem;
|
|
4564
|
+
}
|
|
4565
|
+
.paginator__page {
|
|
4566
|
+
width: 2.5rem;
|
|
4567
|
+
display: none;
|
|
4568
|
+
}
|
|
4569
|
+
.paginator__next, .paginator__page-counter, .paginator__previous {
|
|
4570
|
+
width: 8rem;
|
|
4571
|
+
}
|
|
4572
|
+
.paginator__page-counter {
|
|
4573
|
+
padding: 0.25rem;
|
|
4574
|
+
text-align: center;
|
|
4575
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4576
|
+
}
|
|
4577
|
+
@container (width >= 43.5rem) {
|
|
4578
|
+
.paginator__page-counter {
|
|
4579
|
+
display: none;
|
|
4580
|
+
}
|
|
4581
|
+
.paginator__page {
|
|
4582
|
+
display: inline-block;
|
|
4583
|
+
}
|
|
4584
|
+
}
|
|
4585
|
+
|
|
4528
4586
|
.progress {
|
|
4529
4587
|
background-color: var(--fkds-color-background-primary, #fff);
|
|
4530
4588
|
border-radius: var(--f-border-radius-medium, 4px);
|
|
@@ -4728,6 +4786,9 @@ input[type=search]:focus,
|
|
|
4728
4786
|
background-color: var(--fkds-color-background-disabled, #f4f4f4);
|
|
4729
4787
|
opacity: 1;
|
|
4730
4788
|
}
|
|
4789
|
+
.select-field__select:open + .select-field__icon {
|
|
4790
|
+
transform: rotate(180deg);
|
|
4791
|
+
}
|
|
4731
4792
|
.select-field__select:disabled + .select-field__icon {
|
|
4732
4793
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
4733
4794
|
}
|
|
@@ -4805,18 +4866,23 @@ input[type=search]:focus,
|
|
|
4805
4866
|
margin-bottom: 2.5rem;
|
|
4806
4867
|
}
|
|
4807
4868
|
.static-panel__heading {
|
|
4808
|
-
background: var(--
|
|
4809
|
-
border: var(--f-
|
|
4869
|
+
background: var(--fkds-color-background-secondary, #f4f4f4);
|
|
4870
|
+
border: var(--f-border-width-medium, 2px) solid var(--fkds-color-border-primary, #8d8e91);
|
|
4871
|
+
border-radius: var(--f-border-radius-medium, 4px) var(--f-border-radius-medium, 4px) 0 0;
|
|
4810
4872
|
border-bottom: 0;
|
|
4811
|
-
|
|
4812
|
-
|
|
4813
|
-
|
|
4814
|
-
|
|
4873
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
4874
|
+
font-size: var(--f-font-size-large, 1.125rem);
|
|
4875
|
+
font-weight: var(--f-font-weight-bold, 900);
|
|
4876
|
+
line-height: var(--f-line-height-large, 1.5);
|
|
4877
|
+
margin: 0;
|
|
4878
|
+
padding: calc(1rem * var(--f-density-factor, 1)) 1rem;
|
|
4815
4879
|
}
|
|
4816
4880
|
.static-panel__content {
|
|
4817
4881
|
border-top: 0;
|
|
4818
|
-
border: var(--f-border-width-medium, 2px) solid var(--
|
|
4882
|
+
border: var(--f-border-width-medium, 2px) solid var(--fkds-color-border-primary, #8d8e91);
|
|
4883
|
+
border-radius: 0 0 var(--f-border-radius-medium, 4px) var(--f-border-radius-medium, 4px);
|
|
4819
4884
|
padding: 1.75rem 1.5rem;
|
|
4885
|
+
background: var(--fkds-color-background-primary, #fff);
|
|
4820
4886
|
}
|
|
4821
4887
|
.static-panel__icon {
|
|
4822
4888
|
height: var(--f-icon-size-x-large, 2rem);
|
|
@@ -5132,11 +5198,13 @@ input[type=search]:focus,
|
|
|
5132
5198
|
.table-ng thead th:last-child {
|
|
5133
5199
|
border-right: none;
|
|
5134
5200
|
}
|
|
5135
|
-
.table-ng tbody .table-ng__row
|
|
5201
|
+
.table-ng tbody .table-ng__row,
|
|
5202
|
+
.table-ng tfoot .table-ng__row {
|
|
5136
5203
|
background: var(--fkds-color-background-primary, #fff);
|
|
5137
5204
|
color: var(--fkds-color-text-primary, #1b1e23);
|
|
5138
5205
|
}
|
|
5139
|
-
.table-ng tbody .table-ng__row--empty
|
|
5206
|
+
.table-ng tbody .table-ng__row--empty,
|
|
5207
|
+
.table-ng tfoot .table-ng__row--empty {
|
|
5140
5208
|
text-align: center;
|
|
5141
5209
|
}
|
|
5142
5210
|
.table-ng__column__description {
|
|
@@ -5164,6 +5232,14 @@ input[type=search]:focus,
|
|
|
5164
5232
|
.table-ng__cell [role=combobox]:focus {
|
|
5165
5233
|
box-shadow: none;
|
|
5166
5234
|
}
|
|
5235
|
+
.table-ng__cell--align-left span,
|
|
5236
|
+
.table-ng__cell--align-left input {
|
|
5237
|
+
text-align: left;
|
|
5238
|
+
}
|
|
5239
|
+
.table-ng__cell--align-right span,
|
|
5240
|
+
.table-ng__cell--align-right input {
|
|
5241
|
+
text-align: right;
|
|
5242
|
+
}
|
|
5167
5243
|
.table-ng__cell--select, .table-ng__cell--text {
|
|
5168
5244
|
padding: 0 0.25rem;
|
|
5169
5245
|
}
|
|
@@ -5220,6 +5296,14 @@ input[type=search]:focus,
|
|
|
5220
5296
|
font-weight: var(--f-font-weight-medium, 700);
|
|
5221
5297
|
text-align: left;
|
|
5222
5298
|
}
|
|
5299
|
+
.table-ng__cell--custom {
|
|
5300
|
+
padding: calc(0.25rem * var(--f-density-factor, 1)) 0.5rem;
|
|
5301
|
+
border: 2px solid transparent;
|
|
5302
|
+
}
|
|
5303
|
+
.table-ng__cell--custom:focus {
|
|
5304
|
+
box-shadow: none;
|
|
5305
|
+
border: 2px solid var(--f-color-focus, #1b1e23);
|
|
5306
|
+
}
|
|
5223
5307
|
|
|
5224
5308
|
.table-ng__textedit {
|
|
5225
5309
|
flex: 0 1 0;
|
|
@@ -5244,21 +5328,16 @@ input[type=search]:focus,
|
|
|
5244
5328
|
.table-ng__editable__text {
|
|
5245
5329
|
flex: 1 1 auto;
|
|
5246
5330
|
}
|
|
5331
|
+
.table-ng__editable__numeric span,
|
|
5332
|
+
.table-ng__editable__numeric input {
|
|
5333
|
+
font-feature-settings: "tnum" 1;
|
|
5334
|
+
}
|
|
5247
5335
|
.table-ng__editable__icon {
|
|
5248
5336
|
visibility: hidden;
|
|
5249
5337
|
margin-left: 1rem;
|
|
5250
5338
|
flex: none;
|
|
5251
5339
|
}
|
|
5252
5340
|
|
|
5253
|
-
.table-ng__custom-expandable {
|
|
5254
|
-
padding: calc(0.25rem * var(--f-density-factor, 1)) 0.5rem;
|
|
5255
|
-
border: 2px solid transparent;
|
|
5256
|
-
}
|
|
5257
|
-
.table-ng__custom-expandable:focus {
|
|
5258
|
-
box-shadow: none;
|
|
5259
|
-
border: 2px solid var(--f-color-focus, #1b1e23);
|
|
5260
|
-
}
|
|
5261
|
-
|
|
5262
5341
|
.table-ng__cell--select:hover .table-ng__editable, .table-ng__cell--text:hover .table-ng__editable {
|
|
5263
5342
|
background: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
5264
5343
|
}
|
|
@@ -5500,15 +5579,6 @@ input[type=search]:focus,
|
|
|
5500
5579
|
width: -moz-max-content;
|
|
5501
5580
|
width: max-content;
|
|
5502
5581
|
}
|
|
5503
|
-
.tooltip__container:has(h1) .tooltip__button {
|
|
5504
|
-
bottom: 0.2lh;
|
|
5505
|
-
}
|
|
5506
|
-
.tooltip__container:has(h2) .tooltip__button {
|
|
5507
|
-
bottom: 0.1lh;
|
|
5508
|
-
}
|
|
5509
|
-
.tooltip__container:has(h3) .tooltip__button {
|
|
5510
|
-
bottom: 0;
|
|
5511
|
-
}
|
|
5512
5582
|
.tooltip__button {
|
|
5513
5583
|
display: inline-flex;
|
|
5514
5584
|
-webkit-appearance: none;
|
|
@@ -5516,21 +5586,24 @@ input[type=search]:focus,
|
|
|
5516
5586
|
appearance: none;
|
|
5517
5587
|
background: none;
|
|
5518
5588
|
border: 0;
|
|
5519
|
-
padding: 0;
|
|
5520
5589
|
cursor: pointer;
|
|
5521
|
-
|
|
5590
|
+
min-height: 24px;
|
|
5591
|
+
min-width: 24px;
|
|
5592
|
+
margin-left: 6px;
|
|
5593
|
+
padding: 0;
|
|
5522
5594
|
position: relative;
|
|
5523
|
-
|
|
5595
|
+
transform: translateY(2px);
|
|
5524
5596
|
}
|
|
5525
5597
|
.tooltip__button .icon {
|
|
5526
5598
|
top: 0;
|
|
5527
5599
|
left: 0;
|
|
5528
5600
|
}
|
|
5529
|
-
.tooltip__button,
|
|
5530
5601
|
.tooltip__button .icon,
|
|
5531
5602
|
.tooltip__button .icon-stack {
|
|
5532
|
-
|
|
5533
|
-
|
|
5603
|
+
height: var(--f-icon-size-medium, 1.25rem);
|
|
5604
|
+
width: var(--f-icon-size-medium, 1.25rem);
|
|
5605
|
+
padding: 0;
|
|
5606
|
+
margin: auto;
|
|
5534
5607
|
}
|
|
5535
5608
|
.tooltip__body {
|
|
5536
5609
|
padding: 0 1rem;
|
|
@@ -6083,11 +6156,11 @@ input[type=search]:focus,
|
|
|
6083
6156
|
}
|
|
6084
6157
|
|
|
6085
6158
|
.ipopupmenu {
|
|
6086
|
-
background-color:
|
|
6159
|
+
background-color: --fkds-color-background-primary;
|
|
6087
6160
|
}
|
|
6088
6161
|
.ipopupmenu__list {
|
|
6089
6162
|
margin: 0;
|
|
6090
|
-
border: 1px solid var(--
|
|
6163
|
+
border: var(--f-border-width-small, 1px) solid var(--fkds-color-border-primary, #8d8e91);
|
|
6091
6164
|
padding: 0.5rem;
|
|
6092
6165
|
}
|
|
6093
6166
|
.ipopupmenu__list__item {
|
|
@@ -6098,10 +6171,10 @@ input[type=search]:focus,
|
|
|
6098
6171
|
.ipopupmenu__list__item a,
|
|
6099
6172
|
.ipopupmenu__list__item a:visited,
|
|
6100
6173
|
.ipopupmenu__list__item a:active {
|
|
6101
|
-
color: var(--
|
|
6174
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
6102
6175
|
}
|
|
6103
6176
|
.ipopupmenu__list__item a:hover {
|
|
6104
|
-
color: var(--
|
|
6177
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
6105
6178
|
}
|
|
6106
6179
|
|
|
6107
6180
|
.ipopupmenu--vertical .ipopupmenu__list {
|
|
@@ -6112,12 +6185,15 @@ input[type=search]:focus,
|
|
|
6112
6185
|
display: block;
|
|
6113
6186
|
}
|
|
6114
6187
|
.ipopupmenu--vertical .ipopupmenu__list__item:hover {
|
|
6115
|
-
background-color: var(--
|
|
6188
|
+
background-color: var(--fkds-color-navigation-background-hover, #dbe9e2);
|
|
6116
6189
|
}
|
|
6117
6190
|
.ipopupmenu--vertical .ipopupmenu__list__item--highlight {
|
|
6118
|
-
background-color: var(--
|
|
6191
|
+
background-color: var(--fkds-color-navigation-background-selected, #35805b);
|
|
6119
6192
|
font-weight: var(--f-font-weight-medium, 700);
|
|
6120
6193
|
}
|
|
6194
|
+
.ipopupmenu--vertical .ipopupmenu__list__item--highlight a {
|
|
6195
|
+
color: var(--fkds-color-text-inverted, #fff);
|
|
6196
|
+
}
|
|
6121
6197
|
|
|
6122
6198
|
.popup--overlay {
|
|
6123
6199
|
position: absolute;
|