@fkui/design 6.29.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 +58 -38
- package/lib/fkui.min.css +1 -1
- package/package.json +5 -5
- package/src/components/navigation-menu/_navigation-menu.scss +15 -10
- package/src/components/navigation-menu/_variables.scss +8 -1
- package/src/components/paginator/_paginator.scss +1 -1
- 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 +21 -0
- 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 {
|
|
@@ -4783,6 +4786,9 @@ input[type=search]:focus,
|
|
|
4783
4786
|
background-color: var(--fkds-color-background-disabled, #f4f4f4);
|
|
4784
4787
|
opacity: 1;
|
|
4785
4788
|
}
|
|
4789
|
+
.select-field__select:open + .select-field__icon {
|
|
4790
|
+
transform: rotate(180deg);
|
|
4791
|
+
}
|
|
4786
4792
|
.select-field__select:disabled + .select-field__icon {
|
|
4787
4793
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
4788
4794
|
}
|
|
@@ -4860,18 +4866,23 @@ input[type=search]:focus,
|
|
|
4860
4866
|
margin-bottom: 2.5rem;
|
|
4861
4867
|
}
|
|
4862
4868
|
.static-panel__heading {
|
|
4863
|
-
background: var(--
|
|
4864
|
-
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;
|
|
4865
4872
|
border-bottom: 0;
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
|
|
4869
|
-
|
|
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;
|
|
4870
4879
|
}
|
|
4871
4880
|
.static-panel__content {
|
|
4872
4881
|
border-top: 0;
|
|
4873
|
-
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);
|
|
4874
4884
|
padding: 1.75rem 1.5rem;
|
|
4885
|
+
background: var(--fkds-color-background-primary, #fff);
|
|
4875
4886
|
}
|
|
4876
4887
|
.static-panel__icon {
|
|
4877
4888
|
height: var(--f-icon-size-x-large, 2rem);
|
|
@@ -5221,6 +5232,14 @@ input[type=search]:focus,
|
|
|
5221
5232
|
.table-ng__cell [role=combobox]:focus {
|
|
5222
5233
|
box-shadow: none;
|
|
5223
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
|
+
}
|
|
5224
5243
|
.table-ng__cell--select, .table-ng__cell--text {
|
|
5225
5244
|
padding: 0 0.25rem;
|
|
5226
5245
|
}
|
|
@@ -5309,6 +5328,10 @@ input[type=search]:focus,
|
|
|
5309
5328
|
.table-ng__editable__text {
|
|
5310
5329
|
flex: 1 1 auto;
|
|
5311
5330
|
}
|
|
5331
|
+
.table-ng__editable__numeric span,
|
|
5332
|
+
.table-ng__editable__numeric input {
|
|
5333
|
+
font-feature-settings: "tnum" 1;
|
|
5334
|
+
}
|
|
5312
5335
|
.table-ng__editable__icon {
|
|
5313
5336
|
visibility: hidden;
|
|
5314
5337
|
margin-left: 1rem;
|
|
@@ -5556,15 +5579,6 @@ input[type=search]:focus,
|
|
|
5556
5579
|
width: -moz-max-content;
|
|
5557
5580
|
width: max-content;
|
|
5558
5581
|
}
|
|
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
5582
|
.tooltip__button {
|
|
5569
5583
|
display: inline-flex;
|
|
5570
5584
|
-webkit-appearance: none;
|
|
@@ -5572,21 +5586,24 @@ input[type=search]:focus,
|
|
|
5572
5586
|
appearance: none;
|
|
5573
5587
|
background: none;
|
|
5574
5588
|
border: 0;
|
|
5575
|
-
padding: 0;
|
|
5576
5589
|
cursor: pointer;
|
|
5577
|
-
|
|
5590
|
+
min-height: 24px;
|
|
5591
|
+
min-width: 24px;
|
|
5592
|
+
margin-left: 6px;
|
|
5593
|
+
padding: 0;
|
|
5578
5594
|
position: relative;
|
|
5579
|
-
|
|
5595
|
+
transform: translateY(2px);
|
|
5580
5596
|
}
|
|
5581
5597
|
.tooltip__button .icon {
|
|
5582
5598
|
top: 0;
|
|
5583
5599
|
left: 0;
|
|
5584
5600
|
}
|
|
5585
|
-
.tooltip__button,
|
|
5586
5601
|
.tooltip__button .icon,
|
|
5587
5602
|
.tooltip__button .icon-stack {
|
|
5588
|
-
|
|
5589
|
-
|
|
5603
|
+
height: var(--f-icon-size-medium, 1.25rem);
|
|
5604
|
+
width: var(--f-icon-size-medium, 1.25rem);
|
|
5605
|
+
padding: 0;
|
|
5606
|
+
margin: auto;
|
|
5590
5607
|
}
|
|
5591
5608
|
.tooltip__body {
|
|
5592
5609
|
padding: 0 1rem;
|
|
@@ -6139,11 +6156,11 @@ input[type=search]:focus,
|
|
|
6139
6156
|
}
|
|
6140
6157
|
|
|
6141
6158
|
.ipopupmenu {
|
|
6142
|
-
background-color:
|
|
6159
|
+
background-color: --fkds-color-background-primary;
|
|
6143
6160
|
}
|
|
6144
6161
|
.ipopupmenu__list {
|
|
6145
6162
|
margin: 0;
|
|
6146
|
-
border: 1px solid var(--
|
|
6163
|
+
border: var(--f-border-width-small, 1px) solid var(--fkds-color-border-primary, #8d8e91);
|
|
6147
6164
|
padding: 0.5rem;
|
|
6148
6165
|
}
|
|
6149
6166
|
.ipopupmenu__list__item {
|
|
@@ -6154,10 +6171,10 @@ input[type=search]:focus,
|
|
|
6154
6171
|
.ipopupmenu__list__item a,
|
|
6155
6172
|
.ipopupmenu__list__item a:visited,
|
|
6156
6173
|
.ipopupmenu__list__item a:active {
|
|
6157
|
-
color: var(--
|
|
6174
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
6158
6175
|
}
|
|
6159
6176
|
.ipopupmenu__list__item a:hover {
|
|
6160
|
-
color: var(--
|
|
6177
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
6161
6178
|
}
|
|
6162
6179
|
|
|
6163
6180
|
.ipopupmenu--vertical .ipopupmenu__list {
|
|
@@ -6168,12 +6185,15 @@ input[type=search]:focus,
|
|
|
6168
6185
|
display: block;
|
|
6169
6186
|
}
|
|
6170
6187
|
.ipopupmenu--vertical .ipopupmenu__list__item:hover {
|
|
6171
|
-
background-color: var(--
|
|
6188
|
+
background-color: var(--fkds-color-navigation-background-hover, #dbe9e2);
|
|
6172
6189
|
}
|
|
6173
6190
|
.ipopupmenu--vertical .ipopupmenu__list__item--highlight {
|
|
6174
|
-
background-color: var(--
|
|
6191
|
+
background-color: var(--fkds-color-navigation-background-selected, #35805b);
|
|
6175
6192
|
font-weight: var(--f-font-weight-medium, 700);
|
|
6176
6193
|
}
|
|
6194
|
+
.ipopupmenu--vertical .ipopupmenu__list__item--highlight a {
|
|
6195
|
+
color: var(--fkds-color-text-inverted, #fff);
|
|
6196
|
+
}
|
|
6177
6197
|
|
|
6178
6198
|
.popup--overlay {
|
|
6179
6199
|
position: absolute;
|