@fkui/design 6.47.0 → 6.49.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 +53 -43
- package/lib/fkui.min.css +1 -1
- package/package.json +7 -11
- package/src/components/button/_button.scss +6 -4
- package/src/components/button/_variables.scss +3 -3
- package/src/components/expandable-panel/_expandable-panel.scss +1 -2
- package/src/components/expandable-paragraph/_expandable-paragraph.scss +2 -0
- package/src/components/layout-navigation/_layout-navigation.scss +8 -16
- package/src/components/layout-navigation/_variables.scss +6 -1
- package/src/components/layout-secondary/_layout-secondary.scss +8 -16
- package/src/components/layout-secondary/_variables.scss +6 -1
- package/src/components/table-ng/_cell.scss +36 -5
- package/src/core/mixins/_focus.scss +3 -2
- package/src/internal-components/calendar-month/_calendar-month.scss +2 -1
- package/src/internal-components/calendar-navbar/_calendar-navbar.scss +1 -1
package/lib/fkui.css
CHANGED
|
@@ -264,8 +264,7 @@ input[type=tel]:focus,
|
|
|
264
264
|
input[type=image]:focus,
|
|
265
265
|
input[type=search]:focus,
|
|
266
266
|
[tabindex]:focus {
|
|
267
|
-
|
|
268
|
-
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #fff, 0 0 0 4px #1b1e23, 0 0 0 6px #fff);
|
|
267
|
+
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px var(--fkds-focus-indicator-color-background), 0 0 0 4px var(--fkds-focus-indicator-color), 0 0 0 6px var(--fkds-focus-indicator-color-background));
|
|
269
268
|
outline: 3px solid transparent;
|
|
270
269
|
}
|
|
271
270
|
|
|
@@ -1239,8 +1238,7 @@ input[type=search]:focus,
|
|
|
1239
1238
|
box-shadow: var(--f-button-shadow-hover, 0 1px 3px rgba(0,0,0,.3));
|
|
1240
1239
|
}
|
|
1241
1240
|
.button:active, .calendar-navbar__year-selector-button:active, .button:focus, .calendar-navbar__year-selector-button:focus {
|
|
1242
|
-
|
|
1243
|
-
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #fff, 0 0 0 4px #1b1e23, 0 0 0 6px #fff);
|
|
1241
|
+
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px var(--fkds-focus-indicator-color-background), 0 0 0 4px var(--fkds-focus-indicator-color), 0 0 0 6px var(--fkds-focus-indicator-color-background));
|
|
1244
1242
|
outline: 3px solid transparent;
|
|
1245
1243
|
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
1246
1244
|
border-color: var(--fkds-color-action-border-primary-default, #4a52b6);
|
|
@@ -1279,8 +1277,7 @@ input[type=search]:focus,
|
|
|
1279
1277
|
box-shadow: var(--f-button-shadow-hover, 0 1px 3px rgba(0,0,0,.3));
|
|
1280
1278
|
}
|
|
1281
1279
|
.button.button--primary:active, .button--primary.calendar-navbar__year-selector-button:active, .button.button--primary:focus, .button--primary.calendar-navbar__year-selector-button:focus {
|
|
1282
|
-
|
|
1283
|
-
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #fff, 0 0 0 4px #1b1e23, 0 0 0 6px #fff);
|
|
1280
|
+
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px var(--fkds-focus-indicator-color-background), 0 0 0 4px var(--fkds-focus-indicator-color), 0 0 0 6px var(--fkds-focus-indicator-color-background));
|
|
1284
1281
|
outline: 3px solid transparent;
|
|
1285
1282
|
background-color: var(--fkds-color-action-background-primary-hover, #3b4292);
|
|
1286
1283
|
border-color: transparent;
|
|
@@ -1316,8 +1313,7 @@ input[type=search]:focus,
|
|
|
1316
1313
|
box-shadow: var(--f-button-shadow-hover, 0 1px 3px rgba(0,0,0,.3));
|
|
1317
1314
|
}
|
|
1318
1315
|
.button.button--secondary:active, .button--secondary.calendar-navbar__year-selector-button:active, .button.button--secondary:focus, .button--secondary.calendar-navbar__year-selector-button:focus {
|
|
1319
|
-
|
|
1320
|
-
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #fff, 0 0 0 4px #1b1e23, 0 0 0 6px #fff);
|
|
1316
|
+
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px var(--fkds-focus-indicator-color-background), 0 0 0 4px var(--fkds-focus-indicator-color), 0 0 0 6px var(--fkds-focus-indicator-color-background));
|
|
1321
1317
|
outline: 3px solid transparent;
|
|
1322
1318
|
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
1323
1319
|
border-color: var(--fkds-color-action-border-primary-default, #4a52b6);
|
|
@@ -1359,8 +1355,7 @@ input[type=search]:focus,
|
|
|
1359
1355
|
box-shadow: var(--f-button-shadow-hover, 0 1px 3px rgba(0,0,0,.3));
|
|
1360
1356
|
}
|
|
1361
1357
|
.button.button--discrete:active, .button--discrete.calendar-navbar__year-selector-button:active, .button.button--text:active, .button--text.calendar-navbar__year-selector-button:active, .button.button--discrete:focus, .button--discrete.calendar-navbar__year-selector-button:focus, .button.button--text:focus, .button--text.calendar-navbar__year-selector-button:focus {
|
|
1362
|
-
|
|
1363
|
-
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #fff, 0 0 0 4px #1b1e23, 0 0 0 6px #fff);
|
|
1358
|
+
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px var(--fkds-focus-indicator-color-background), 0 0 0 4px var(--fkds-focus-indicator-color), 0 0 0 6px var(--fkds-focus-indicator-color-background));
|
|
1364
1359
|
outline: 3px solid transparent;
|
|
1365
1360
|
background-color: none;
|
|
1366
1361
|
border-color: transparent;
|
|
@@ -1431,8 +1426,7 @@ input[type=search]:focus,
|
|
|
1431
1426
|
box-shadow: var(--f-button-shadow-hover, 0 1px 3px rgba(0,0,0,.3));
|
|
1432
1427
|
}
|
|
1433
1428
|
.button.button--discrete-inverted:active, .button--discrete-inverted.calendar-navbar__year-selector-button:active, .button.button--discrete-inverted:focus, .button--discrete-inverted.calendar-navbar__year-selector-button:focus {
|
|
1434
|
-
|
|
1435
|
-
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #fff, 0 0 0 4px #1b1e23, 0 0 0 6px #fff);
|
|
1429
|
+
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px var(--fkds-focus-indicator-color-background), 0 0 0 4px var(--fkds-focus-indicator-color), 0 0 0 6px var(--fkds-focus-indicator-color-background));
|
|
1436
1430
|
outline: 3px solid transparent;
|
|
1437
1431
|
background-color: transparent;
|
|
1438
1432
|
border-color: transparent;
|
|
@@ -1479,8 +1473,7 @@ input[type=search]:focus,
|
|
|
1479
1473
|
box-shadow: none;
|
|
1480
1474
|
}
|
|
1481
1475
|
.button.button--tertiary:active, .calendar-navbar__year-selector-button:active, .button.button--tertiary:focus, .calendar-navbar__year-selector-button:focus {
|
|
1482
|
-
|
|
1483
|
-
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #fff, 0 0 0 4px #1b1e23, 0 0 0 6px #fff);
|
|
1476
|
+
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px var(--fkds-focus-indicator-color-background), 0 0 0 4px var(--fkds-focus-indicator-color), 0 0 0 6px var(--fkds-focus-indicator-color-background));
|
|
1484
1477
|
outline: 3px solid transparent;
|
|
1485
1478
|
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
1486
1479
|
border-color: transparent;
|
|
@@ -1506,10 +1499,10 @@ input[type=search]:focus,
|
|
|
1506
1499
|
width: auto;
|
|
1507
1500
|
}
|
|
1508
1501
|
}
|
|
1509
|
-
.button.button--tertiary--
|
|
1502
|
+
.button.button--tertiary--muted, .calendar-navbar__year-selector-button, .button.button--tertiary--black {
|
|
1510
1503
|
color: var(--fkds-color-action-text-secondary-default, #1b1e23);
|
|
1511
1504
|
}
|
|
1512
|
-
.button.button--tertiary--
|
|
1505
|
+
.button.button--tertiary--muted:hover, .calendar-navbar__year-selector-button:hover, .button.button--tertiary--muted:active, .calendar-navbar__year-selector-button:active, .button.button--tertiary--muted:focus, .calendar-navbar__year-selector-button:focus, .button.button--tertiary--black:hover, .button.button--tertiary--black:active, .button.button--tertiary--black:focus {
|
|
1513
1506
|
color: var(--fkds-color-action-text-secondary-default, #1b1e23);
|
|
1514
1507
|
}
|
|
1515
1508
|
.button.button--tertiary--inverted, .button--tertiary--inverted.calendar-navbar__year-selector-button {
|
|
@@ -2090,8 +2083,7 @@ input[type=search]:focus,
|
|
|
2090
2083
|
opacity: 1;
|
|
2091
2084
|
}
|
|
2092
2085
|
.checkbox input[type=checkbox]:focus + .checkbox__label {
|
|
2093
|
-
|
|
2094
|
-
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #fff, 0 0 0 4px #1b1e23, 0 0 0 6px #fff);
|
|
2086
|
+
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px var(--fkds-focus-indicator-color-background), 0 0 0 4px var(--fkds-focus-indicator-color), 0 0 0 6px var(--fkds-focus-indicator-color-background));
|
|
2095
2087
|
outline: 3px solid transparent;
|
|
2096
2088
|
}
|
|
2097
2089
|
|
|
@@ -2506,8 +2498,7 @@ input[type=search]:focus,
|
|
|
2506
2498
|
}
|
|
2507
2499
|
.dialogue-tree__list-item:focus-within {
|
|
2508
2500
|
z-index: 2;
|
|
2509
|
-
|
|
2510
|
-
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #fff, 0 0 0 4px #1b1e23, 0 0 0 6px #fff);
|
|
2501
|
+
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px var(--fkds-focus-indicator-color-background), 0 0 0 4px var(--fkds-focus-indicator-color), 0 0 0 6px var(--fkds-focus-indicator-color-background));
|
|
2511
2502
|
outline: 3px solid transparent;
|
|
2512
2503
|
}
|
|
2513
2504
|
.dialogue-tree__list-item:focus-within:not(:first-child) {
|
|
@@ -2760,9 +2751,8 @@ input[type=search]:focus,
|
|
|
2760
2751
|
}
|
|
2761
2752
|
}
|
|
2762
2753
|
.expandable-panel__content {
|
|
2763
|
-
height: 0;
|
|
2764
2754
|
overflow: hidden;
|
|
2765
|
-
transition: height
|
|
2755
|
+
transition: height 400ms cubic-bezier(0.46, 0.03, 0.52, 0.96);
|
|
2766
2756
|
}
|
|
2767
2757
|
.expandable-panel__body {
|
|
2768
2758
|
background-color: var(--fkds-color-background-primary, #fff);
|
|
@@ -2833,6 +2823,8 @@ input[type=search]:focus,
|
|
|
2833
2823
|
.expandable-paragraph__content {
|
|
2834
2824
|
margin-top: calc(0.75rem * var(--f-density-factor, 1));
|
|
2835
2825
|
margin-bottom: calc(1rem * var(--f-density-factor, 1));
|
|
2826
|
+
overflow: hidden;
|
|
2827
|
+
transition: height 400ms cubic-bezier(0.46, 0.03, 0.52, 0.96);
|
|
2836
2828
|
}
|
|
2837
2829
|
.expandable-paragraph__separator {
|
|
2838
2830
|
border-bottom: var(--f-border-width-medium, 2px) solid var(--fkds-color-border-primary, #8d8e91);
|
|
@@ -2914,8 +2906,7 @@ input[type=search]:focus,
|
|
|
2914
2906
|
border: 0;
|
|
2915
2907
|
}
|
|
2916
2908
|
.file-selector input[type=file]:focus + label {
|
|
2917
|
-
|
|
2918
|
-
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #fff, 0 0 0 4px #1b1e23, 0 0 0 6px #fff);
|
|
2909
|
+
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px var(--fkds-focus-indicator-color-background), 0 0 0 4px var(--fkds-focus-indicator-color), 0 0 0 6px var(--fkds-focus-indicator-color-background));
|
|
2919
2910
|
outline: 3px solid transparent;
|
|
2920
2911
|
}
|
|
2921
2912
|
@media (forced-colors: active) {
|
|
@@ -3797,7 +3788,7 @@ input[type=search]:focus,
|
|
|
3797
3788
|
margin-right: 0;
|
|
3798
3789
|
}
|
|
3799
3790
|
.layout-navigation__navigation {
|
|
3800
|
-
background-color: #f4f4f4;
|
|
3791
|
+
background-color: var(--fkds-color-background-secondary, #f4f4f4);
|
|
3801
3792
|
display: flex;
|
|
3802
3793
|
position: fixed;
|
|
3803
3794
|
z-index: 9994;
|
|
@@ -3805,11 +3796,11 @@ input[type=search]:focus,
|
|
|
3805
3796
|
bottom: 0;
|
|
3806
3797
|
}
|
|
3807
3798
|
.layout-navigation__navigation .button.button--tertiary:hover {
|
|
3808
|
-
background-color: var(--
|
|
3799
|
+
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
3809
3800
|
}
|
|
3810
3801
|
.layout-navigation__navigation__border {
|
|
3811
3802
|
width: 4px;
|
|
3812
|
-
background-color: #f4f4f4;
|
|
3803
|
+
background-color: var(--fkds-color-background-secondary, #f4f4f4);
|
|
3813
3804
|
cursor: w-resize;
|
|
3814
3805
|
flex-shrink: 0;
|
|
3815
3806
|
display: flex;
|
|
@@ -3818,14 +3809,14 @@ input[type=search]:focus,
|
|
|
3818
3809
|
flex-direction: column;
|
|
3819
3810
|
}
|
|
3820
3811
|
.layout-navigation__navigation__border__dot {
|
|
3821
|
-
background-color: #
|
|
3812
|
+
background-color: var(--fkds-color-action-text-secondary-default, #1b1e23);
|
|
3822
3813
|
width: 4px;
|
|
3823
3814
|
height: 4px;
|
|
3824
3815
|
border-radius: 2px;
|
|
3825
3816
|
margin-top: 4px;
|
|
3826
3817
|
}
|
|
3827
3818
|
.layout-navigation__navigation__border:hover {
|
|
3828
|
-
background-color: #e5e5f5;
|
|
3819
|
+
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
3829
3820
|
}
|
|
3830
3821
|
.layout-navigation__navigation__inner {
|
|
3831
3822
|
flex-grow: 1;
|
|
@@ -3859,8 +3850,8 @@ input[type=search]:focus,
|
|
|
3859
3850
|
width: 6px;
|
|
3860
3851
|
}
|
|
3861
3852
|
.layout-navigation__navigation__inner__content::-webkit-scrollbar-thumb {
|
|
3862
|
-
background: #8d8e91;
|
|
3863
|
-
border: 1px solid #8d8e91;
|
|
3853
|
+
background: var(--fkds-color-border-primary, #8d8e91);
|
|
3854
|
+
border: 1px solid var(--fkds-color-border-primary, #8d8e91);
|
|
3864
3855
|
box-sizing: border-box;
|
|
3865
3856
|
border-radius: 33px;
|
|
3866
3857
|
}
|
|
@@ -3885,7 +3876,7 @@ input[type=search]:focus,
|
|
|
3885
3876
|
margin-right: 0;
|
|
3886
3877
|
}
|
|
3887
3878
|
.layout-secondary__secondary {
|
|
3888
|
-
background-color: #f4f4f4;
|
|
3879
|
+
background-color: var(--fkds-color-background-secondary, #f4f4f4);
|
|
3889
3880
|
position: fixed;
|
|
3890
3881
|
display: flex;
|
|
3891
3882
|
right: 0;
|
|
@@ -3893,11 +3884,11 @@ input[type=search]:focus,
|
|
|
3893
3884
|
z-index: 9994;
|
|
3894
3885
|
}
|
|
3895
3886
|
.layout-secondary__secondary .button.button--tertiary:hover {
|
|
3896
|
-
background-color: var(--
|
|
3887
|
+
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
3897
3888
|
}
|
|
3898
3889
|
.layout-secondary__secondary__border {
|
|
3899
3890
|
width: 5px;
|
|
3900
|
-
background-color: #f4f4f4;
|
|
3891
|
+
background-color: var(--fkds-color-background-secondary, #f4f4f4);
|
|
3901
3892
|
cursor: w-resize;
|
|
3902
3893
|
flex-shrink: 0;
|
|
3903
3894
|
display: flex;
|
|
@@ -3906,14 +3897,14 @@ input[type=search]:focus,
|
|
|
3906
3897
|
flex-direction: column;
|
|
3907
3898
|
}
|
|
3908
3899
|
.layout-secondary__secondary__border__dot {
|
|
3909
|
-
background-color: #
|
|
3900
|
+
background-color: var(--fkds-color-action-text-secondary-default, #1b1e23);
|
|
3910
3901
|
width: 4px;
|
|
3911
3902
|
height: 4px;
|
|
3912
3903
|
border-radius: 2px;
|
|
3913
3904
|
margin-top: 4px;
|
|
3914
3905
|
}
|
|
3915
3906
|
.layout-secondary__secondary__border:hover {
|
|
3916
|
-
background-color: #e5e5f5;
|
|
3907
|
+
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
3917
3908
|
}
|
|
3918
3909
|
.layout-secondary__secondary__inner {
|
|
3919
3910
|
position: relative;
|
|
@@ -3949,8 +3940,8 @@ input[type=search]:focus,
|
|
|
3949
3940
|
width: 6px;
|
|
3950
3941
|
}
|
|
3951
3942
|
.layout-secondary__secondary__inner__content::-webkit-scrollbar-thumb {
|
|
3952
|
-
background: #8d8e91;
|
|
3953
|
-
border: 1px solid #8d8e91;
|
|
3943
|
+
background: var(--fkds-color-border-primary, #8d8e91);
|
|
3944
|
+
border: 1px solid var(--fkds-color-border-primary, #8d8e91);
|
|
3954
3945
|
box-sizing: border-box;
|
|
3955
3946
|
border-radius: 33px;
|
|
3956
3947
|
}
|
|
@@ -4945,8 +4936,7 @@ input[type=search]:focus,
|
|
|
4945
4936
|
opacity: 1;
|
|
4946
4937
|
}
|
|
4947
4938
|
.radio-button input[type=radio]:focus + label {
|
|
4948
|
-
|
|
4949
|
-
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #fff, 0 0 0 4px #1b1e23, 0 0 0 6px #fff);
|
|
4939
|
+
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px var(--fkds-focus-indicator-color-background), 0 0 0 4px var(--fkds-focus-indicator-color), 0 0 0 6px var(--fkds-focus-indicator-color-background));
|
|
4950
4940
|
outline: 3px solid transparent;
|
|
4951
4941
|
}
|
|
4952
4942
|
|
|
@@ -5341,8 +5331,7 @@ input[type=search]:focus,
|
|
|
5341
5331
|
box-shadow: none;
|
|
5342
5332
|
}
|
|
5343
5333
|
.table__button:active, .table__button:focus {
|
|
5344
|
-
|
|
5345
|
-
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #fff, 0 0 0 4px #1b1e23, 0 0 0 6px #fff);
|
|
5334
|
+
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px var(--fkds-focus-indicator-color-background), 0 0 0 4px var(--fkds-focus-indicator-color), 0 0 0 6px var(--fkds-focus-indicator-color-background));
|
|
5346
5335
|
outline: 3px solid transparent;
|
|
5347
5336
|
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
5348
5337
|
border-color: transparent;
|
|
@@ -5463,6 +5452,10 @@ input[type=search]:focus,
|
|
|
5463
5452
|
.table-ng__cell--align-left input {
|
|
5464
5453
|
text-align: left;
|
|
5465
5454
|
}
|
|
5455
|
+
.table-ng__cell--align-left .table-ng__cell--static__text {
|
|
5456
|
+
justify-content: flex-start;
|
|
5457
|
+
text-align: left;
|
|
5458
|
+
}
|
|
5466
5459
|
.table-ng__cell--align-right {
|
|
5467
5460
|
text-align: right;
|
|
5468
5461
|
}
|
|
@@ -5470,6 +5463,13 @@ input[type=search]:focus,
|
|
|
5470
5463
|
.table-ng__cell--align-right input {
|
|
5471
5464
|
text-align: right;
|
|
5472
5465
|
}
|
|
5466
|
+
.table-ng__cell--align-right .table-ng__cell--static__text {
|
|
5467
|
+
justify-content: flex-end;
|
|
5468
|
+
text-align: right;
|
|
5469
|
+
}
|
|
5470
|
+
.table-ng__cell--numeric {
|
|
5471
|
+
font-feature-settings: "tnum" 1;
|
|
5472
|
+
}
|
|
5473
5473
|
.table-ng__cell--select, .table-ng__cell--text {
|
|
5474
5474
|
padding: 0;
|
|
5475
5475
|
}
|
|
@@ -5577,6 +5577,12 @@ input[type=search]:focus,
|
|
|
5577
5577
|
font-weight: var(--f-font-weight-medium, 600);
|
|
5578
5578
|
text-align: left;
|
|
5579
5579
|
}
|
|
5580
|
+
.table-ng__cell--static .table-ng__cell--static__text {
|
|
5581
|
+
display: flex;
|
|
5582
|
+
align-items: center;
|
|
5583
|
+
min-block-size: calc(var(--f-font-size-standard, 1rem) * var(--f-line-height-large, 1.5) + 0.25rem * var(--f-density-factor, 1) * 2 + 6px - 4px);
|
|
5584
|
+
border: 3px solid transparent;
|
|
5585
|
+
}
|
|
5580
5586
|
.table-ng__cell--custom {
|
|
5581
5587
|
padding: calc(0.25rem * var(--f-density-factor, 1)) 0.5rem;
|
|
5582
5588
|
border: 1px solid transparent;
|
|
@@ -5627,6 +5633,10 @@ input[type=search]:focus,
|
|
|
5627
5633
|
forced-color-adjust: none;
|
|
5628
5634
|
color: CanvasText;
|
|
5629
5635
|
}
|
|
5636
|
+
.table-ng__cell--static__text {
|
|
5637
|
+
forced-color-adjust: none;
|
|
5638
|
+
color: CanvasText;
|
|
5639
|
+
}
|
|
5630
5640
|
.table-ng__cell--text:hover .table-ng__editable,
|
|
5631
5641
|
.table-ng__cell--select:hover .table-ng__editable,
|
|
5632
5642
|
.table-ng__cell--text:focus-within .table-ng__editable,
|
|
@@ -6197,7 +6207,7 @@ input[type=search]:focus,
|
|
|
6197
6207
|
z-index: 9997;
|
|
6198
6208
|
}
|
|
6199
6209
|
.calendar-month__button:focus[tabindex="-1"] {
|
|
6200
|
-
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px
|
|
6210
|
+
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px var(--fkds-focus-indicator-color-background), 0 0 0 4px var(--fkds-focus-indicator-color), 0 0 0 6px var(--fkds-focus-indicator-color-background));
|
|
6201
6211
|
}
|
|
6202
6212
|
|
|
6203
6213
|
.calendar-navbar__year-selector-button--title, .calendar-navbar__month--title {
|