@fkui/design 6.39.0 → 6.41.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 +265 -140
- package/lib/fkui.min.css +1 -1
- package/package.json +5 -5
- package/src/components/_index.scss +2 -0
- package/src/components/button/_button-group.scss +62 -0
- package/src/components/button/_button-list.scss +22 -0
- package/src/components/button/_button.scss +8 -82
- package/src/components/button/_index.scss +2 -0
- package/src/components/datepicker-field/_datepicker-field.scss +13 -0
- package/src/components/definition-list/_definition-list.scss +23 -0
- package/src/components/definition-list/_index.scss +1 -0
- package/src/components/definition-list/_variables.scss +1 -0
- package/src/components/dialogue-tree/_dialogue-tree.scss +1 -1
- package/src/components/file-item/_file-item.scss +2 -1
- package/src/components/file-selector/_file-selector.scss +10 -5
- package/src/components/loader/_loader.scss +8 -0
- package/src/components/paginator/_paginator.scss +1 -1
- package/src/components/select-field/_select-field.scss +8 -0
- package/src/components/sort-filter-dataset/_sort-filter-dataset.scss +4 -58
- package/src/components/sort-filter-dataset/_variables.scss +1 -2
- package/src/components/table-ng/_cell.scss +10 -6
- package/src/components/table-ng/_column.scss +7 -2
- package/src/components/table-ng/_variables.scss +3 -0
- package/src/core/mixins/_button.scss +11 -0
- package/src/internal-components/calendar-navbar/_calendar-navbar.scss +23 -0
package/lib/fkui.css
CHANGED
|
@@ -1182,86 +1182,6 @@ input[type=search]:focus,
|
|
|
1182
1182
|
border-color: var(--fkds-color-feedback-border-info, #4a52b6);
|
|
1183
1183
|
}
|
|
1184
1184
|
|
|
1185
|
-
.button-group {
|
|
1186
|
-
align-items: center;
|
|
1187
|
-
display: flex;
|
|
1188
|
-
flex-wrap: wrap;
|
|
1189
|
-
margin-bottom: calc(0.5rem * var(--f-density-factor, 1));
|
|
1190
|
-
margin-top: calc(0.25rem * var(--f-density-factor, 1));
|
|
1191
|
-
}
|
|
1192
|
-
.button-group .button-group__item {
|
|
1193
|
-
margin: 0;
|
|
1194
|
-
margin-bottom: calc(1rem * var(--f-density-factor, 1));
|
|
1195
|
-
}
|
|
1196
|
-
@media (min-width: 640px) {
|
|
1197
|
-
.button-group .button-group__item {
|
|
1198
|
-
margin-bottom: calc(1rem * var(--f-density-factor, 1));
|
|
1199
|
-
margin-right: 1.25rem;
|
|
1200
|
-
}
|
|
1201
|
-
.button-group .button-group__item:last-child {
|
|
1202
|
-
margin-right: 0;
|
|
1203
|
-
}
|
|
1204
|
-
}
|
|
1205
|
-
.button-group > .button.button--discrete, .button-group > .button--discrete.calendar-navbar__year-selector-button, .button-group > .button.button--text, .button-group > .button--text.calendar-navbar__year-selector-button {
|
|
1206
|
-
margin-bottom: calc(1rem * var(--f-density-factor, 1));
|
|
1207
|
-
margin-right: 1.5rem;
|
|
1208
|
-
}
|
|
1209
|
-
.button-group > .button.button--discrete:last-child, .button-group > .button--discrete.calendar-navbar__year-selector-button:last-child, .button-group > .button.button--text:last-child, .button-group > .button--text.calendar-navbar__year-selector-button:last-child {
|
|
1210
|
-
margin-right: 0;
|
|
1211
|
-
}
|
|
1212
|
-
.button-group > .button.button--small, .button-group > .button--small.calendar-navbar__year-selector-button {
|
|
1213
|
-
margin-bottom: calc(0.75rem * var(--f-density-factor, 1));
|
|
1214
|
-
margin-right: 0.75rem;
|
|
1215
|
-
}
|
|
1216
|
-
.button-group > .button.button--small:last-child, .button-group > .button--small.calendar-navbar__year-selector-button:last-child {
|
|
1217
|
-
margin-right: 0;
|
|
1218
|
-
}
|
|
1219
|
-
@media (max-width: 639.98px) {
|
|
1220
|
-
.button-group > .button.button--small.button--full-width, .button-group > .button--small.button--full-width.calendar-navbar__year-selector-button {
|
|
1221
|
-
margin-right: 0;
|
|
1222
|
-
}
|
|
1223
|
-
}
|
|
1224
|
-
.button-group > .button.button--medium, .button-group > .button--medium.calendar-navbar__year-selector-button {
|
|
1225
|
-
margin-bottom: calc(0.75rem * var(--f-density-factor, 1));
|
|
1226
|
-
margin-right: 1rem;
|
|
1227
|
-
}
|
|
1228
|
-
.button-group > .button.button--medium:last-child, .button-group > .button--medium.calendar-navbar__year-selector-button:last-child {
|
|
1229
|
-
margin-right: 0;
|
|
1230
|
-
}
|
|
1231
|
-
@media (max-width: 639.98px) {
|
|
1232
|
-
.button-group > .button.button--medium.button--full-width, .button-group > .button--medium.button--full-width.calendar-navbar__year-selector-button {
|
|
1233
|
-
margin-right: 0;
|
|
1234
|
-
}
|
|
1235
|
-
}
|
|
1236
|
-
@media (min-width: 640px) {
|
|
1237
|
-
.button-group > .button.button--large, .button-group > .button--large.calendar-navbar__year-selector-button {
|
|
1238
|
-
margin-bottom: calc(1rem * var(--f-density-factor, 1));
|
|
1239
|
-
margin-right: 1.25rem;
|
|
1240
|
-
}
|
|
1241
|
-
.button-group > .button.button--large:last-child, .button-group > .button--large.calendar-navbar__year-selector-button:last-child {
|
|
1242
|
-
margin-right: 0;
|
|
1243
|
-
}
|
|
1244
|
-
}
|
|
1245
|
-
.button-group--end {
|
|
1246
|
-
justify-content: flex-end;
|
|
1247
|
-
}
|
|
1248
|
-
|
|
1249
|
-
.button-list {
|
|
1250
|
-
margin-bottom: calc(0.5rem * var(--f-density-factor, 1));
|
|
1251
|
-
margin-top: calc(0.25rem * var(--f-density-factor, 1));
|
|
1252
|
-
padding-left: 0;
|
|
1253
|
-
}
|
|
1254
|
-
.button-list > li button {
|
|
1255
|
-
margin: 0;
|
|
1256
|
-
margin-bottom: calc(1rem * var(--f-density-factor, 1));
|
|
1257
|
-
}
|
|
1258
|
-
.button-list > li button.button.button--small, .button-list > li button.button--small.calendar-navbar__year-selector-button, .button-list > li button.button.button--medium, .button-list > li button.button--medium.calendar-navbar__year-selector-button {
|
|
1259
|
-
margin-bottom: calc(0.75rem * var(--f-density-factor, 1));
|
|
1260
|
-
}
|
|
1261
|
-
.button-list > li button.button.button--large, .button-list > li button.button--large.calendar-navbar__year-selector-button {
|
|
1262
|
-
margin-bottom: calc(1rem * var(--f-density-factor, 1));
|
|
1263
|
-
}
|
|
1264
|
-
|
|
1265
1185
|
.button, .calendar-navbar__year-selector-button {
|
|
1266
1186
|
border-color: transparent;
|
|
1267
1187
|
border-radius: var(--f-border-radius-medium, 4px);
|
|
@@ -1327,10 +1247,20 @@ input[type=search]:focus,
|
|
|
1327
1247
|
border-color: var(--fkds-color-action-border-primary-default, #4a52b6);
|
|
1328
1248
|
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
1329
1249
|
}
|
|
1330
|
-
.button.disabled, .disabled.calendar-navbar__year-selector-button, .button.disabled:hover, .button:disabled, .calendar-navbar__year-selector-button:disabled, .button:disabled:hover, .button.button--disabled, .button--disabled.calendar-navbar__year-selector-button, .button.button--disabled:hover {
|
|
1250
|
+
.button.disabled, .disabled.calendar-navbar__year-selector-button, .button.disabled:hover, .button:disabled, .calendar-navbar__year-selector-button:disabled, .button:disabled:hover, .button[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button, .button[aria-disabled=true]:hover, .button.button--disabled, .button--disabled.calendar-navbar__year-selector-button, .button.button--disabled:hover {
|
|
1331
1251
|
background-color: var(--fkds-color-background-disabled, #f4f4f4);
|
|
1332
1252
|
border-color: var(--fkds-color-border-disabled, #8d8e91);
|
|
1333
1253
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
1254
|
+
pointer-events: none;
|
|
1255
|
+
}
|
|
1256
|
+
.button[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1257
|
+
pointer-events: none;
|
|
1258
|
+
}
|
|
1259
|
+
@media (forced-colors: active) {
|
|
1260
|
+
.button[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1261
|
+
color: GrayText;
|
|
1262
|
+
border-color: GrayText;
|
|
1263
|
+
}
|
|
1334
1264
|
}
|
|
1335
1265
|
.button.button--primary, .button--primary.calendar-navbar__year-selector-button {
|
|
1336
1266
|
background-color: var(--fkds-color-action-background-primary-default, #4a52b6);
|
|
@@ -1354,10 +1284,20 @@ input[type=search]:focus,
|
|
|
1354
1284
|
border-color: transparent;
|
|
1355
1285
|
color: var(--fkds-color-action-text-inverted-default, #fff);
|
|
1356
1286
|
}
|
|
1357
|
-
.button.button--primary.disabled, .button--primary.disabled.calendar-navbar__year-selector-button, .button.button--primary.disabled:hover, .button.button--primary:disabled, .button--primary.calendar-navbar__year-selector-button:disabled, .button.button--primary:disabled:hover, .button.button--primary.button--disabled, .button--primary.button--disabled.calendar-navbar__year-selector-button, .button.button--primary.button--disabled:hover {
|
|
1287
|
+
.button.button--primary.disabled, .button--primary.disabled.calendar-navbar__year-selector-button, .button.button--primary.disabled:hover, .button.button--primary:disabled, .button--primary.calendar-navbar__year-selector-button:disabled, .button.button--primary:disabled:hover, .button.button--primary[aria-disabled=true], .button--primary[aria-disabled=true].calendar-navbar__year-selector-button, .button.button--primary[aria-disabled=true]:hover, .button.button--primary.button--disabled, .button--primary.button--disabled.calendar-navbar__year-selector-button, .button.button--primary.button--disabled:hover {
|
|
1358
1288
|
background-color: var(--fkds-color-background-disabled, #f4f4f4);
|
|
1359
1289
|
border-color: var(--fkds-color-border-disabled, #8d8e91);
|
|
1360
1290
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
1291
|
+
pointer-events: none;
|
|
1292
|
+
}
|
|
1293
|
+
.button.button--primary[aria-disabled=true], .button--primary[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1294
|
+
pointer-events: none;
|
|
1295
|
+
}
|
|
1296
|
+
@media (forced-colors: active) {
|
|
1297
|
+
.button.button--primary[aria-disabled=true], .button--primary[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1298
|
+
color: GrayText;
|
|
1299
|
+
border-color: GrayText;
|
|
1300
|
+
}
|
|
1361
1301
|
}
|
|
1362
1302
|
.button.button--secondary, .button--secondary.calendar-navbar__year-selector-button {
|
|
1363
1303
|
background-color: var(--fkds-color-action-background-secondary-default, #f5f6fa);
|
|
@@ -1381,10 +1321,20 @@ input[type=search]:focus,
|
|
|
1381
1321
|
border-color: var(--fkds-color-action-border-primary-default, #4a52b6);
|
|
1382
1322
|
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
1383
1323
|
}
|
|
1384
|
-
.button.button--secondary.disabled, .button--secondary.disabled.calendar-navbar__year-selector-button, .button.button--secondary.disabled:hover, .button.button--secondary:disabled, .button--secondary.calendar-navbar__year-selector-button:disabled, .button.button--secondary:disabled:hover, .button.button--secondary.button--disabled, .button--secondary.button--disabled.calendar-navbar__year-selector-button, .button.button--secondary.button--disabled:hover {
|
|
1324
|
+
.button.button--secondary.disabled, .button--secondary.disabled.calendar-navbar__year-selector-button, .button.button--secondary.disabled:hover, .button.button--secondary:disabled, .button--secondary.calendar-navbar__year-selector-button:disabled, .button.button--secondary:disabled:hover, .button.button--secondary[aria-disabled=true], .button--secondary[aria-disabled=true].calendar-navbar__year-selector-button, .button.button--secondary[aria-disabled=true]:hover, .button.button--secondary.button--disabled, .button--secondary.button--disabled.calendar-navbar__year-selector-button, .button.button--secondary.button--disabled:hover {
|
|
1385
1325
|
background-color: var(--fkds-color-background-disabled, #f4f4f4);
|
|
1386
1326
|
border-color: var(--fkds-color-border-disabled, #8d8e91);
|
|
1387
1327
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
1328
|
+
pointer-events: none;
|
|
1329
|
+
}
|
|
1330
|
+
.button.button--secondary[aria-disabled=true], .button--secondary[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1331
|
+
pointer-events: none;
|
|
1332
|
+
}
|
|
1333
|
+
@media (forced-colors: active) {
|
|
1334
|
+
.button.button--secondary[aria-disabled=true], .button--secondary[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1335
|
+
color: GrayText;
|
|
1336
|
+
border-color: GrayText;
|
|
1337
|
+
}
|
|
1388
1338
|
}
|
|
1389
1339
|
.button.button--discrete, .button--discrete.calendar-navbar__year-selector-button, .button.button--text, .button--text.calendar-navbar__year-selector-button {
|
|
1390
1340
|
width: inherit;
|
|
@@ -1414,10 +1364,20 @@ input[type=search]:focus,
|
|
|
1414
1364
|
border-color: transparent;
|
|
1415
1365
|
color: var(--fkds-color-action-text-primary-hover, #3b4292);
|
|
1416
1366
|
}
|
|
1417
|
-
.button.button--discrete.disabled, .button--discrete.disabled.calendar-navbar__year-selector-button, .button.disabled.button--text, .disabled.button--text.calendar-navbar__year-selector-button, .button.button--discrete.disabled:hover, .button.button--discrete:disabled, .button--discrete.calendar-navbar__year-selector-button:disabled, .button.button--text:disabled, .button--text.calendar-navbar__year-selector-button:disabled, .button.button--discrete:disabled:hover, .button.button--discrete.button--disabled, .button--discrete.button--disabled.calendar-navbar__year-selector-button, .button.button--disabled.button--text, .button--disabled.button--text.calendar-navbar__year-selector-button, .button.button--discrete.button--disabled:hover {
|
|
1367
|
+
.button.button--discrete.disabled, .button--discrete.disabled.calendar-navbar__year-selector-button, .button.disabled.button--text, .disabled.button--text.calendar-navbar__year-selector-button, .button.button--discrete.disabled:hover, .button.button--discrete:disabled, .button--discrete.calendar-navbar__year-selector-button:disabled, .button.button--text:disabled, .button--text.calendar-navbar__year-selector-button:disabled, .button.button--discrete:disabled:hover, .button.button--discrete[aria-disabled=true], .button--discrete[aria-disabled=true].calendar-navbar__year-selector-button, .button[aria-disabled=true].button--text, [aria-disabled=true].button--text.calendar-navbar__year-selector-button, .button.button--discrete[aria-disabled=true]:hover, .button.button--discrete.button--disabled, .button--discrete.button--disabled.calendar-navbar__year-selector-button, .button.button--disabled.button--text, .button--disabled.button--text.calendar-navbar__year-selector-button, .button.button--discrete.button--disabled:hover {
|
|
1418
1368
|
background-color: transparent;
|
|
1419
1369
|
border-color: transparent;
|
|
1420
1370
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
1371
|
+
pointer-events: none;
|
|
1372
|
+
}
|
|
1373
|
+
.button.button--discrete[aria-disabled=true], .button--discrete[aria-disabled=true].calendar-navbar__year-selector-button, .button[aria-disabled=true].button--text, [aria-disabled=true].button--text.calendar-navbar__year-selector-button {
|
|
1374
|
+
pointer-events: none;
|
|
1375
|
+
}
|
|
1376
|
+
@media (forced-colors: active) {
|
|
1377
|
+
.button.button--discrete[aria-disabled=true], .button--discrete[aria-disabled=true].calendar-navbar__year-selector-button, .button[aria-disabled=true].button--text, [aria-disabled=true].button--text.calendar-navbar__year-selector-button {
|
|
1378
|
+
color: GrayText;
|
|
1379
|
+
border-color: GrayText;
|
|
1380
|
+
}
|
|
1421
1381
|
}
|
|
1422
1382
|
@media (max-width: 639.98px) {
|
|
1423
1383
|
.button.button--discrete, .button--discrete.calendar-navbar__year-selector-button, .button.button--text, .button--text.calendar-navbar__year-selector-button {
|
|
@@ -1476,10 +1436,20 @@ input[type=search]:focus,
|
|
|
1476
1436
|
border-color: transparent;
|
|
1477
1437
|
color: var(--fkds-color-action-text-inverted-hover, #fff);
|
|
1478
1438
|
}
|
|
1479
|
-
.button.button--discrete-inverted.disabled, .button--discrete-inverted.disabled.calendar-navbar__year-selector-button, .button.button--discrete-inverted.disabled:hover, .button.button--discrete-inverted:disabled, .button--discrete-inverted.calendar-navbar__year-selector-button:disabled, .button.button--discrete-inverted:disabled:hover, .button.button--discrete-inverted.button--disabled, .button--discrete-inverted.button--disabled.calendar-navbar__year-selector-button, .button.button--discrete-inverted.button--disabled:hover {
|
|
1439
|
+
.button.button--discrete-inverted.disabled, .button--discrete-inverted.disabled.calendar-navbar__year-selector-button, .button.button--discrete-inverted.disabled:hover, .button.button--discrete-inverted:disabled, .button--discrete-inverted.calendar-navbar__year-selector-button:disabled, .button.button--discrete-inverted:disabled:hover, .button.button--discrete-inverted[aria-disabled=true], .button--discrete-inverted[aria-disabled=true].calendar-navbar__year-selector-button, .button.button--discrete-inverted[aria-disabled=true]:hover, .button.button--discrete-inverted.button--disabled, .button--discrete-inverted.button--disabled.calendar-navbar__year-selector-button, .button.button--discrete-inverted.button--disabled:hover {
|
|
1480
1440
|
background-color: transparent;
|
|
1481
1441
|
border-color: transparent;
|
|
1482
1442
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
1443
|
+
pointer-events: none;
|
|
1444
|
+
}
|
|
1445
|
+
.button.button--discrete-inverted[aria-disabled=true], .button--discrete-inverted[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1446
|
+
pointer-events: none;
|
|
1447
|
+
}
|
|
1448
|
+
@media (forced-colors: active) {
|
|
1449
|
+
.button.button--discrete-inverted[aria-disabled=true], .button--discrete-inverted[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1450
|
+
color: GrayText;
|
|
1451
|
+
border-color: GrayText;
|
|
1452
|
+
}
|
|
1483
1453
|
}
|
|
1484
1454
|
@media (max-width: 639.98px) {
|
|
1485
1455
|
.button.button--discrete-inverted, .button--discrete-inverted.calendar-navbar__year-selector-button {
|
|
@@ -1515,10 +1485,20 @@ input[type=search]:focus,
|
|
|
1515
1485
|
border-color: transparent;
|
|
1516
1486
|
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
1517
1487
|
}
|
|
1518
|
-
.button.button--tertiary.disabled, .disabled.calendar-navbar__year-selector-button, .button.button--tertiary.disabled:hover, .button.button--tertiary:disabled, .calendar-navbar__year-selector-button:disabled, .button.button--tertiary:disabled:hover, .button.button--tertiary.button--disabled, .button--disabled.calendar-navbar__year-selector-button, .button.button--tertiary.button--disabled:hover {
|
|
1488
|
+
.button.button--tertiary.disabled, .disabled.calendar-navbar__year-selector-button, .button.button--tertiary.disabled:hover, .button.button--tertiary:disabled, .calendar-navbar__year-selector-button:disabled, .button.button--tertiary:disabled:hover, .button.button--tertiary[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button, .button.button--tertiary[aria-disabled=true]:hover, .button.button--tertiary.button--disabled, .button--disabled.calendar-navbar__year-selector-button, .button.button--tertiary.button--disabled:hover {
|
|
1519
1489
|
background-color: transparent;
|
|
1520
1490
|
border-color: transparent;
|
|
1521
1491
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
1492
|
+
pointer-events: none;
|
|
1493
|
+
}
|
|
1494
|
+
.button.button--tertiary[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1495
|
+
pointer-events: none;
|
|
1496
|
+
}
|
|
1497
|
+
@media (forced-colors: active) {
|
|
1498
|
+
.button.button--tertiary[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1499
|
+
color: GrayText;
|
|
1500
|
+
border-color: GrayText;
|
|
1501
|
+
}
|
|
1522
1502
|
}
|
|
1523
1503
|
@media (max-width: 639.98px) {
|
|
1524
1504
|
.button.button--tertiary, .calendar-navbar__year-selector-button {
|
|
@@ -1531,7 +1511,7 @@ input[type=search]:focus,
|
|
|
1531
1511
|
.button.button--tertiary--black:hover, .calendar-navbar__year-selector-button:hover, .button.button--tertiary--black:active, .calendar-navbar__year-selector-button:active, .button.button--tertiary--black:focus, .calendar-navbar__year-selector-button:focus {
|
|
1532
1512
|
color: var(--fkds-color-action-text-secondary-default, #1b1e23);
|
|
1533
1513
|
}
|
|
1534
|
-
.button.button--tertiary:disabled, .calendar-navbar__year-selector-button:disabled {
|
|
1514
|
+
.button.button--tertiary:disabled, .calendar-navbar__year-selector-button:disabled, .button.button--tertiary[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1535
1515
|
border: none;
|
|
1536
1516
|
}
|
|
1537
1517
|
.button.button--tertiary--inverted, .button--tertiary--inverted.calendar-navbar__year-selector-button {
|
|
@@ -1541,7 +1521,7 @@ input[type=search]:focus,
|
|
|
1541
1521
|
color: var(--fkds-color-action-text-inverted-focus, #fff);
|
|
1542
1522
|
background-color: transparent;
|
|
1543
1523
|
}
|
|
1544
|
-
.button.button--tertiary--inverted:disabled, .button--tertiary--inverted.calendar-navbar__year-selector-button:disabled {
|
|
1524
|
+
.button.button--tertiary--inverted:disabled, .button--tertiary--inverted.calendar-navbar__year-selector-button:disabled, .button.button--tertiary--inverted[aria-disabled=true], .button--tertiary--inverted[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1545
1525
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
1546
1526
|
border: none;
|
|
1547
1527
|
border-width: 0;
|
|
@@ -1552,7 +1532,7 @@ input[type=search]:focus,
|
|
|
1552
1532
|
text-decoration-thickness: 2px;
|
|
1553
1533
|
text-underline-offset: 4px;
|
|
1554
1534
|
}
|
|
1555
|
-
.button.button--tertiary--underline:disabled, .button--tertiary--underline.calendar-navbar__year-selector-button:disabled {
|
|
1535
|
+
.button.button--tertiary--underline:disabled, .button--tertiary--underline.calendar-navbar__year-selector-button:disabled, .button.button--tertiary--underline[aria-disabled=true], .button--tertiary--underline[aria-disabled=true].calendar-navbar__year-selector-button {
|
|
1556
1536
|
text-decoration: none;
|
|
1557
1537
|
}
|
|
1558
1538
|
.button.button--tertiary.button--small, .button--small.calendar-navbar__year-selector-button {
|
|
@@ -1644,7 +1624,7 @@ input[type=search]:focus,
|
|
|
1644
1624
|
position: absolute;
|
|
1645
1625
|
right: 1.25rem;
|
|
1646
1626
|
}
|
|
1647
|
-
.button.disabled, .disabled.calendar-navbar__year-selector-button, .button.disabled:hover, .button:disabled, .calendar-navbar__year-selector-button:disabled, .button:disabled:hover, .button.button--disabled, .button--disabled.calendar-navbar__year-selector-button {
|
|
1627
|
+
.button.disabled, .disabled.calendar-navbar__year-selector-button, .button.disabled:hover, .button:disabled, .calendar-navbar__year-selector-button:disabled, .button:disabled:hover, .button[aria-disabled=true], [aria-disabled=true].calendar-navbar__year-selector-button, .button[aria-disabled=true]:hover, .button.button--disabled, .button--disabled.calendar-navbar__year-selector-button {
|
|
1648
1628
|
border-width: var(--f-border-width-medium, 2px);
|
|
1649
1629
|
box-shadow: none;
|
|
1650
1630
|
cursor: default;
|
|
@@ -1703,6 +1683,86 @@ input[type=search]:focus,
|
|
|
1703
1683
|
width: calc(var(--f-icon-size-small, 1rem) + 0.25rem);
|
|
1704
1684
|
}
|
|
1705
1685
|
|
|
1686
|
+
.button-group {
|
|
1687
|
+
align-items: center;
|
|
1688
|
+
display: flex;
|
|
1689
|
+
flex-wrap: wrap;
|
|
1690
|
+
margin-bottom: calc(0.5rem * var(--f-density-factor, 1));
|
|
1691
|
+
margin-top: calc(0.25rem * var(--f-density-factor, 1));
|
|
1692
|
+
}
|
|
1693
|
+
.button-group--end {
|
|
1694
|
+
justify-content: flex-end;
|
|
1695
|
+
}
|
|
1696
|
+
.button-group__item {
|
|
1697
|
+
margin: 0;
|
|
1698
|
+
margin-bottom: calc(1rem * var(--f-density-factor, 1));
|
|
1699
|
+
}
|
|
1700
|
+
@media (min-width: 640px) {
|
|
1701
|
+
.button-group__item {
|
|
1702
|
+
margin-bottom: calc(1rem * var(--f-density-factor, 1));
|
|
1703
|
+
margin-right: 1.25rem;
|
|
1704
|
+
}
|
|
1705
|
+
.button-group__item:last-child {
|
|
1706
|
+
margin-right: 0;
|
|
1707
|
+
}
|
|
1708
|
+
}
|
|
1709
|
+
.button-group > .button--discrete {
|
|
1710
|
+
margin-bottom: calc(1rem * var(--f-density-factor, 1));
|
|
1711
|
+
margin-right: 1.5rem;
|
|
1712
|
+
}
|
|
1713
|
+
.button-group > .button--discrete:last-child {
|
|
1714
|
+
margin-right: 0;
|
|
1715
|
+
}
|
|
1716
|
+
.button-group > .button--small {
|
|
1717
|
+
margin-bottom: calc(0.75rem * var(--f-density-factor, 1));
|
|
1718
|
+
margin-right: 0.75rem;
|
|
1719
|
+
}
|
|
1720
|
+
.button-group > .button--small:last-child {
|
|
1721
|
+
margin-right: 0;
|
|
1722
|
+
}
|
|
1723
|
+
@media (max-width: 639.98px) {
|
|
1724
|
+
.button-group > .button--small.button--full-width {
|
|
1725
|
+
margin-right: 0;
|
|
1726
|
+
}
|
|
1727
|
+
}
|
|
1728
|
+
.button-group > .button--medium {
|
|
1729
|
+
margin-bottom: calc(0.75rem * var(--f-density-factor, 1));
|
|
1730
|
+
margin-right: 1rem;
|
|
1731
|
+
}
|
|
1732
|
+
.button-group > .button--medium:last-child {
|
|
1733
|
+
margin-right: 0;
|
|
1734
|
+
}
|
|
1735
|
+
@media (max-width: 639.98px) {
|
|
1736
|
+
.button-group > .button--medium.button--full-width {
|
|
1737
|
+
margin-right: 0;
|
|
1738
|
+
}
|
|
1739
|
+
}
|
|
1740
|
+
@media (min-width: 640px) {
|
|
1741
|
+
.button-group > .button--large {
|
|
1742
|
+
margin-bottom: calc(1rem * var(--f-density-factor, 1));
|
|
1743
|
+
margin-right: 1.25rem;
|
|
1744
|
+
}
|
|
1745
|
+
.button-group > .button--large:last-child {
|
|
1746
|
+
margin-right: 0;
|
|
1747
|
+
}
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
.button-list {
|
|
1751
|
+
margin-bottom: calc(0.5rem * var(--f-density-factor, 1));
|
|
1752
|
+
margin-top: calc(0.25rem * var(--f-density-factor, 1));
|
|
1753
|
+
padding-left: 0;
|
|
1754
|
+
}
|
|
1755
|
+
.button-list > li button {
|
|
1756
|
+
margin: 0;
|
|
1757
|
+
margin-bottom: calc(1rem * var(--f-density-factor, 1));
|
|
1758
|
+
}
|
|
1759
|
+
.button-list > li button.button.button--small, .button-list > li button.button.button--medium {
|
|
1760
|
+
margin-bottom: calc(0.75rem * var(--f-density-factor, 1));
|
|
1761
|
+
}
|
|
1762
|
+
.button-list > li button.button.button--large {
|
|
1763
|
+
margin-bottom: calc(1rem * var(--f-density-factor, 1));
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1706
1766
|
/* stylelint-disable no-invalid-position-declaration -- the selector is set when the mixin is included */
|
|
1707
1767
|
.calendar-day {
|
|
1708
1768
|
align-items: center;
|
|
@@ -2384,12 +2444,27 @@ input[type=search]:focus,
|
|
|
2384
2444
|
width: calc(var(--f-icon-size-x-large, 2rem) * var(--f-density-factor, 1));
|
|
2385
2445
|
vertical-align: middle;
|
|
2386
2446
|
}
|
|
2447
|
+
@media (forced-colors: active) {
|
|
2448
|
+
.datepicker-field__button .icon {
|
|
2449
|
+
color: ButtonBorder;
|
|
2450
|
+
}
|
|
2451
|
+
}
|
|
2387
2452
|
.datepicker-field__button:hover .icon {
|
|
2388
2453
|
color: var(--fkds-color-action-text-primary-hover, #3b4292);
|
|
2389
2454
|
}
|
|
2455
|
+
@media (forced-colors: active) {
|
|
2456
|
+
.datepicker-field__button:hover .icon {
|
|
2457
|
+
color: LinkText;
|
|
2458
|
+
}
|
|
2459
|
+
}
|
|
2390
2460
|
.datepicker-field__button:disabled .icon {
|
|
2391
2461
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
2392
2462
|
}
|
|
2463
|
+
@media (forced-colors: active) {
|
|
2464
|
+
.datepicker-field__button:disabled .icon {
|
|
2465
|
+
color: GrayText;
|
|
2466
|
+
}
|
|
2467
|
+
}
|
|
2393
2468
|
.datepicker-field__popup {
|
|
2394
2469
|
margin-top: -16px;
|
|
2395
2470
|
border-radius: var(--f-border-radius-medium, 4px);
|
|
@@ -2403,6 +2478,7 @@ input[type=search]:focus,
|
|
|
2403
2478
|
.datepicker-field__close > .datepicker-field__close__button {
|
|
2404
2479
|
margin: 0;
|
|
2405
2480
|
padding: 1rem;
|
|
2481
|
+
align-items: center;
|
|
2406
2482
|
}
|
|
2407
2483
|
|
|
2408
2484
|
.popup--overlay .datepicker-field__popup {
|
|
@@ -2425,6 +2501,24 @@ input[type=search]:focus,
|
|
|
2425
2501
|
border: unset;
|
|
2426
2502
|
}
|
|
2427
2503
|
|
|
2504
|
+
.definition-list {
|
|
2505
|
+
margin: 0;
|
|
2506
|
+
color: var(--fkds-color-text-primary, #1b1e23);
|
|
2507
|
+
}
|
|
2508
|
+
.definition-list__term {
|
|
2509
|
+
float: left;
|
|
2510
|
+
clear: left;
|
|
2511
|
+
margin-right: 0.25rem;
|
|
2512
|
+
font-weight: var(--f-font-weight-medium, 600);
|
|
2513
|
+
}
|
|
2514
|
+
.definition-list__term::after {
|
|
2515
|
+
content: ":";
|
|
2516
|
+
}
|
|
2517
|
+
.definition-list__definition {
|
|
2518
|
+
margin-left: 0;
|
|
2519
|
+
margin-bottom: 0.25rem;
|
|
2520
|
+
}
|
|
2521
|
+
|
|
2428
2522
|
.dialogue-tree {
|
|
2429
2523
|
margin: 0 0 var(--f-margin-component-bottom, 1.5rem);
|
|
2430
2524
|
}
|
|
@@ -2457,6 +2551,7 @@ input[type=search]:focus,
|
|
|
2457
2551
|
display: flex;
|
|
2458
2552
|
align-items: center;
|
|
2459
2553
|
justify-content: space-between;
|
|
2554
|
+
cursor: pointer;
|
|
2460
2555
|
}
|
|
2461
2556
|
.dialogue-tree__list-item button span {
|
|
2462
2557
|
display: -webkit-box;
|
|
@@ -2466,7 +2561,6 @@ input[type=search]:focus,
|
|
|
2466
2561
|
font-weight: var(--f-font-weight-medium, 600);
|
|
2467
2562
|
font-size: var(--f-font-size-standard, 1rem);
|
|
2468
2563
|
text-align: left;
|
|
2469
|
-
cursor: pointer;
|
|
2470
2564
|
}
|
|
2471
2565
|
.dialogue-tree__list-item button .icon {
|
|
2472
2566
|
flex-shrink: 0;
|
|
@@ -2816,7 +2910,8 @@ input[type=search]:focus,
|
|
|
2816
2910
|
.file-item__file-name {
|
|
2817
2911
|
margin-left: 0.25rem;
|
|
2818
2912
|
min-width: 0;
|
|
2819
|
-
overflow-wrap:
|
|
2913
|
+
overflow-wrap: anywhere;
|
|
2914
|
+
hyphens: auto;
|
|
2820
2915
|
white-space: normal;
|
|
2821
2916
|
}
|
|
2822
2917
|
.file-item__separator {
|
|
@@ -2839,14 +2934,24 @@ input[type=search]:focus,
|
|
|
2839
2934
|
box-shadow: var(--f-focus-box-shadow, 0 0 0 2px #fff, 0 0 0 4px #1b1e23, 0 0 0 6px #fff);
|
|
2840
2935
|
outline: 3px solid transparent;
|
|
2841
2936
|
}
|
|
2842
|
-
|
|
2937
|
+
@media (forced-colors: active) {
|
|
2938
|
+
.file-selector label.button.button--tertiary {
|
|
2939
|
+
border-color: ButtonBorder;
|
|
2940
|
+
color: ButtonText;
|
|
2941
|
+
}
|
|
2942
|
+
}
|
|
2943
|
+
.file-selector label.button.button--tertiary {
|
|
2843
2944
|
cursor: pointer;
|
|
2844
2945
|
}
|
|
2845
|
-
.file-selector input
|
|
2846
|
-
background-color: transparent;
|
|
2847
|
-
border-color: transparent;
|
|
2946
|
+
.file-selector input[aria-disabled=true] + label.button.button--tertiary {
|
|
2848
2947
|
cursor: default;
|
|
2849
2948
|
}
|
|
2949
|
+
@media (forced-colors: active) {
|
|
2950
|
+
.file-selector input[aria-disabled=true] + label.button.button--tertiary {
|
|
2951
|
+
color: GrayText;
|
|
2952
|
+
border-color: GrayText;
|
|
2953
|
+
}
|
|
2954
|
+
}
|
|
2850
2955
|
|
|
2851
2956
|
.file-uploader__message-box {
|
|
2852
2957
|
margin-top: 1.25rem;
|
|
@@ -3915,6 +4020,11 @@ input[type=search]:focus,
|
|
|
3915
4020
|
position: absolute;
|
|
3916
4021
|
width: 1rem;
|
|
3917
4022
|
}
|
|
4023
|
+
@media (forced-colors: active) {
|
|
4024
|
+
.loader__circle {
|
|
4025
|
+
background-color: CanvasText;
|
|
4026
|
+
}
|
|
4027
|
+
}
|
|
3918
4028
|
.loader__wait-text {
|
|
3919
4029
|
align-items: center;
|
|
3920
4030
|
display: flex;
|
|
@@ -3940,6 +4050,11 @@ input[type=search]:focus,
|
|
|
3940
4050
|
.loader--overlay .loader__circle {
|
|
3941
4051
|
background-color: var(--fkds-color-text-inverted, #fff);
|
|
3942
4052
|
}
|
|
4053
|
+
@media (forced-colors: active) {
|
|
4054
|
+
.loader--overlay .loader__circle {
|
|
4055
|
+
background-color: CanvasText;
|
|
4056
|
+
}
|
|
4057
|
+
}
|
|
3943
4058
|
.loader .loader__spinner-1-circle2 {
|
|
3944
4059
|
animation-delay: -0.9s;
|
|
3945
4060
|
}
|
|
@@ -4674,7 +4789,7 @@ input[type=search]:focus,
|
|
|
4674
4789
|
}
|
|
4675
4790
|
.paginator__page--active, .paginator__previous--active, .paginator__next--active {
|
|
4676
4791
|
color: var(--fkds-color-action-text-inverted-default, #fff);
|
|
4677
|
-
background-color: var(--fkds-color-
|
|
4792
|
+
background-color: var(--fkds-color-select-background-primary-default, #4a52b6);
|
|
4678
4793
|
}
|
|
4679
4794
|
@media (forced-colors: active) {
|
|
4680
4795
|
.paginator__page--active, .paginator__previous--active, .paginator__next--active {
|
|
@@ -4910,6 +5025,11 @@ input[type=search]:focus,
|
|
|
4910
5025
|
padding: var(--padding-input-fields, 0 2.25rem 0 0.75rem);
|
|
4911
5026
|
width: var(--f-width-full, 100%);
|
|
4912
5027
|
}
|
|
5028
|
+
@media (forced-colors: active) {
|
|
5029
|
+
.select-field__select {
|
|
5030
|
+
border-color: ButtonBorder;
|
|
5031
|
+
}
|
|
5032
|
+
}
|
|
4913
5033
|
.select-field__select:hover {
|
|
4914
5034
|
background-color: var(--fkds-color-action-background-secondary-hover, #e5e5f5);
|
|
4915
5035
|
}
|
|
@@ -4934,6 +5054,11 @@ input[type=search]:focus,
|
|
|
4934
5054
|
.select-field__icon {
|
|
4935
5055
|
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
4936
5056
|
}
|
|
5057
|
+
@media (forced-colors: active) {
|
|
5058
|
+
.select-field__icon {
|
|
5059
|
+
color: buttonText;
|
|
5060
|
+
}
|
|
5061
|
+
}
|
|
4937
5062
|
.select-field__error-popup-icon {
|
|
4938
5063
|
color: var(--fkds-color-feedback-text-negative, #ca1515);
|
|
4939
5064
|
display: inline;
|
|
@@ -4952,51 +5077,11 @@ input[type=search]:focus,
|
|
|
4952
5077
|
.sort-filter-dataset__sort {
|
|
4953
5078
|
min-width: 80px;
|
|
4954
5079
|
}
|
|
4955
|
-
.sort-filter-dataset__search {
|
|
4956
|
-
position: relative;
|
|
4957
|
-
}
|
|
4958
|
-
.sort-filter-dataset__search input {
|
|
4959
|
-
padding-left: 2.1rem;
|
|
4960
|
-
padding-right: 2.1rem;
|
|
4961
|
-
}
|
|
4962
5080
|
@media (min-width: 640px) {
|
|
4963
5081
|
.sort-filter-dataset__search input {
|
|
4964
5082
|
width: 160px;
|
|
4965
5083
|
}
|
|
4966
5084
|
}
|
|
4967
|
-
.sort-filter-dataset__search__magnify-icon {
|
|
4968
|
-
position: absolute;
|
|
4969
|
-
left: 1.75rem;
|
|
4970
|
-
height: var(--f-height-large, 2.5rem);
|
|
4971
|
-
/* same as textfield */
|
|
4972
|
-
z-index: 1;
|
|
4973
|
-
/* In front of input field */
|
|
4974
|
-
width: 1.2rem;
|
|
4975
|
-
color: var(--fkds-color-text-secondary, #5f6165);
|
|
4976
|
-
}
|
|
4977
|
-
@media (max-width: 639.98px) {
|
|
4978
|
-
.sort-filter-dataset__search__magnify-icon {
|
|
4979
|
-
top: 1.5rem;
|
|
4980
|
-
left: 0.75rem;
|
|
4981
|
-
}
|
|
4982
|
-
}
|
|
4983
|
-
.sort-filter-dataset__search__close-icon.button--discrete {
|
|
4984
|
-
position: absolute;
|
|
4985
|
-
top: -0.75rem;
|
|
4986
|
-
right: 0;
|
|
4987
|
-
color: var(--fkds-color-text-secondary, #5f6165);
|
|
4988
|
-
cursor: pointer;
|
|
4989
|
-
padding: 1rem;
|
|
4990
|
-
}
|
|
4991
|
-
@media (max-width: 639.98px) {
|
|
4992
|
-
.sort-filter-dataset__search__close-icon.button--discrete {
|
|
4993
|
-
top: 1rem;
|
|
4994
|
-
}
|
|
4995
|
-
}
|
|
4996
|
-
.sort-filter-dataset__search__close-icon.button--discrete:hover {
|
|
4997
|
-
box-shadow: none;
|
|
4998
|
-
background-color: transparent;
|
|
4999
|
-
}
|
|
5000
5085
|
|
|
5001
5086
|
.static-panel {
|
|
5002
5087
|
margin-bottom: 2.5rem;
|
|
@@ -5279,10 +5364,20 @@ input[type=search]:focus,
|
|
|
5279
5364
|
border-color: transparent;
|
|
5280
5365
|
color: var(--fkds-color-action-text-primary-default, #4a52b6);
|
|
5281
5366
|
}
|
|
5282
|
-
.table__button.disabled, .table__button.disabled:hover, .table__button:disabled, .table__button:disabled:hover, .table__button.table__button--disabled, .table__button.table__button--disabled:hover {
|
|
5367
|
+
.table__button.disabled, .table__button.disabled:hover, .table__button:disabled, .table__button:disabled:hover, .table__button[aria-disabled=true], .table__button[aria-disabled=true]:hover, .table__button.table__button--disabled, .table__button.table__button--disabled:hover {
|
|
5283
5368
|
background-color: transparent;
|
|
5284
5369
|
border-color: transparent;
|
|
5285
5370
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
5371
|
+
pointer-events: none;
|
|
5372
|
+
}
|
|
5373
|
+
.table__button[aria-disabled=true] {
|
|
5374
|
+
pointer-events: none;
|
|
5375
|
+
}
|
|
5376
|
+
@media (forced-colors: active) {
|
|
5377
|
+
.table__button[aria-disabled=true] {
|
|
5378
|
+
color: GrayText;
|
|
5379
|
+
border-color: GrayText;
|
|
5380
|
+
}
|
|
5286
5381
|
}
|
|
5287
5382
|
.table__button {
|
|
5288
5383
|
font-weight: var(--f-font-weight-medium, 600);
|
|
@@ -5400,6 +5495,9 @@ input[type=search]:focus,
|
|
|
5400
5495
|
box-shadow: inset 0 -3px 0 0 var(--fkds-color-border-strong, #5f6165);
|
|
5401
5496
|
border-radius: 0;
|
|
5402
5497
|
}
|
|
5498
|
+
.table-ng__cell .table-ng__editable {
|
|
5499
|
+
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);
|
|
5500
|
+
}
|
|
5403
5501
|
.table-ng__cell .table-ng__editable:focus-within {
|
|
5404
5502
|
box-shadow: inset 0 -3px 0 0 var(--fkds-color-border-strong, #5f6165);
|
|
5405
5503
|
border-radius: 0;
|
|
@@ -5532,6 +5630,7 @@ input[type=search]:focus,
|
|
|
5532
5630
|
}
|
|
5533
5631
|
.table-ng__editable__text {
|
|
5534
5632
|
flex: 1 1 auto;
|
|
5633
|
+
white-space: pre;
|
|
5535
5634
|
}
|
|
5536
5635
|
.table-ng__editable__numeric span,
|
|
5537
5636
|
.table-ng__editable__numeric input {
|
|
@@ -5568,8 +5667,8 @@ input[type=search]:focus,
|
|
|
5568
5667
|
}
|
|
5569
5668
|
.table-ng__column:focus, .table-ng__column:focus-within {
|
|
5570
5669
|
box-shadow: none;
|
|
5571
|
-
|
|
5572
|
-
|
|
5670
|
+
outline: 3px solid var(--fkds-color-text-primary, #1b1e23);
|
|
5671
|
+
outline-offset: -3px;
|
|
5573
5672
|
}
|
|
5574
5673
|
.table-ng__column--selectable {
|
|
5575
5674
|
text-align: center;
|
|
@@ -5581,6 +5680,10 @@ input[type=search]:focus,
|
|
|
5581
5680
|
vertical-align: middle;
|
|
5582
5681
|
accent-color: var(--fkds-color-action-background-primary-default, #4a52b6);
|
|
5583
5682
|
}
|
|
5683
|
+
.table-ng__column--selectable input[type=checkbox]:focus,
|
|
5684
|
+
.table-ng__column--selectable input[type=checkbox]:focus-visible {
|
|
5685
|
+
box-shadow: none;
|
|
5686
|
+
}
|
|
5584
5687
|
.table-ng__column--rowheader {
|
|
5585
5688
|
text-align: left;
|
|
5586
5689
|
padding: calc(0.25rem * var(--f-density-factor, 1));
|
|
@@ -6154,6 +6257,14 @@ input[type=search]:focus,
|
|
|
6154
6257
|
border-radius: 50%;
|
|
6155
6258
|
box-shadow: var(--f-button-shadow, 0 1px 3px rgba(0,0,0,.3));
|
|
6156
6259
|
}
|
|
6260
|
+
@media (forced-colors: active) {
|
|
6261
|
+
.calendar-navbar__icon {
|
|
6262
|
+
background-color: transparent;
|
|
6263
|
+
border: 2px solid ButtonBorder;
|
|
6264
|
+
color: ButtonText;
|
|
6265
|
+
padding: 3px;
|
|
6266
|
+
}
|
|
6267
|
+
}
|
|
6157
6268
|
.calendar-navbar__icon--disabled {
|
|
6158
6269
|
color: var(--fkds-color-text-disabled, #8d8e91);
|
|
6159
6270
|
background-color: var(--fkds-color-background-disabled, #f4f4f4);
|
|
@@ -6161,6 +6272,15 @@ input[type=search]:focus,
|
|
|
6161
6272
|
border: 1px solid var(--fkds-color-border-disabled, #8d8e91);
|
|
6162
6273
|
box-shadow: none;
|
|
6163
6274
|
}
|
|
6275
|
+
@media (forced-colors: active) {
|
|
6276
|
+
.calendar-navbar__icon--disabled {
|
|
6277
|
+
background-color: transparent;
|
|
6278
|
+
border-color: GrayText;
|
|
6279
|
+
border-width: 2px;
|
|
6280
|
+
color: GrayText;
|
|
6281
|
+
padding: 3px;
|
|
6282
|
+
}
|
|
6283
|
+
}
|
|
6164
6284
|
.calendar-navbar__arrow {
|
|
6165
6285
|
padding: 0;
|
|
6166
6286
|
display: flex;
|
|
@@ -6168,6 +6288,11 @@ input[type=search]:focus,
|
|
|
6168
6288
|
background-color: transparent;
|
|
6169
6289
|
cursor: pointer;
|
|
6170
6290
|
}
|
|
6291
|
+
@media (forced-colors: active) {
|
|
6292
|
+
.calendar-navbar__arrow {
|
|
6293
|
+
border-color: ButtonBorder;
|
|
6294
|
+
}
|
|
6295
|
+
}
|
|
6171
6296
|
|
|
6172
6297
|
.calendar__wrapper {
|
|
6173
6298
|
width: 100%;
|