@db-ux/core-components 4.4.3 → 4.5.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.
Files changed (47) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/build/components/accordion-item/accordion-item.css +38 -7
  3. package/build/components/accordion-item/accordion-item.scss +1 -1
  4. package/build/components/badge/badge.css +75 -11
  5. package/build/components/badge/badge.scss +6 -1
  6. package/build/components/brand/brand.css +2 -0
  7. package/build/components/brand/brand.scss +2 -0
  8. package/build/components/button/button.css +245 -60
  9. package/build/components/button/button.scss +1 -105
  10. package/build/components/card/card.css +88 -16
  11. package/build/components/checkbox/checkbox.css +1 -0
  12. package/build/components/custom-button/custom-button.css +892 -0
  13. package/build/components/custom-button/custom-button.scss +78 -0
  14. package/build/components/custom-select/custom-select.css +19 -3
  15. package/build/components/custom-select-dropdown/custom-select-dropdown.css +1 -0
  16. package/build/components/custom-select-dropdown/custom-select-dropdown.scss +1 -0
  17. package/build/components/custom-select-list-item/custom-select-list-item.css +36 -6
  18. package/build/components/drawer/drawer.css +4 -0
  19. package/build/components/drawer/drawer.scss +4 -0
  20. package/build/components/infotext/infotext.css +4 -0
  21. package/build/components/infotext/infotext.scss +4 -0
  22. package/build/components/input/input.css +19 -3
  23. package/build/components/link/link.css +73 -12
  24. package/build/components/navigation-item/navigation-item.css +111 -21
  25. package/build/components/navigation-item/navigation-item.scss +2 -1
  26. package/build/components/notification/notification.css +37 -6
  27. package/build/components/select/select.css +19 -3
  28. package/build/components/switch/switch.css +1 -0
  29. package/build/components/tab-item/tab-item.css +52 -10
  30. package/build/components/tabs/tabs.css +2 -0
  31. package/build/components/tabs/tabs.scss +2 -0
  32. package/build/components/tag/tag.css +856 -125
  33. package/build/components/textarea/textarea.css +18 -3
  34. package/build/components/tooltip/tooltip.css +4 -1
  35. package/build/components/tooltip/tooltip.scss +12 -10
  36. package/build/styles/absolute.css +9 -9
  37. package/build/styles/index.css +8 -8
  38. package/build/styles/index.scss +1 -0
  39. package/build/styles/internal/_button-components.scss +140 -2
  40. package/build/styles/internal/_custom-elements.scss +1 -1
  41. package/build/styles/internal/_icon-passing.scss +23 -3
  42. package/build/styles/internal/_popover-component.scss +4 -4
  43. package/build/styles/relative.css +9 -9
  44. package/build/styles/rollup.css +9 -9
  45. package/build/styles/wc-workarounds.css +1 -1
  46. package/build/styles/webpack.css +9 -9
  47. package/package.json +5 -5
@@ -904,6 +904,7 @@
904
904
  text-transform: none;
905
905
  overflow: clip;
906
906
  vertical-align: var(--db-icon-vertical-align, middle);
907
+ /* stylelint-disable-next-line db-ux/use-sizing */
907
908
  block-size: var(--db-icon-font-size, 1.5rem);
908
909
  aspect-ratio: 1;
909
910
  flex-shrink: 0;
@@ -925,19 +926,6 @@
925
926
  }
926
927
  }
927
928
 
928
- .db-tag {
929
- font-weight: 700;
930
- overflow-wrap: break-word;
931
- white-space: pre-line;
932
- justify-content: center;
933
- text-align: center;
934
- align-items: center;
935
- vertical-align: top;
936
- }
937
- .db-tag:not([hidden]) {
938
- display: inline-flex;
939
- }
940
-
941
929
  .db-tag {
942
930
  border: var(--db-border-width-3xs) solid var(--db-adaptive-on-bg-basic-emphasis-100-default);
943
931
  }
@@ -952,6 +940,19 @@
952
940
  border-radius: var(--db-border-radius-xs);
953
941
  }
954
942
 
943
+ .db-tag {
944
+ font-weight: 700;
945
+ overflow-wrap: break-word;
946
+ white-space: pre-line;
947
+ justify-content: center;
948
+ text-align: center;
949
+ align-items: center;
950
+ vertical-align: top;
951
+ }
952
+ .db-tag:not([hidden]) {
953
+ display: inline-flex;
954
+ }
955
+
955
956
  .db-tag:has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:not(.db-tab-remove-button),
956
957
  .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button,
957
958
  .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button,
@@ -982,84 +983,432 @@
982
983
  .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a::after, .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:has(input)::after, .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:has(input)::after, .db-tag[data-emphasis=strong]:has(label, button:not(.db-tab-remove-button), a):has(input):not(:has(input:checked))::after {
983
984
  --db-icon-color: var(--db-adaptive-on-bg-basic-emphasis-80-default);
984
985
  }
985
- .db-tag:hover:not(:disabled, [aria-disabled=true]):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):not(.db-tab-remove-button),
986
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]),
987
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:hover:not(:disabled, [aria-disabled=true]),
988
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:hover:not(:disabled, [aria-disabled=true]), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):not(.db-tab-remove-button),
989
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]),
990
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:hover:not(:disabled, [aria-disabled=true]),
991
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:hover:not(:disabled, [aria-disabled=true]), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled, [aria-disabled=true]):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled, [aria-disabled=true]):has(input), .db-tag[data-emphasis=strong]:hover:not(:disabled, [aria-disabled=true]):has(label, button:not(.db-tab-remove-button), a):has(input):not(:has(input:checked)) {
986
+ .db-tag:hover:not(:disabled,
987
+ [aria-disabled=true],
988
+ [tabindex="-1"],
989
+ :has(:disabled)):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:hover:not(:disabled,
990
+ [aria-disabled=true],
991
+ [tabindex="-1"],
992
+ :has(:disabled)):not(.db-tab-remove-button),
993
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
994
+ [aria-disabled=true],
995
+ [tabindex="-1"],
996
+ :has(:disabled)),
997
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:hover:not(:disabled,
998
+ [aria-disabled=true],
999
+ [tabindex="-1"],
1000
+ :has(:disabled)),
1001
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:hover:not(:disabled,
1002
+ [aria-disabled=true],
1003
+ [tabindex="-1"],
1004
+ :has(:disabled)), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:hover:not(:disabled,
1005
+ [aria-disabled=true],
1006
+ [tabindex="-1"],
1007
+ :has(:disabled)):not(.db-tab-remove-button),
1008
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
1009
+ [aria-disabled=true],
1010
+ [tabindex="-1"],
1011
+ :has(:disabled)),
1012
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:hover:not(:disabled,
1013
+ [aria-disabled=true],
1014
+ [tabindex="-1"],
1015
+ :has(:disabled)),
1016
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:hover:not(:disabled,
1017
+ [aria-disabled=true],
1018
+ [tabindex="-1"],
1019
+ :has(:disabled)), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled,
1020
+ [aria-disabled=true],
1021
+ [tabindex="-1"],
1022
+ :has(:disabled)):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled,
1023
+ [aria-disabled=true],
1024
+ [tabindex="-1"],
1025
+ :has(:disabled)):has(input), .db-tag[data-emphasis=strong]:hover:not(:disabled,
1026
+ [aria-disabled=true],
1027
+ [tabindex="-1"],
1028
+ :has(:disabled)):has(label, button:not(.db-tab-remove-button), a):has(input):not(:has(input:checked)) {
992
1029
  cursor: var(--db-overwrite-cursor, pointer);
993
1030
  background-color: var(--db-adaptive-bg-basic-level-1-hovered);
994
1031
  }
995
- .db-tag:hover:not(:disabled, [aria-disabled=true]):is(textarea):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):is(textarea):not(.db-tab-remove-button),
996
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]):is(textarea),
997
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:hover:not(:disabled, [aria-disabled=true]):is(textarea),
998
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:hover:not(:disabled, [aria-disabled=true]):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):is(textarea):not(.db-tab-remove-button),
999
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]):is(textarea),
1000
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:hover:not(:disabled, [aria-disabled=true]):is(textarea),
1001
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:hover:not(:disabled, [aria-disabled=true]):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled, [aria-disabled=true]):is(textarea):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled, [aria-disabled=true]):is(textarea):has(input), .db-tag[data-emphasis=strong]:hover:not(:disabled, [aria-disabled=true]):is(textarea):has(label, button:not(.db-tab-remove-button), a):has(input):not(:has(input:checked)), .db-tag:hover:not(:disabled, [aria-disabled=true]):is(input):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):is(input):not(.db-tab-remove-button),
1002
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]):is(input),
1003
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:hover:not(:disabled, [aria-disabled=true]):is(input),
1004
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:hover:not(:disabled, [aria-disabled=true]):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):is(input):not(.db-tab-remove-button),
1005
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]):is(input),
1006
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:hover:not(:disabled, [aria-disabled=true]):is(input),
1007
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:hover:not(:disabled, [aria-disabled=true]):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled, [aria-disabled=true]):is(input):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled, [aria-disabled=true]):is(input):has(input), .db-tag[data-emphasis=strong]:hover:not(:disabled, [aria-disabled=true]):is(input):has(label, button:not(.db-tab-remove-button), a):has(input):not(:has(input:checked)) {
1032
+ .db-tag:hover:not(:disabled,
1033
+ [aria-disabled=true],
1034
+ [tabindex="-1"],
1035
+ :has(:disabled)):is(textarea):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:hover:not(:disabled,
1036
+ [aria-disabled=true],
1037
+ [tabindex="-1"],
1038
+ :has(:disabled)):is(textarea):not(.db-tab-remove-button),
1039
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
1040
+ [aria-disabled=true],
1041
+ [tabindex="-1"],
1042
+ :has(:disabled)):is(textarea),
1043
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:hover:not(:disabled,
1044
+ [aria-disabled=true],
1045
+ [tabindex="-1"],
1046
+ :has(:disabled)):is(textarea),
1047
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:hover:not(:disabled,
1048
+ [aria-disabled=true],
1049
+ [tabindex="-1"],
1050
+ :has(:disabled)):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:hover:not(:disabled,
1051
+ [aria-disabled=true],
1052
+ [tabindex="-1"],
1053
+ :has(:disabled)):is(textarea):not(.db-tab-remove-button),
1054
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
1055
+ [aria-disabled=true],
1056
+ [tabindex="-1"],
1057
+ :has(:disabled)):is(textarea),
1058
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:hover:not(:disabled,
1059
+ [aria-disabled=true],
1060
+ [tabindex="-1"],
1061
+ :has(:disabled)):is(textarea),
1062
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:hover:not(:disabled,
1063
+ [aria-disabled=true],
1064
+ [tabindex="-1"],
1065
+ :has(:disabled)):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled,
1066
+ [aria-disabled=true],
1067
+ [tabindex="-1"],
1068
+ :has(:disabled)):is(textarea):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled,
1069
+ [aria-disabled=true],
1070
+ [tabindex="-1"],
1071
+ :has(:disabled)):is(textarea):has(input), .db-tag[data-emphasis=strong]:hover:not(:disabled,
1072
+ [aria-disabled=true],
1073
+ [tabindex="-1"],
1074
+ :has(:disabled)):is(textarea):has(label, button:not(.db-tab-remove-button), a):has(input):not(:has(input:checked)), .db-tag:hover:not(:disabled,
1075
+ [aria-disabled=true],
1076
+ [tabindex="-1"],
1077
+ :has(:disabled)):is(input):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:hover:not(:disabled,
1078
+ [aria-disabled=true],
1079
+ [tabindex="-1"],
1080
+ :has(:disabled)):is(input):not(.db-tab-remove-button),
1081
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
1082
+ [aria-disabled=true],
1083
+ [tabindex="-1"],
1084
+ :has(:disabled)):is(input),
1085
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:hover:not(:disabled,
1086
+ [aria-disabled=true],
1087
+ [tabindex="-1"],
1088
+ :has(:disabled)):is(input),
1089
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:hover:not(:disabled,
1090
+ [aria-disabled=true],
1091
+ [tabindex="-1"],
1092
+ :has(:disabled)):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:hover:not(:disabled,
1093
+ [aria-disabled=true],
1094
+ [tabindex="-1"],
1095
+ :has(:disabled)):is(input):not(.db-tab-remove-button),
1096
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
1097
+ [aria-disabled=true],
1098
+ [tabindex="-1"],
1099
+ :has(:disabled)):is(input),
1100
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:hover:not(:disabled,
1101
+ [aria-disabled=true],
1102
+ [tabindex="-1"],
1103
+ :has(:disabled)):is(input),
1104
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:hover:not(:disabled,
1105
+ [aria-disabled=true],
1106
+ [tabindex="-1"],
1107
+ :has(:disabled)):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled,
1108
+ [aria-disabled=true],
1109
+ [tabindex="-1"],
1110
+ :has(:disabled)):is(input):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled,
1111
+ [aria-disabled=true],
1112
+ [tabindex="-1"],
1113
+ :has(:disabled)):is(input):has(input), .db-tag[data-emphasis=strong]:hover:not(:disabled,
1114
+ [aria-disabled=true],
1115
+ [tabindex="-1"],
1116
+ :has(:disabled)):is(input):has(label, button:not(.db-tab-remove-button), a):has(input):not(:has(input:checked)) {
1008
1117
  cursor: initial;
1009
1118
  }
1010
- .db-tag:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):not(.db-tab-remove-button),
1011
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]),
1012
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]),
1013
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):not(.db-tab-remove-button),
1014
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]),
1015
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]),
1016
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):has(input), .db-tag:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):not(.db-tab-remove-button),
1017
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)),
1018
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)),
1019
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):not(.db-tab-remove-button),
1020
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)),
1021
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)),
1022
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):has(input) {
1119
+ .db-tag:hover:not(:disabled,
1120
+ [aria-disabled=true],
1121
+ [tabindex="-1"],
1122
+ :has(:disabled)):is(input[type=checkbox]):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:hover:not(:disabled,
1123
+ [aria-disabled=true],
1124
+ [tabindex="-1"],
1125
+ :has(:disabled)):is(input[type=checkbox]):not(.db-tab-remove-button),
1126
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
1127
+ [aria-disabled=true],
1128
+ [tabindex="-1"],
1129
+ :has(:disabled)):is(input[type=checkbox]),
1130
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:hover:not(:disabled,
1131
+ [aria-disabled=true],
1132
+ [tabindex="-1"],
1133
+ :has(:disabled)):is(input[type=checkbox]),
1134
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:hover:not(:disabled,
1135
+ [aria-disabled=true],
1136
+ [tabindex="-1"],
1137
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:hover:not(:disabled,
1138
+ [aria-disabled=true],
1139
+ [tabindex="-1"],
1140
+ :has(:disabled)):is(input[type=checkbox]):not(.db-tab-remove-button),
1141
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
1142
+ [aria-disabled=true],
1143
+ [tabindex="-1"],
1144
+ :has(:disabled)):is(input[type=checkbox]),
1145
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:hover:not(:disabled,
1146
+ [aria-disabled=true],
1147
+ [tabindex="-1"],
1148
+ :has(:disabled)):is(input[type=checkbox]),
1149
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:hover:not(:disabled,
1150
+ [aria-disabled=true],
1151
+ [tabindex="-1"],
1152
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled,
1153
+ [aria-disabled=true],
1154
+ [tabindex="-1"],
1155
+ :has(:disabled)):is(input[type=checkbox]):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled,
1156
+ [aria-disabled=true],
1157
+ [tabindex="-1"],
1158
+ :has(:disabled)):is(input[type=checkbox]):has(input), .db-tag:hover:not(:disabled,
1159
+ [aria-disabled=true],
1160
+ [tabindex="-1"],
1161
+ :has(:disabled)):is(input[type=radio]:not(:checked)):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:hover:not(:disabled,
1162
+ [aria-disabled=true],
1163
+ [tabindex="-1"],
1164
+ :has(:disabled)):is(input[type=radio]:not(:checked)):not(.db-tab-remove-button),
1165
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
1166
+ [aria-disabled=true],
1167
+ [tabindex="-1"],
1168
+ :has(:disabled)):is(input[type=radio]:not(:checked)),
1169
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:hover:not(:disabled,
1170
+ [aria-disabled=true],
1171
+ [tabindex="-1"],
1172
+ :has(:disabled)):is(input[type=radio]:not(:checked)),
1173
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:hover:not(:disabled,
1174
+ [aria-disabled=true],
1175
+ [tabindex="-1"],
1176
+ :has(:disabled)):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:hover:not(:disabled,
1177
+ [aria-disabled=true],
1178
+ [tabindex="-1"],
1179
+ :has(:disabled)):is(input[type=radio]:not(:checked)):not(.db-tab-remove-button),
1180
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
1181
+ [aria-disabled=true],
1182
+ [tabindex="-1"],
1183
+ :has(:disabled)):is(input[type=radio]:not(:checked)),
1184
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:hover:not(:disabled,
1185
+ [aria-disabled=true],
1186
+ [tabindex="-1"],
1187
+ :has(:disabled)):is(input[type=radio]:not(:checked)),
1188
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:hover:not(:disabled,
1189
+ [aria-disabled=true],
1190
+ [tabindex="-1"],
1191
+ :has(:disabled)):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled,
1192
+ [aria-disabled=true],
1193
+ [tabindex="-1"],
1194
+ :has(:disabled)):is(input[type=radio]:not(:checked)):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled,
1195
+ [aria-disabled=true],
1196
+ [tabindex="-1"],
1197
+ :has(:disabled)):is(input[type=radio]:not(:checked)):has(input) {
1023
1198
  cursor: pointer;
1024
1199
  }
1025
- .db-tag:active:not(:disabled, [aria-disabled=true]):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):not(.db-tab-remove-button),
1026
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]),
1027
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:active:not(:disabled, [aria-disabled=true]),
1028
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:active:not(:disabled, [aria-disabled=true]), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):not(.db-tab-remove-button),
1029
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]),
1030
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:active:not(:disabled, [aria-disabled=true]),
1031
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:active:not(:disabled, [aria-disabled=true]), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled, [aria-disabled=true]):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled, [aria-disabled=true]):has(input), .db-tag[data-emphasis=strong]:active:not(:disabled, [aria-disabled=true]):has(label, button:not(.db-tab-remove-button), a):has(input):not(:has(input:checked)) {
1200
+ .db-tag:active:not(:disabled,
1201
+ [aria-disabled=true],
1202
+ [tabindex="-1"],
1203
+ :has(:disabled)):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:active:not(:disabled,
1204
+ [aria-disabled=true],
1205
+ [tabindex="-1"],
1206
+ :has(:disabled)):not(.db-tab-remove-button),
1207
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1208
+ [aria-disabled=true],
1209
+ [tabindex="-1"],
1210
+ :has(:disabled)),
1211
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:active:not(:disabled,
1212
+ [aria-disabled=true],
1213
+ [tabindex="-1"],
1214
+ :has(:disabled)),
1215
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:active:not(:disabled,
1216
+ [aria-disabled=true],
1217
+ [tabindex="-1"],
1218
+ :has(:disabled)), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:active:not(:disabled,
1219
+ [aria-disabled=true],
1220
+ [tabindex="-1"],
1221
+ :has(:disabled)):not(.db-tab-remove-button),
1222
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1223
+ [aria-disabled=true],
1224
+ [tabindex="-1"],
1225
+ :has(:disabled)),
1226
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:active:not(:disabled,
1227
+ [aria-disabled=true],
1228
+ [tabindex="-1"],
1229
+ :has(:disabled)),
1230
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:active:not(:disabled,
1231
+ [aria-disabled=true],
1232
+ [tabindex="-1"],
1233
+ :has(:disabled)), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled,
1234
+ [aria-disabled=true],
1235
+ [tabindex="-1"],
1236
+ :has(:disabled)):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled,
1237
+ [aria-disabled=true],
1238
+ [tabindex="-1"],
1239
+ :has(:disabled)):has(input), .db-tag[data-emphasis=strong]:active:not(:disabled,
1240
+ [aria-disabled=true],
1241
+ [tabindex="-1"],
1242
+ :has(:disabled)):has(label, button:not(.db-tab-remove-button), a):has(input):not(:has(input:checked)) {
1032
1243
  cursor: var(--db-overwrite-cursor, pointer);
1033
1244
  background-color: var(--db-adaptive-bg-basic-level-1-pressed);
1034
1245
  }
1035
- .db-tag:active:not(:disabled, [aria-disabled=true]):is(textarea):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):is(textarea):not(.db-tab-remove-button),
1036
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]):is(textarea),
1037
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:active:not(:disabled, [aria-disabled=true]):is(textarea),
1038
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:active:not(:disabled, [aria-disabled=true]):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):is(textarea):not(.db-tab-remove-button),
1039
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]):is(textarea),
1040
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:active:not(:disabled, [aria-disabled=true]):is(textarea),
1041
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:active:not(:disabled, [aria-disabled=true]):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled, [aria-disabled=true]):is(textarea):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled, [aria-disabled=true]):is(textarea):has(input), .db-tag[data-emphasis=strong]:active:not(:disabled, [aria-disabled=true]):is(textarea):has(label, button:not(.db-tab-remove-button), a):has(input):not(:has(input:checked)), .db-tag:active:not(:disabled, [aria-disabled=true]):is(input):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):is(input):not(.db-tab-remove-button),
1042
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]):is(input),
1043
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:active:not(:disabled, [aria-disabled=true]):is(input),
1044
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:active:not(:disabled, [aria-disabled=true]):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):is(input):not(.db-tab-remove-button),
1045
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]):is(input),
1046
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:active:not(:disabled, [aria-disabled=true]):is(input),
1047
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:active:not(:disabled, [aria-disabled=true]):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled, [aria-disabled=true]):is(input):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled, [aria-disabled=true]):is(input):has(input), .db-tag[data-emphasis=strong]:active:not(:disabled, [aria-disabled=true]):is(input):has(label, button:not(.db-tab-remove-button), a):has(input):not(:has(input:checked)) {
1246
+ .db-tag:active:not(:disabled,
1247
+ [aria-disabled=true],
1248
+ [tabindex="-1"],
1249
+ :has(:disabled)):is(textarea):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:active:not(:disabled,
1250
+ [aria-disabled=true],
1251
+ [tabindex="-1"],
1252
+ :has(:disabled)):is(textarea):not(.db-tab-remove-button),
1253
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1254
+ [aria-disabled=true],
1255
+ [tabindex="-1"],
1256
+ :has(:disabled)):is(textarea),
1257
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:active:not(:disabled,
1258
+ [aria-disabled=true],
1259
+ [tabindex="-1"],
1260
+ :has(:disabled)):is(textarea),
1261
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:active:not(:disabled,
1262
+ [aria-disabled=true],
1263
+ [tabindex="-1"],
1264
+ :has(:disabled)):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:active:not(:disabled,
1265
+ [aria-disabled=true],
1266
+ [tabindex="-1"],
1267
+ :has(:disabled)):is(textarea):not(.db-tab-remove-button),
1268
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1269
+ [aria-disabled=true],
1270
+ [tabindex="-1"],
1271
+ :has(:disabled)):is(textarea),
1272
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:active:not(:disabled,
1273
+ [aria-disabled=true],
1274
+ [tabindex="-1"],
1275
+ :has(:disabled)):is(textarea),
1276
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:active:not(:disabled,
1277
+ [aria-disabled=true],
1278
+ [tabindex="-1"],
1279
+ :has(:disabled)):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled,
1280
+ [aria-disabled=true],
1281
+ [tabindex="-1"],
1282
+ :has(:disabled)):is(textarea):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled,
1283
+ [aria-disabled=true],
1284
+ [tabindex="-1"],
1285
+ :has(:disabled)):is(textarea):has(input), .db-tag[data-emphasis=strong]:active:not(:disabled,
1286
+ [aria-disabled=true],
1287
+ [tabindex="-1"],
1288
+ :has(:disabled)):is(textarea):has(label, button:not(.db-tab-remove-button), a):has(input):not(:has(input:checked)), .db-tag:active:not(:disabled,
1289
+ [aria-disabled=true],
1290
+ [tabindex="-1"],
1291
+ :has(:disabled)):is(input):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:active:not(:disabled,
1292
+ [aria-disabled=true],
1293
+ [tabindex="-1"],
1294
+ :has(:disabled)):is(input):not(.db-tab-remove-button),
1295
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1296
+ [aria-disabled=true],
1297
+ [tabindex="-1"],
1298
+ :has(:disabled)):is(input),
1299
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:active:not(:disabled,
1300
+ [aria-disabled=true],
1301
+ [tabindex="-1"],
1302
+ :has(:disabled)):is(input),
1303
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:active:not(:disabled,
1304
+ [aria-disabled=true],
1305
+ [tabindex="-1"],
1306
+ :has(:disabled)):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:active:not(:disabled,
1307
+ [aria-disabled=true],
1308
+ [tabindex="-1"],
1309
+ :has(:disabled)):is(input):not(.db-tab-remove-button),
1310
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1311
+ [aria-disabled=true],
1312
+ [tabindex="-1"],
1313
+ :has(:disabled)):is(input),
1314
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:active:not(:disabled,
1315
+ [aria-disabled=true],
1316
+ [tabindex="-1"],
1317
+ :has(:disabled)):is(input),
1318
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:active:not(:disabled,
1319
+ [aria-disabled=true],
1320
+ [tabindex="-1"],
1321
+ :has(:disabled)):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled,
1322
+ [aria-disabled=true],
1323
+ [tabindex="-1"],
1324
+ :has(:disabled)):is(input):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled,
1325
+ [aria-disabled=true],
1326
+ [tabindex="-1"],
1327
+ :has(:disabled)):is(input):has(input), .db-tag[data-emphasis=strong]:active:not(:disabled,
1328
+ [aria-disabled=true],
1329
+ [tabindex="-1"],
1330
+ :has(:disabled)):is(input):has(label, button:not(.db-tab-remove-button), a):has(input):not(:has(input:checked)) {
1048
1331
  cursor: initial;
1049
1332
  }
1050
- .db-tag:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):not(.db-tab-remove-button),
1051
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]),
1052
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]),
1053
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):not(.db-tab-remove-button),
1054
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]),
1055
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]),
1056
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):has(input), .db-tag:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):not(.db-tab-remove-button),
1057
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)),
1058
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)),
1059
- .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):not(.db-tab-remove-button),
1060
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)),
1061
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)),
1062
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):has(input) {
1333
+ .db-tag:active:not(:disabled,
1334
+ [aria-disabled=true],
1335
+ [tabindex="-1"],
1336
+ :has(:disabled)):is(input[type=checkbox]):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:active:not(:disabled,
1337
+ [aria-disabled=true],
1338
+ [tabindex="-1"],
1339
+ :has(:disabled)):is(input[type=checkbox]):not(.db-tab-remove-button),
1340
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1341
+ [aria-disabled=true],
1342
+ [tabindex="-1"],
1343
+ :has(:disabled)):is(input[type=checkbox]),
1344
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:active:not(:disabled,
1345
+ [aria-disabled=true],
1346
+ [tabindex="-1"],
1347
+ :has(:disabled)):is(input[type=checkbox]),
1348
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:active:not(:disabled,
1349
+ [aria-disabled=true],
1350
+ [tabindex="-1"],
1351
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:active:not(:disabled,
1352
+ [aria-disabled=true],
1353
+ [tabindex="-1"],
1354
+ :has(:disabled)):is(input[type=checkbox]):not(.db-tab-remove-button),
1355
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1356
+ [aria-disabled=true],
1357
+ [tabindex="-1"],
1358
+ :has(:disabled)):is(input[type=checkbox]),
1359
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:active:not(:disabled,
1360
+ [aria-disabled=true],
1361
+ [tabindex="-1"],
1362
+ :has(:disabled)):is(input[type=checkbox]),
1363
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:active:not(:disabled,
1364
+ [aria-disabled=true],
1365
+ [tabindex="-1"],
1366
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled,
1367
+ [aria-disabled=true],
1368
+ [tabindex="-1"],
1369
+ :has(:disabled)):is(input[type=checkbox]):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled,
1370
+ [aria-disabled=true],
1371
+ [tabindex="-1"],
1372
+ :has(:disabled)):is(input[type=checkbox]):has(input), .db-tag:active:not(:disabled,
1373
+ [aria-disabled=true],
1374
+ [tabindex="-1"],
1375
+ :has(:disabled)):is(input[type=radio]:not(:checked)):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]):not(:has(dbbutton)) button:active:not(:disabled,
1376
+ [aria-disabled=true],
1377
+ [tabindex="-1"],
1378
+ :has(:disabled)):is(input[type=radio]:not(:checked)):not(.db-tab-remove-button),
1379
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1380
+ [aria-disabled=true],
1381
+ [tabindex="-1"],
1382
+ :has(:disabled)):is(input[type=radio]:not(:checked)),
1383
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) db-button > button:active:not(:disabled,
1384
+ [aria-disabled=true],
1385
+ [tabindex="-1"],
1386
+ :has(:disabled)):is(input[type=radio]:not(:checked)),
1387
+ .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) a:active:not(:disabled,
1388
+ [aria-disabled=true],
1389
+ [tabindex="-1"],
1390
+ :has(:disabled)):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak]:not(:has(dbbutton)) button:active:not(:disabled,
1391
+ [aria-disabled=true],
1392
+ [tabindex="-1"],
1393
+ :has(:disabled)):is(input[type=radio]:not(:checked)):not(.db-tab-remove-button),
1394
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1395
+ [aria-disabled=true],
1396
+ [tabindex="-1"],
1397
+ :has(:disabled)):is(input[type=radio]:not(:checked)),
1398
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] db-button > button:active:not(:disabled,
1399
+ [aria-disabled=true],
1400
+ [tabindex="-1"],
1401
+ :has(:disabled)):is(input[type=radio]:not(:checked)),
1402
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] a:active:not(:disabled,
1403
+ [aria-disabled=true],
1404
+ [tabindex="-1"],
1405
+ :has(:disabled)):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled,
1406
+ [aria-disabled=true],
1407
+ [tabindex="-1"],
1408
+ :has(:disabled)):is(input[type=radio]:not(:checked)):has(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled,
1409
+ [aria-disabled=true],
1410
+ [tabindex="-1"],
1411
+ :has(:disabled)):is(input[type=radio]:not(:checked)):has(input) {
1063
1412
  cursor: pointer;
1064
1413
  }
1065
1414
 
@@ -1082,54 +1431,414 @@
1082
1431
  .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a::after, .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:has(input[type=checkbox]:checked)::after {
1083
1432
  --db-icon-color: var(--db-adaptive-on-bg-vibrant-default);
1084
1433
  }
1085
- .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled, [aria-disabled=true]):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled, [aria-disabled=true]):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:hover:not(:disabled, [aria-disabled=true]):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):not(.db-tab-remove-button),
1086
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]),
1087
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:hover:not(:disabled, [aria-disabled=true]),
1088
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:hover:not(:disabled, [aria-disabled=true]), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:hover:not(:disabled, [aria-disabled=true]):has(input[type=checkbox]:checked) {
1434
+ .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1435
+ [aria-disabled=true],
1436
+ [tabindex="-1"],
1437
+ :has(:disabled)), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1438
+ [aria-disabled=true],
1439
+ [tabindex="-1"],
1440
+ :has(:disabled)), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1441
+ [aria-disabled=true],
1442
+ [tabindex="-1"],
1443
+ :has(:disabled)), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1444
+ [aria-disabled=true],
1445
+ [tabindex="-1"],
1446
+ :has(:disabled)), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled,
1447
+ [aria-disabled=true],
1448
+ [tabindex="-1"],
1449
+ :has(:disabled)):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled,
1450
+ [aria-disabled=true],
1451
+ [tabindex="-1"],
1452
+ :has(:disabled)):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:hover:not(:disabled,
1453
+ [aria-disabled=true],
1454
+ [tabindex="-1"],
1455
+ :has(:disabled)):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:hover:not(:disabled,
1456
+ [aria-disabled=true],
1457
+ [tabindex="-1"],
1458
+ :has(:disabled)):not(.db-tab-remove-button),
1459
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
1460
+ [aria-disabled=true],
1461
+ [tabindex="-1"],
1462
+ :has(:disabled)),
1463
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:hover:not(:disabled,
1464
+ [aria-disabled=true],
1465
+ [tabindex="-1"],
1466
+ :has(:disabled)),
1467
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:hover:not(:disabled,
1468
+ [aria-disabled=true],
1469
+ [tabindex="-1"],
1470
+ :has(:disabled)), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:hover:not(:disabled,
1471
+ [aria-disabled=true],
1472
+ [tabindex="-1"],
1473
+ :has(:disabled)):has(input[type=checkbox]:checked) {
1089
1474
  cursor: var(--db-overwrite-cursor, pointer);
1090
1475
  background-color: var(--db-adaptive-bg-vibrant-hovered);
1091
1476
  }
1092
- .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(textarea), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(textarea), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(textarea), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled, [aria-disabled=true]):is(textarea):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled, [aria-disabled=true]):is(textarea):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:hover:not(:disabled, [aria-disabled=true]):is(textarea):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):is(textarea):not(.db-tab-remove-button),
1093
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]):is(textarea),
1094
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:hover:not(:disabled, [aria-disabled=true]):is(textarea),
1095
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:hover:not(:disabled, [aria-disabled=true]):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:hover:not(:disabled, [aria-disabled=true]):is(textarea):has(input[type=checkbox]:checked), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(input), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(input), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(input), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled, [aria-disabled=true]):is(input):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled, [aria-disabled=true]):is(input):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:hover:not(:disabled, [aria-disabled=true]):is(input):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):is(input):not(.db-tab-remove-button),
1096
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]):is(input),
1097
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:hover:not(:disabled, [aria-disabled=true]):is(input),
1098
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:hover:not(:disabled, [aria-disabled=true]):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:hover:not(:disabled, [aria-disabled=true]):is(input):has(input[type=checkbox]:checked) {
1477
+ .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1478
+ [aria-disabled=true],
1479
+ [tabindex="-1"],
1480
+ :has(:disabled)):is(textarea), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1481
+ [aria-disabled=true],
1482
+ [tabindex="-1"],
1483
+ :has(:disabled)):is(textarea), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1484
+ [aria-disabled=true],
1485
+ [tabindex="-1"],
1486
+ :has(:disabled)):is(textarea), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1487
+ [aria-disabled=true],
1488
+ [tabindex="-1"],
1489
+ :has(:disabled)):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled,
1490
+ [aria-disabled=true],
1491
+ [tabindex="-1"],
1492
+ :has(:disabled)):is(textarea):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled,
1493
+ [aria-disabled=true],
1494
+ [tabindex="-1"],
1495
+ :has(:disabled)):is(textarea):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:hover:not(:disabled,
1496
+ [aria-disabled=true],
1497
+ [tabindex="-1"],
1498
+ :has(:disabled)):is(textarea):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:hover:not(:disabled,
1499
+ [aria-disabled=true],
1500
+ [tabindex="-1"],
1501
+ :has(:disabled)):is(textarea):not(.db-tab-remove-button),
1502
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
1503
+ [aria-disabled=true],
1504
+ [tabindex="-1"],
1505
+ :has(:disabled)):is(textarea),
1506
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:hover:not(:disabled,
1507
+ [aria-disabled=true],
1508
+ [tabindex="-1"],
1509
+ :has(:disabled)):is(textarea),
1510
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:hover:not(:disabled,
1511
+ [aria-disabled=true],
1512
+ [tabindex="-1"],
1513
+ :has(:disabled)):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:hover:not(:disabled,
1514
+ [aria-disabled=true],
1515
+ [tabindex="-1"],
1516
+ :has(:disabled)):is(textarea):has(input[type=checkbox]:checked), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1517
+ [aria-disabled=true],
1518
+ [tabindex="-1"],
1519
+ :has(:disabled)):is(input), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1520
+ [aria-disabled=true],
1521
+ [tabindex="-1"],
1522
+ :has(:disabled)):is(input), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1523
+ [aria-disabled=true],
1524
+ [tabindex="-1"],
1525
+ :has(:disabled)):is(input), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1526
+ [aria-disabled=true],
1527
+ [tabindex="-1"],
1528
+ :has(:disabled)):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled,
1529
+ [aria-disabled=true],
1530
+ [tabindex="-1"],
1531
+ :has(:disabled)):is(input):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled,
1532
+ [aria-disabled=true],
1533
+ [tabindex="-1"],
1534
+ :has(:disabled)):is(input):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:hover:not(:disabled,
1535
+ [aria-disabled=true],
1536
+ [tabindex="-1"],
1537
+ :has(:disabled)):is(input):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:hover:not(:disabled,
1538
+ [aria-disabled=true],
1539
+ [tabindex="-1"],
1540
+ :has(:disabled)):is(input):not(.db-tab-remove-button),
1541
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
1542
+ [aria-disabled=true],
1543
+ [tabindex="-1"],
1544
+ :has(:disabled)):is(input),
1545
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:hover:not(:disabled,
1546
+ [aria-disabled=true],
1547
+ [tabindex="-1"],
1548
+ :has(:disabled)):is(input),
1549
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:hover:not(:disabled,
1550
+ [aria-disabled=true],
1551
+ [tabindex="-1"],
1552
+ :has(:disabled)):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:hover:not(:disabled,
1553
+ [aria-disabled=true],
1554
+ [tabindex="-1"],
1555
+ :has(:disabled)):is(input):has(input[type=checkbox]:checked) {
1099
1556
  cursor: initial;
1100
1557
  }
1101
- .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):not(.db-tab-remove-button),
1102
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]),
1103
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]),
1104
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):has(input[type=checkbox]:checked), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):not(.db-tab-remove-button),
1105
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)),
1106
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)),
1107
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):has(input[type=checkbox]:checked) {
1558
+ .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1559
+ [aria-disabled=true],
1560
+ [tabindex="-1"],
1561
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1562
+ [aria-disabled=true],
1563
+ [tabindex="-1"],
1564
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1565
+ [aria-disabled=true],
1566
+ [tabindex="-1"],
1567
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1568
+ [aria-disabled=true],
1569
+ [tabindex="-1"],
1570
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled,
1571
+ [aria-disabled=true],
1572
+ [tabindex="-1"],
1573
+ :has(:disabled)):is(input[type=checkbox]):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled,
1574
+ [aria-disabled=true],
1575
+ [tabindex="-1"],
1576
+ :has(:disabled)):is(input[type=checkbox]):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:hover:not(:disabled,
1577
+ [aria-disabled=true],
1578
+ [tabindex="-1"],
1579
+ :has(:disabled)):is(input[type=checkbox]):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:hover:not(:disabled,
1580
+ [aria-disabled=true],
1581
+ [tabindex="-1"],
1582
+ :has(:disabled)):is(input[type=checkbox]):not(.db-tab-remove-button),
1583
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
1584
+ [aria-disabled=true],
1585
+ [tabindex="-1"],
1586
+ :has(:disabled)):is(input[type=checkbox]),
1587
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:hover:not(:disabled,
1588
+ [aria-disabled=true],
1589
+ [tabindex="-1"],
1590
+ :has(:disabled)):is(input[type=checkbox]),
1591
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:hover:not(:disabled,
1592
+ [aria-disabled=true],
1593
+ [tabindex="-1"],
1594
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:hover:not(:disabled,
1595
+ [aria-disabled=true],
1596
+ [tabindex="-1"],
1597
+ :has(:disabled)):is(input[type=checkbox]):has(input[type=checkbox]:checked), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1598
+ [aria-disabled=true],
1599
+ [tabindex="-1"],
1600
+ :has(:disabled)):is(input[type=radio]:not(:checked)), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1601
+ [aria-disabled=true],
1602
+ [tabindex="-1"],
1603
+ :has(:disabled)):is(input[type=radio]:not(:checked)), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1604
+ [aria-disabled=true],
1605
+ [tabindex="-1"],
1606
+ :has(:disabled)):is(input[type=radio]:not(:checked)), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:hover:not(:disabled,
1607
+ [aria-disabled=true],
1608
+ [tabindex="-1"],
1609
+ :has(:disabled)):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:hover:not(:disabled,
1610
+ [aria-disabled=true],
1611
+ [tabindex="-1"],
1612
+ :has(:disabled)):is(input[type=radio]:not(:checked)):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:hover:not(:disabled,
1613
+ [aria-disabled=true],
1614
+ [tabindex="-1"],
1615
+ :has(:disabled)):is(input[type=radio]:not(:checked)):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:hover:not(:disabled,
1616
+ [aria-disabled=true],
1617
+ [tabindex="-1"],
1618
+ :has(:disabled)):is(input[type=radio]:not(:checked)):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:hover:not(:disabled,
1619
+ [aria-disabled=true],
1620
+ [tabindex="-1"],
1621
+ :has(:disabled)):is(input[type=radio]:not(:checked)):not(.db-tab-remove-button),
1622
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:hover:not(:disabled,
1623
+ [aria-disabled=true],
1624
+ [tabindex="-1"],
1625
+ :has(:disabled)):is(input[type=radio]:not(:checked)),
1626
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:hover:not(:disabled,
1627
+ [aria-disabled=true],
1628
+ [tabindex="-1"],
1629
+ :has(:disabled)):is(input[type=radio]:not(:checked)),
1630
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:hover:not(:disabled,
1631
+ [aria-disabled=true],
1632
+ [tabindex="-1"],
1633
+ :has(:disabled)):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:hover:not(:disabled,
1634
+ [aria-disabled=true],
1635
+ [tabindex="-1"],
1636
+ :has(:disabled)):is(input[type=radio]:not(:checked)):has(input[type=checkbox]:checked) {
1108
1637
  cursor: pointer;
1109
1638
  }
1110
- .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled, [aria-disabled=true]):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled, [aria-disabled=true]):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:active:not(:disabled, [aria-disabled=true]):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):not(.db-tab-remove-button),
1111
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]),
1112
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:active:not(:disabled, [aria-disabled=true]),
1113
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:active:not(:disabled, [aria-disabled=true]), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:active:not(:disabled, [aria-disabled=true]):has(input[type=checkbox]:checked) {
1639
+ .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1640
+ [aria-disabled=true],
1641
+ [tabindex="-1"],
1642
+ :has(:disabled)), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1643
+ [aria-disabled=true],
1644
+ [tabindex="-1"],
1645
+ :has(:disabled)), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1646
+ [aria-disabled=true],
1647
+ [tabindex="-1"],
1648
+ :has(:disabled)), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1649
+ [aria-disabled=true],
1650
+ [tabindex="-1"],
1651
+ :has(:disabled)), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled,
1652
+ [aria-disabled=true],
1653
+ [tabindex="-1"],
1654
+ :has(:disabled)):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled,
1655
+ [aria-disabled=true],
1656
+ [tabindex="-1"],
1657
+ :has(:disabled)):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:active:not(:disabled,
1658
+ [aria-disabled=true],
1659
+ [tabindex="-1"],
1660
+ :has(:disabled)):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:active:not(:disabled,
1661
+ [aria-disabled=true],
1662
+ [tabindex="-1"],
1663
+ :has(:disabled)):not(.db-tab-remove-button),
1664
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1665
+ [aria-disabled=true],
1666
+ [tabindex="-1"],
1667
+ :has(:disabled)),
1668
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:active:not(:disabled,
1669
+ [aria-disabled=true],
1670
+ [tabindex="-1"],
1671
+ :has(:disabled)),
1672
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:active:not(:disabled,
1673
+ [aria-disabled=true],
1674
+ [tabindex="-1"],
1675
+ :has(:disabled)), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:active:not(:disabled,
1676
+ [aria-disabled=true],
1677
+ [tabindex="-1"],
1678
+ :has(:disabled)):has(input[type=checkbox]:checked) {
1114
1679
  cursor: var(--db-overwrite-cursor, pointer);
1115
1680
  background-color: var(--db-adaptive-bg-vibrant-pressed);
1116
1681
  }
1117
- .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(textarea), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(textarea), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(textarea), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled, [aria-disabled=true]):is(textarea):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled, [aria-disabled=true]):is(textarea):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:active:not(:disabled, [aria-disabled=true]):is(textarea):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):is(textarea):not(.db-tab-remove-button),
1118
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]):is(textarea),
1119
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:active:not(:disabled, [aria-disabled=true]):is(textarea),
1120
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:active:not(:disabled, [aria-disabled=true]):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:active:not(:disabled, [aria-disabled=true]):is(textarea):has(input[type=checkbox]:checked), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(input), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(input), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(input), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled, [aria-disabled=true]):is(input):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled, [aria-disabled=true]):is(input):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:active:not(:disabled, [aria-disabled=true]):is(input):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):is(input):not(.db-tab-remove-button),
1121
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]):is(input),
1122
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:active:not(:disabled, [aria-disabled=true]):is(input),
1123
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:active:not(:disabled, [aria-disabled=true]):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:active:not(:disabled, [aria-disabled=true]):is(input):has(input[type=checkbox]:checked) {
1682
+ .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1683
+ [aria-disabled=true],
1684
+ [tabindex="-1"],
1685
+ :has(:disabled)):is(textarea), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1686
+ [aria-disabled=true],
1687
+ [tabindex="-1"],
1688
+ :has(:disabled)):is(textarea), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1689
+ [aria-disabled=true],
1690
+ [tabindex="-1"],
1691
+ :has(:disabled)):is(textarea), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1692
+ [aria-disabled=true],
1693
+ [tabindex="-1"],
1694
+ :has(:disabled)):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled,
1695
+ [aria-disabled=true],
1696
+ [tabindex="-1"],
1697
+ :has(:disabled)):is(textarea):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled,
1698
+ [aria-disabled=true],
1699
+ [tabindex="-1"],
1700
+ :has(:disabled)):is(textarea):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:active:not(:disabled,
1701
+ [aria-disabled=true],
1702
+ [tabindex="-1"],
1703
+ :has(:disabled)):is(textarea):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:active:not(:disabled,
1704
+ [aria-disabled=true],
1705
+ [tabindex="-1"],
1706
+ :has(:disabled)):is(textarea):not(.db-tab-remove-button),
1707
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1708
+ [aria-disabled=true],
1709
+ [tabindex="-1"],
1710
+ :has(:disabled)):is(textarea),
1711
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:active:not(:disabled,
1712
+ [aria-disabled=true],
1713
+ [tabindex="-1"],
1714
+ :has(:disabled)):is(textarea),
1715
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:active:not(:disabled,
1716
+ [aria-disabled=true],
1717
+ [tabindex="-1"],
1718
+ :has(:disabled)):is(textarea), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:active:not(:disabled,
1719
+ [aria-disabled=true],
1720
+ [tabindex="-1"],
1721
+ :has(:disabled)):is(textarea):has(input[type=checkbox]:checked), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1722
+ [aria-disabled=true],
1723
+ [tabindex="-1"],
1724
+ :has(:disabled)):is(input), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1725
+ [aria-disabled=true],
1726
+ [tabindex="-1"],
1727
+ :has(:disabled)):is(input), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1728
+ [aria-disabled=true],
1729
+ [tabindex="-1"],
1730
+ :has(:disabled)):is(input), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1731
+ [aria-disabled=true],
1732
+ [tabindex="-1"],
1733
+ :has(:disabled)):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled,
1734
+ [aria-disabled=true],
1735
+ [tabindex="-1"],
1736
+ :has(:disabled)):is(input):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled,
1737
+ [aria-disabled=true],
1738
+ [tabindex="-1"],
1739
+ :has(:disabled)):is(input):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:active:not(:disabled,
1740
+ [aria-disabled=true],
1741
+ [tabindex="-1"],
1742
+ :has(:disabled)):is(input):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:active:not(:disabled,
1743
+ [aria-disabled=true],
1744
+ [tabindex="-1"],
1745
+ :has(:disabled)):is(input):not(.db-tab-remove-button),
1746
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1747
+ [aria-disabled=true],
1748
+ [tabindex="-1"],
1749
+ :has(:disabled)):is(input),
1750
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:active:not(:disabled,
1751
+ [aria-disabled=true],
1752
+ [tabindex="-1"],
1753
+ :has(:disabled)):is(input),
1754
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:active:not(:disabled,
1755
+ [aria-disabled=true],
1756
+ [tabindex="-1"],
1757
+ :has(:disabled)):is(input), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:active:not(:disabled,
1758
+ [aria-disabled=true],
1759
+ [tabindex="-1"],
1760
+ :has(:disabled)):is(input):has(input[type=checkbox]:checked) {
1124
1761
  cursor: initial;
1125
1762
  }
1126
- .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):not(.db-tab-remove-button),
1127
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]),
1128
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]),
1129
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]):has(input[type=checkbox]:checked), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):not(.db-tab-remove-button),
1130
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)),
1131
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)),
1132
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)):has(input[type=checkbox]:checked) {
1763
+ .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1764
+ [aria-disabled=true],
1765
+ [tabindex="-1"],
1766
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1767
+ [aria-disabled=true],
1768
+ [tabindex="-1"],
1769
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1770
+ [aria-disabled=true],
1771
+ [tabindex="-1"],
1772
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1773
+ [aria-disabled=true],
1774
+ [tabindex="-1"],
1775
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled,
1776
+ [aria-disabled=true],
1777
+ [tabindex="-1"],
1778
+ :has(:disabled)):is(input[type=checkbox]):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled,
1779
+ [aria-disabled=true],
1780
+ [tabindex="-1"],
1781
+ :has(:disabled)):is(input[type=checkbox]):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:active:not(:disabled,
1782
+ [aria-disabled=true],
1783
+ [tabindex="-1"],
1784
+ :has(:disabled)):is(input[type=checkbox]):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:active:not(:disabled,
1785
+ [aria-disabled=true],
1786
+ [tabindex="-1"],
1787
+ :has(:disabled)):is(input[type=checkbox]):not(.db-tab-remove-button),
1788
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1789
+ [aria-disabled=true],
1790
+ [tabindex="-1"],
1791
+ :has(:disabled)):is(input[type=checkbox]),
1792
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:active:not(:disabled,
1793
+ [aria-disabled=true],
1794
+ [tabindex="-1"],
1795
+ :has(:disabled)):is(input[type=checkbox]),
1796
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:active:not(:disabled,
1797
+ [aria-disabled=true],
1798
+ [tabindex="-1"],
1799
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:active:not(:disabled,
1800
+ [aria-disabled=true],
1801
+ [tabindex="-1"],
1802
+ :has(:disabled)):is(input[type=checkbox]):has(input[type=checkbox]:checked), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a)):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1803
+ [aria-disabled=true],
1804
+ [tabindex="-1"],
1805
+ :has(:disabled)):is(input[type=radio]:not(:checked)), .db-tag:not(:has(label, button:not(.db-tab-remove-button), a))[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1806
+ [aria-disabled=true],
1807
+ [tabindex="-1"],
1808
+ :has(:disabled)):is(input[type=radio]:not(:checked)), .db-tag:has(.db-tab-remove-button):not([data-semantic])[data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1809
+ [aria-disabled=true],
1810
+ [tabindex="-1"],
1811
+ :has(:disabled)):is(input[type=radio]:not(:checked)), .db-tag:has(.db-tab-remove-button)[data-semantic=adaptive][data-emphasis=strong] .db-tab-remove-button:active:not(:disabled,
1812
+ [aria-disabled=true],
1813
+ [tabindex="-1"],
1814
+ :has(:disabled)):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:active:not(:disabled,
1815
+ [aria-disabled=true],
1816
+ [tabindex="-1"],
1817
+ :has(:disabled)):is(input[type=radio]:not(:checked)):has(input[type=checkbox]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:active:not(:disabled,
1818
+ [aria-disabled=true],
1819
+ [tabindex="-1"],
1820
+ :has(:disabled)):is(input[type=radio]:not(:checked)):has(input[type=checkbox]:checked), .db-tag[data-emphasis=strong]:active:not(:disabled,
1821
+ [aria-disabled=true],
1822
+ [tabindex="-1"],
1823
+ :has(:disabled)):is(input[type=radio]:not(:checked)):has(label, button:not(.db-tab-remove-button), a), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong]:not(:has(dbbutton)) button:active:not(:disabled,
1824
+ [aria-disabled=true],
1825
+ [tabindex="-1"],
1826
+ :has(:disabled)):is(input[type=radio]:not(:checked)):not(.db-tab-remove-button),
1827
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] dbbutton:not(.db-tab-remove-button) > button:active:not(:disabled,
1828
+ [aria-disabled=true],
1829
+ [tabindex="-1"],
1830
+ :has(:disabled)):is(input[type=radio]:not(:checked)),
1831
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] db-button > button:active:not(:disabled,
1832
+ [aria-disabled=true],
1833
+ [tabindex="-1"],
1834
+ :has(:disabled)):is(input[type=radio]:not(:checked)),
1835
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] a:active:not(:disabled,
1836
+ [aria-disabled=true],
1837
+ [tabindex="-1"],
1838
+ :has(:disabled)):is(input[type=radio]:not(:checked)), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=strong] label:active:not(:disabled,
1839
+ [aria-disabled=true],
1840
+ [tabindex="-1"],
1841
+ :has(:disabled)):is(input[type=radio]:not(:checked)):has(input[type=checkbox]:checked) {
1133
1842
  cursor: pointer;
1134
1843
  }
1135
1844
 
@@ -1295,16 +2004,14 @@
1295
2004
  .db-tag:has(label, button:not(.db-tab-remove-button), a) {
1296
2005
  --db-icon-margin-end: var(--db-spacing-fixed-2xs);
1297
2006
  }
1298
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-icon]:not([data-show-icon=false])::before {
2007
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-icon-leading]:not([data-show-icon-leading=false])::before, .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-icon]:not([data-show-icon=false])::before {
1299
2008
  position: absolute;
1300
2009
  inset-block-start: calc(50% - 0.5em);
1301
2010
  inset-inline-start: var(--db-spacing-fixed-2xs);
1302
2011
  pointer-events: none;
1303
2012
  z-index: 1;
1304
2013
  }
1305
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-icon]:not([data-show-icon=false]) a,
1306
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-icon]:not([data-show-icon=false]) button,
1307
- .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-icon]:not([data-show-icon=false]) label {
2014
+ .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-icon-leading]:not([data-show-icon-leading=false]) label, .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-icon-leading]:not([data-show-icon-leading=false]) button, .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-icon-leading]:not([data-show-icon-leading=false]) a, .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-icon]:not([data-show-icon=false]) label, .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-icon]:not([data-show-icon=false]) button, .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-icon]:not([data-show-icon=false]) a {
1308
2015
  --db-padding-inline-start: calc(
1309
2016
  var(--db-spacing-fixed-2xs) + var(--db-icon-margin-end, var(--db-spacing-fixed-xs)) +
1310
2017
  var(--db-icon-font-size)
@@ -1316,24 +2023,48 @@
1316
2023
  background-color: transparent;
1317
2024
  /* stylelint-disable-next-line a11y/selector-pseudo-class-focus */
1318
2025
  }
1319
- .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:hover:not(:disabled, [aria-disabled=true]) {
2026
+ .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:hover:not(:disabled,
2027
+ [aria-disabled=true],
2028
+ [tabindex="-1"],
2029
+ :has(:disabled)) {
1320
2030
  cursor: var(--db-overwrite-cursor, pointer);
1321
2031
  background-color: transparent;
1322
2032
  }
1323
- .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:hover:not(:disabled, [aria-disabled=true]):is(input) {
2033
+ .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:hover:not(:disabled,
2034
+ [aria-disabled=true],
2035
+ [tabindex="-1"],
2036
+ :has(:disabled)):is(input) {
1324
2037
  cursor: initial;
1325
2038
  }
1326
- .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:hover:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:hover:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)) {
2039
+ .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:hover:not(:disabled,
2040
+ [aria-disabled=true],
2041
+ [tabindex="-1"],
2042
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:hover:not(:disabled,
2043
+ [aria-disabled=true],
2044
+ [tabindex="-1"],
2045
+ :has(:disabled)):is(input[type=radio]:not(:checked)) {
1327
2046
  cursor: pointer;
1328
2047
  }
1329
- .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:active:not(:disabled, [aria-disabled=true]) {
2048
+ .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:active:not(:disabled,
2049
+ [aria-disabled=true],
2050
+ [tabindex="-1"],
2051
+ :has(:disabled)) {
1330
2052
  cursor: var(--db-overwrite-cursor, pointer);
1331
2053
  background-color: transparent;
1332
2054
  }
1333
- .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:active:not(:disabled, [aria-disabled=true]):is(input) {
2055
+ .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:active:not(:disabled,
2056
+ [aria-disabled=true],
2057
+ [tabindex="-1"],
2058
+ :has(:disabled)):is(input) {
1334
2059
  cursor: initial;
1335
2060
  }
1336
- .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:active:not(:disabled, [aria-disabled=true]):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:active:not(:disabled, [aria-disabled=true]):is(input[type=radio]:not(:checked)) {
2061
+ .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:active:not(:disabled,
2062
+ [aria-disabled=true],
2063
+ [tabindex="-1"],
2064
+ :has(:disabled)):is(input[type=checkbox]), .db-tag:has(label, button:not(.db-tab-remove-button), a) input:checked:active:not(:disabled,
2065
+ [aria-disabled=true],
2066
+ [tabindex="-1"],
2067
+ :has(:disabled)):is(input[type=radio]:not(:checked)) {
1337
2068
  cursor: pointer;
1338
2069
  }
1339
2070
  .db-tag:has(label, button:not(.db-tab-remove-button), a):not([data-emphasis]) label:has(input[type=radio]:checked), .db-tag:has(label, button:not(.db-tab-remove-button), a)[data-emphasis=weak] label:has(input[type=radio]:checked) {