@wwtdev/bsds-css 1.15.11 → 1.15.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/_accordions.scss +1 -1
- package/dist/components/_banner.scss +1 -1
- package/dist/components/_buttons.scss +16 -16
- package/dist/components/_circle-buttons.scss +1 -1
- package/dist/components/_dropdown.scss +6 -6
- package/dist/components/_form-booleans.scss +1 -1
- package/dist/components/_form-elements.scss +3 -3
- package/dist/components/_form-hints.scss +1 -1
- package/dist/components/_form-input-composite.scss +13 -11
- package/dist/components/_form-labels.scss +10 -2
- package/dist/components/_form-switches.scss +1 -1
- package/dist/components/_form-text-fields.scss +1 -1
- package/dist/components/_modal.scss +1 -1
- package/dist/components/_overlay.scss +1 -1
- package/dist/components/_pagination.scss +2 -2
- package/dist/components/_pills.scss +8 -7
- package/dist/components/_profile-img.scss +3 -3
- package/dist/components/_toast.scss +5 -5
- package/dist/components/_tooltip.scss +11 -6
- package/dist/components/accordions.css +1 -1
- package/dist/components/banner.css +1 -1
- package/dist/components/buttons.css +16 -16
- package/dist/components/circle-buttons.css +1 -1
- package/dist/components/dropdown.css +6 -6
- package/dist/components/form-booleans.css +1 -1
- package/dist/components/form-elements.css +3 -3
- package/dist/components/form-hints.css +1 -1
- package/dist/components/form-input-composite.css +13 -11
- package/dist/components/form-labels.css +10 -2
- package/dist/components/form-switches.css +1 -1
- package/dist/components/form-text-fields.css +1 -1
- package/dist/components/modal.css +1 -1
- package/dist/components/overlay.css +1 -1
- package/dist/components/pagination.css +2 -2
- package/dist/components/pills.css +8 -7
- package/dist/components/profile-img.css +3 -3
- package/dist/components/toast.css +5 -5
- package/dist/components/tooltip.css +11 -6
- package/dist/wwt-bsds.css +84 -70
- package/dist/wwt-bsds.min.css +1 -1
- package/package.json +1 -1
package/dist/wwt-bsds.css
CHANGED
|
@@ -863,7 +863,7 @@ h6,
|
|
|
863
863
|
padding-block-end: var(--bs-space-f-2);
|
|
864
864
|
}
|
|
865
865
|
/* Accordion Group */
|
|
866
|
-
:where(.bs-accordion[data-stacked]) + .bs-accordion:where([data-stacked]) {
|
|
866
|
+
:where(.bs-accordion[data-stacked]:not([data-stacked="false"])) + .bs-accordion:where([data-stacked]:not([data-stacked="false"])) {
|
|
867
867
|
border-block-start-color: transparent;
|
|
868
868
|
}
|
|
869
869
|
.bs-badge {
|
|
@@ -933,7 +933,7 @@ h6,
|
|
|
933
933
|
padding-right: 1.25rem;
|
|
934
934
|
padding-top: 1rem;
|
|
935
935
|
}
|
|
936
|
-
.bs-banner:where([data-dismissed]) {
|
|
936
|
+
.bs-banner:where([data-dismissed]:not([data-dismissed="false"])) {
|
|
937
937
|
display: none;
|
|
938
938
|
}
|
|
939
939
|
.bs-banner :where(.bs-banner-content) {
|
|
@@ -1029,21 +1029,21 @@ h6,
|
|
|
1029
1029
|
box-shadow: none;
|
|
1030
1030
|
}
|
|
1031
1031
|
/* Ghost Buttons */
|
|
1032
|
-
.bs-button:where([data-ghost]) {
|
|
1032
|
+
.bs-button:where([data-ghost]:not([data-ghost="false"])) {
|
|
1033
1033
|
--btn-light: var(--bs-blue-10);
|
|
1034
1034
|
--btn-secondary: var(--bs-blue-10);
|
|
1035
1035
|
background-color: transparent;
|
|
1036
1036
|
box-shadow: inset 0 0 0 1px var(--btn-main);
|
|
1037
1037
|
color: var(--btn-main);
|
|
1038
1038
|
}
|
|
1039
|
-
.bs-button:where([data-ghost])::before {
|
|
1039
|
+
.bs-button:where([data-ghost]:not([data-ghost="false"]))::before {
|
|
1040
1040
|
border-radius: 0.4375rem;
|
|
1041
1041
|
}
|
|
1042
|
-
.bs-button:where([data-ghost]):hover,
|
|
1043
|
-
.bs-button:where([data-ghost]):focus {
|
|
1042
|
+
.bs-button:where([data-ghost]:not([data-ghost="false"])):hover,
|
|
1043
|
+
.bs-button:where([data-ghost]:not([data-ghost="false"])):focus {
|
|
1044
1044
|
background-color: var(--btn-light);
|
|
1045
1045
|
}
|
|
1046
|
-
.bs-button:where([data-ghost]):active {
|
|
1046
|
+
.bs-button:where([data-ghost]:not([data-ghost="false"])):active {
|
|
1047
1047
|
box-shadow:
|
|
1048
1048
|
inset 0 0 0 1px var(--btn-main),
|
|
1049
1049
|
inset 0px 0px 4px 1px var(--btn-highlight);
|
|
@@ -1080,7 +1080,7 @@ h6,
|
|
|
1080
1080
|
--btn-highlight: var(--bs-red-100);
|
|
1081
1081
|
}
|
|
1082
1082
|
/* Text Button */
|
|
1083
|
-
.bs-button:where([data-text]) {
|
|
1083
|
+
.bs-button:where([data-text]:not([data-text="false"])) {
|
|
1084
1084
|
--btn-padding: 0 0;
|
|
1085
1085
|
--btn-focus-pseudo-width: calc(100% + 1.25rem); /* text btns don't have side padding, but we do want focus outline to look padded */
|
|
1086
1086
|
background-color: transparent;
|
|
@@ -1090,41 +1090,41 @@ h6,
|
|
|
1090
1090
|
font-weight: 400;
|
|
1091
1091
|
line-height: 150%;
|
|
1092
1092
|
}
|
|
1093
|
-
.bs-button:where([data-text]):hover {
|
|
1093
|
+
.bs-button:where([data-text]:not([data-text="false"])):hover {
|
|
1094
1094
|
color: var(--bs-blue-base);
|
|
1095
1095
|
background-color: transparent;
|
|
1096
1096
|
text-decoration: underline;
|
|
1097
1097
|
}
|
|
1098
|
-
.bs-button:where([data-text]):has(svg):hover {
|
|
1098
|
+
.bs-button:where([data-text]:not([data-text="false"])):has(svg):hover {
|
|
1099
1099
|
text-decoration: none;
|
|
1100
1100
|
}
|
|
1101
|
-
.bs-button:where([data-text]):active {
|
|
1101
|
+
.bs-button:where([data-text]:not([data-text="false"])):active {
|
|
1102
1102
|
box-shadow: none;
|
|
1103
1103
|
}
|
|
1104
1104
|
/* Button Size */
|
|
1105
1105
|
.bs-button:where([data-size^='sm']) {
|
|
1106
1106
|
font-size: var(--bs-text-sm);
|
|
1107
1107
|
}
|
|
1108
|
-
.bs-button:where([data-
|
|
1108
|
+
.bs-button:where([data-size^='sm']):where([data-text]:not([data-text="false"])) {
|
|
1109
1109
|
font-size: var(--bs-text-base);
|
|
1110
1110
|
}
|
|
1111
1111
|
/* Disabled Styling */
|
|
1112
1112
|
:where(button:disabled),
|
|
1113
1113
|
.bs-button:where(:disabled),
|
|
1114
|
-
.bs-button:where([aria-disabled=
|
|
1114
|
+
.bs-button:where([aria-disabled="true"]) /* for links as buttons */ {
|
|
1115
1115
|
pointer-events: none;
|
|
1116
1116
|
}
|
|
1117
1117
|
.bs-button:where(:disabled),
|
|
1118
|
-
.bs-button:where([aria-disabled=
|
|
1118
|
+
.bs-button:where([aria-disabled="true"]) {
|
|
1119
1119
|
color: var(--bs-gray-400);
|
|
1120
1120
|
background-color: var(--bs-gray-200);
|
|
1121
1121
|
}
|
|
1122
|
-
.bs-button:where([data-ghost]):disabled,
|
|
1123
|
-
.bs-button:where([data-ghost])[aria-disabled=
|
|
1122
|
+
.bs-button:where([data-ghost]:not([data-ghost="false"])):disabled,
|
|
1123
|
+
.bs-button:where([data-ghost]:not([data-ghost="false"]))[aria-disabled="true"] {
|
|
1124
1124
|
box-shadow: inset 0 0 0 1px var(--bs-gray-400);
|
|
1125
1125
|
}
|
|
1126
|
-
.bs-button:where([data-text]):disabled,
|
|
1127
|
-
.bs-button:where([data-text][aria-disabled=
|
|
1126
|
+
.bs-button:where([data-text]:where([data-text])):disabled,
|
|
1127
|
+
.bs-button:where([data-text]:where([data-text]))[aria-disabled="true"] {
|
|
1128
1128
|
background-color: transparent;
|
|
1129
1129
|
}
|
|
1130
1130
|
/* Icon Height */
|
|
@@ -1207,7 +1207,7 @@ a.bs-circle-button {
|
|
|
1207
1207
|
--btn-text-size: var(--bs-text-sm);
|
|
1208
1208
|
}
|
|
1209
1209
|
/* Icon Buttons with Text */
|
|
1210
|
-
.bs-circle-button:where([data-text]) {
|
|
1210
|
+
.bs-circle-button:where([data-text]:not([data-text="false"])) {
|
|
1211
1211
|
--btn-border-radius: 0.5rem;
|
|
1212
1212
|
}
|
|
1213
1213
|
/* Ghost Buttons */
|
|
@@ -1310,11 +1310,11 @@ a.bs-circle-button {
|
|
|
1310
1310
|
margin-left: -0.75rem;
|
|
1311
1311
|
width: calc(100% + 1.5rem);
|
|
1312
1312
|
}
|
|
1313
|
-
.bs-dropdown:where([data-search]) :where(.bs-dropdown-options) {
|
|
1313
|
+
.bs-dropdown:where([data-search]:not([data-search="false"])) :where(.bs-dropdown-options) {
|
|
1314
1314
|
--options-height-max: 11.5rem;
|
|
1315
1315
|
}
|
|
1316
1316
|
/* data-shown */
|
|
1317
|
-
.bs-dropdown:where([data-shown]) {
|
|
1317
|
+
.bs-dropdown:where([data-shown]:not([data-shown="false"])) {
|
|
1318
1318
|
opacity: 1;
|
|
1319
1319
|
transform: translateY(0);
|
|
1320
1320
|
z-index: 999;
|
|
@@ -1357,18 +1357,18 @@ a.bs-circle-button {
|
|
|
1357
1357
|
}
|
|
1358
1358
|
|
|
1359
1359
|
/* data-shown */
|
|
1360
|
-
.bs-dropdown:where([data-shown]) {
|
|
1360
|
+
.bs-dropdown:where([data-shown]:not([data-shown="false"])) {
|
|
1361
1361
|
opacity: 1;
|
|
1362
1362
|
}
|
|
1363
1363
|
|
|
1364
1364
|
/* data-top */
|
|
1365
|
-
.bs-dropdown:where([data-top]) {
|
|
1365
|
+
.bs-dropdown:where([data-top]:not([data-top="false"])) {
|
|
1366
1366
|
--dropdown-wscreen-bottom: calc(100% + 0.5rem);
|
|
1367
1367
|
--dropdown-wscreen-top: auto;
|
|
1368
1368
|
}
|
|
1369
1369
|
|
|
1370
1370
|
/* data-justify="center" */
|
|
1371
|
-
.bs-dropdown-parent:where([data-center]) :where(.bs-dropdown) {
|
|
1371
|
+
.bs-dropdown-parent:where([data-center]:not([data-center="false"])) :where(.bs-dropdown) {
|
|
1372
1372
|
--dropdown-wscreen-left: 50%;
|
|
1373
1373
|
transform: translateX(-50%);
|
|
1374
1374
|
}
|
|
@@ -1376,7 +1376,7 @@ a.bs-circle-button {
|
|
|
1376
1376
|
.bs-dropdown :where(.bs-dropdown-options) {
|
|
1377
1377
|
--options-height-max: 20rem;
|
|
1378
1378
|
}
|
|
1379
|
-
.bs-dropdown:where([data-search]) :where(.bs-dropdown-options) {
|
|
1379
|
+
.bs-dropdown:where([data-search]:not([data-search="false"])) :where(.bs-dropdown-options) {
|
|
1380
1380
|
--options-height-max: 17.25rem;
|
|
1381
1381
|
}
|
|
1382
1382
|
}
|
|
@@ -1512,18 +1512,24 @@ a.bs-circle-button {
|
|
|
1512
1512
|
line-height: var(--bs-leading-base);
|
|
1513
1513
|
width: 100%;
|
|
1514
1514
|
}
|
|
1515
|
-
:where([data-required]) {
|
|
1515
|
+
:where([data-required]:not([data-required="false"])) {
|
|
1516
1516
|
color: var(--bs-ink-red);
|
|
1517
1517
|
}
|
|
1518
|
-
:where(label[data-disabled]
|
|
1518
|
+
:where(label[data-disabled]:not([data-disabled="false"])) {
|
|
1519
|
+
--label-color: var(--bs-ink-disabled);
|
|
1520
|
+
}
|
|
1521
|
+
:where([data-disabled]:not([data-disabled="false"]) [data-required]:not([data-required="false"])) {
|
|
1522
|
+
--label-color: var(--bs-ink-disabled);
|
|
1523
|
+
}
|
|
1524
|
+
:where([data-disabled]:not([data-disabled="false"])) label {
|
|
1519
1525
|
--label-color: var(--bs-ink-disabled);
|
|
1520
1526
|
}
|
|
1521
1527
|
/* Generally applicable (all input types) */
|
|
1522
|
-
:where([data-required]) {
|
|
1528
|
+
:where([data-required]:not([data-required="false"])) {
|
|
1523
1529
|
color: var(--bs-ink-red);
|
|
1524
1530
|
font-weight: var(--bs-font-bold, 600);
|
|
1525
1531
|
}
|
|
1526
|
-
:where([data-disabled], [data-disabled] [data-required]) {
|
|
1532
|
+
:where([data-disabled]:not([data-disabled="false"]), [data-disabled]:not([data-disabled="false"]) [data-required]:not([data-required="false"])) {
|
|
1527
1533
|
color: var(--bs-gray-400);
|
|
1528
1534
|
}
|
|
1529
1535
|
:where(.box) :is(input, textarea, select):where(:focus-visible) {
|
|
@@ -1533,7 +1539,7 @@ a.bs-circle-button {
|
|
|
1533
1539
|
--offset-color: var(--bs-bg-invert-base);
|
|
1534
1540
|
}
|
|
1535
1541
|
/* Errors and Messages */
|
|
1536
|
-
:is(input, select, textarea):where([data-error]) {
|
|
1542
|
+
:is(input, select, textarea):where([data-error]:not([data-error="false"])) {
|
|
1537
1543
|
--input-border: var(--bs-ink-red);
|
|
1538
1544
|
}
|
|
1539
1545
|
/* Fieldset */
|
|
@@ -1605,7 +1611,7 @@ textarea {
|
|
|
1605
1611
|
color: var(--bs-ink-disabled);
|
|
1606
1612
|
}
|
|
1607
1613
|
/* Errors and Messages */
|
|
1608
|
-
:is(input, select, textarea):where([data-error]) {
|
|
1614
|
+
:is(input, select, textarea):where([data-error]:not([data-error="false"])) {
|
|
1609
1615
|
--input-border: var(--bs-ink-red);
|
|
1610
1616
|
}
|
|
1611
1617
|
/*
|
|
@@ -1764,8 +1770,9 @@ and issues with box-sizing
|
|
|
1764
1770
|
--focus-border: var(--bs-blue-base);
|
|
1765
1771
|
}
|
|
1766
1772
|
.bs-input-addon:where(:not([data-multifocus]):focus-within),
|
|
1767
|
-
.bs-input-addon:where([data-multifocus]
|
|
1768
|
-
.bs-input-addon:where([data-multifocus]
|
|
1773
|
+
.bs-input-addon:where([data-multifocus="false"]:focus-within),
|
|
1774
|
+
.bs-input-addon:where([data-multifocus]:not([data-multifocus="false"])) :where(input, select):where(:focus, :focus-within, :focus-visible),
|
|
1775
|
+
.bs-input-addon:where([data-multifocus]:not([data-multifocus="false"])) :is(bs-input, bs-select) :where(input, select):where(:focus, :focus-within, :focus-visible) {
|
|
1769
1776
|
--input-border: var(--focus-border);
|
|
1770
1777
|
position: relative;
|
|
1771
1778
|
z-index: 1;
|
|
@@ -1777,13 +1784,14 @@ and issues with box-sizing
|
|
|
1777
1784
|
.bs-input-addon :where(.bs-input-addon:focus-within)::after {
|
|
1778
1785
|
z-index: 1;
|
|
1779
1786
|
}
|
|
1780
|
-
.bs-input-addon:where([data-multifocus]) > :where(:not(.bs-input-addon)) > :where(input:focus, select:focus),
|
|
1781
|
-
.bs-input-addon:where([data-multifocus]) > :is(bs-input, bs-select) :where(input:focus, select:focus),
|
|
1782
|
-
.bs-input-addon:where([data-multifocus]) > :where(input:focus, select:focus) {
|
|
1787
|
+
.bs-input-addon:where([data-multifocus]:not([data-multifocus="false"])) > :where(:not(.bs-input-addon)) > :where(input:focus, select:focus),
|
|
1788
|
+
.bs-input-addon:where([data-multifocus]:not([data-multifocus="false"])) > :is(bs-input, bs-select) :where(input:focus, select:focus),
|
|
1789
|
+
.bs-input-addon:where([data-multifocus]:not([data-multifocus="false"])) > :where(input:focus, select:focus) {
|
|
1783
1790
|
border-radius: .25rem;
|
|
1784
1791
|
box-shadow: var(--focus-border) 0px 0px 0px 1px inset;
|
|
1785
1792
|
}
|
|
1786
|
-
.bs-input-addon:where(:not([data-multifocus]):focus-within)::after
|
|
1793
|
+
.bs-input-addon:where(:not([data-multifocus]):focus-within)::after,
|
|
1794
|
+
.bs-input-addon:where([data-multifocus="false"]:focus-within)::after {
|
|
1787
1795
|
border-width: 1px;
|
|
1788
1796
|
border-radius: .25rem;
|
|
1789
1797
|
}
|
|
@@ -1792,7 +1800,7 @@ and issues with box-sizing
|
|
|
1792
1800
|
border-color: transparent;
|
|
1793
1801
|
}
|
|
1794
1802
|
/* Straight-lined ::before border to fill the gap below the rounded ::after border */
|
|
1795
|
-
.bs-input-addon:where([data-multifocus]) :where(:focus-within)::before {
|
|
1803
|
+
.bs-input-addon:where([data-multifocus]:not([data-multifocus="false"])) :where(:focus-within)::before {
|
|
1796
1804
|
border-bottom-width: 1px;
|
|
1797
1805
|
border-color: var(--bs-violet-300);
|
|
1798
1806
|
border-radius: 0;
|
|
@@ -1810,13 +1818,13 @@ and issues with box-sizing
|
|
|
1810
1818
|
pointer-events: none;
|
|
1811
1819
|
}
|
|
1812
1820
|
/* -------- Error styles -------- */
|
|
1813
|
-
.bs-input-addon:where([data-error]),
|
|
1814
|
-
.bs-input-addon:where([data-error]) :where(.bs-input-addon) {
|
|
1821
|
+
.bs-input-addon:where([data-error]:not([data-error="false"])),
|
|
1822
|
+
.bs-input-addon:where([data-error]:not([data-error="false"])) :where(.bs-input-addon) {
|
|
1815
1823
|
--focus-border: var(--bs-red-400);
|
|
1816
1824
|
--input-border: var(--bs-red-400);
|
|
1817
1825
|
}
|
|
1818
|
-
.bs-input-addon:where([data-error],[data-disabled]) > *::before,
|
|
1819
|
-
.bs-input-addon:where(.bs-input-addon[data-error] .bs-input-addon, .bs-input-addon[data-disabled] .bs-input-addon) > *::before {
|
|
1826
|
+
.bs-input-addon:where([data-error]:not([data-error="false"]),[data-disabled]:not([data-disabled="false"])) > *::before,
|
|
1827
|
+
.bs-input-addon:where(.bs-input-addon[data-error]:not([data-error="false"]) .bs-input-addon, .bs-input-addon[data-disabled]:not([data-disabled="false"]) .bs-input-addon) > *::before {
|
|
1820
1828
|
border-color: var(--input-border);
|
|
1821
1829
|
}
|
|
1822
1830
|
/* -------- Label margin -------- */
|
|
@@ -2005,7 +2013,7 @@ input:where([type='radio']):checked:disabled::before {
|
|
|
2005
2013
|
--radio-fill-color: var(--bs-bg-disabled);
|
|
2006
2014
|
}
|
|
2007
2015
|
/* Error state */
|
|
2008
|
-
input:where([type='checkbox'], [type='radio'])[data-error] {
|
|
2016
|
+
input:where([type='checkbox'], [type='radio'])[data-error]:where(:not([data-error="false"])) {
|
|
2009
2017
|
--box-shadow: var(--bs-red-base);
|
|
2010
2018
|
--outline-color: var(--bs-red-base);
|
|
2011
2019
|
}
|
|
@@ -2133,7 +2141,7 @@ input:where([type='checkbox'], [type='radio'])[data-error] {
|
|
|
2133
2141
|
--offset-color: var(--bs-bg-invert-base);
|
|
2134
2142
|
}
|
|
2135
2143
|
/* Disabled state */
|
|
2136
|
-
.bs-switch:where([data-disabled]) {
|
|
2144
|
+
.bs-switch:where([data-disabled]:not([data-disabled="false"])) {
|
|
2137
2145
|
--ball-background: var(--bs-ink-disabled);
|
|
2138
2146
|
--switch-background: var(--bs-bg-disabled);
|
|
2139
2147
|
}
|
|
@@ -2150,7 +2158,7 @@ input:where([type='checkbox'], [type='radio'])[data-error] {
|
|
|
2150
2158
|
list-style: none;
|
|
2151
2159
|
overflow-wrap: break-word;
|
|
2152
2160
|
}
|
|
2153
|
-
.bs-hint:where([data-error]) {
|
|
2161
|
+
.bs-hint:where([data-error]:not([data-error="false"])) {
|
|
2154
2162
|
--hint-color: var(--bs-ink-red);
|
|
2155
2163
|
}
|
|
2156
2164
|
.bs-modal {
|
|
@@ -2171,7 +2179,7 @@ input:where([type='checkbox'], [type='radio'])[data-error] {
|
|
|
2171
2179
|
transition-timing-function: ease-in-out;
|
|
2172
2180
|
z-index: 9999;
|
|
2173
2181
|
}
|
|
2174
|
-
.bs-modal:where([data-shown]) {
|
|
2182
|
+
.bs-modal:where([data-shown]:not([data-shown="false"])) {
|
|
2175
2183
|
opacity: 1;
|
|
2176
2184
|
}
|
|
2177
2185
|
@media (min-width: 752px) {
|
|
@@ -2198,7 +2206,7 @@ input:where([type='checkbox'], [type='radio'])[data-error] {
|
|
|
2198
2206
|
transition-timing-function: ease-in-out;
|
|
2199
2207
|
z-index: 9998;
|
|
2200
2208
|
}
|
|
2201
|
-
.bs-overlay:where([data-shown]) {
|
|
2209
|
+
.bs-overlay:where([data-shown]:not([data-shown="false"])) {
|
|
2202
2210
|
opacity: 1;
|
|
2203
2211
|
}
|
|
2204
2212
|
.bs-pagination {
|
|
@@ -2234,11 +2242,11 @@ input:where([type='checkbox'], [type='radio'])[data-error] {
|
|
|
2234
2242
|
.bs-pagination button:where(:disabled) {
|
|
2235
2243
|
color: var(--bs-ink-disabled);
|
|
2236
2244
|
}
|
|
2237
|
-
.bs-pagination button:where([data-selected]) {
|
|
2245
|
+
.bs-pagination button:where([data-selected]:not([data-selected="false"])) {
|
|
2238
2246
|
background-color: var(--bs-blue-base);
|
|
2239
2247
|
color: var(--bs-gray-50);
|
|
2240
2248
|
}
|
|
2241
|
-
.bs-pagination:where([data-fixed]) {
|
|
2249
|
+
.bs-pagination:where([data-fixed]:not([data-fixed="false"])) {
|
|
2242
2250
|
background-color: var(--bs-bg-base-elevated);
|
|
2243
2251
|
bottom: 0;
|
|
2244
2252
|
left: 0;
|
|
@@ -2403,7 +2411,7 @@ input:where([type='checkbox'], [type='radio'])[data-error] {
|
|
|
2403
2411
|
--pill-border: var(--bs-royal-200);
|
|
2404
2412
|
}
|
|
2405
2413
|
/* ------------------------------ Background Colors ------------------------------ */
|
|
2406
|
-
:where(.box, [class*="bg-"]:not([class~="bg-white"])) .bs-pill:where(:not([data-variant^="live"], [data-active])) {
|
|
2414
|
+
:where(.box, [class*="bg-"]:not([class~="bg-white"])) .bs-pill:where(:not([data-variant^="live"], [data-active]:not([data-active="false"]))) {
|
|
2407
2415
|
--pill-background: var(--bs-bg-base);
|
|
2408
2416
|
}
|
|
2409
2417
|
:where(.box[data-invert]) .bs-pill {
|
|
@@ -2488,24 +2496,24 @@ input:where([type='checkbox'], [type='radio'])[data-error] {
|
|
|
2488
2496
|
content: url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%23F15355'/%3E%3C/svg%3E%0A");
|
|
2489
2497
|
}
|
|
2490
2498
|
/* ----- Filter Active Styles ----- */
|
|
2491
|
-
.bs-pill:where([data-variant^="filter"][data-active]) {
|
|
2499
|
+
.bs-pill:where([data-variant^="filter"][data-active]:not([data-active="false"])) {
|
|
2492
2500
|
--pill-background: var(--bs-blue-base);
|
|
2493
2501
|
--pill-border: transparent;
|
|
2494
2502
|
--pill-text: var(--bs-white);
|
|
2495
2503
|
}
|
|
2496
|
-
.bs-pill:where([data-variant^="filter"][data-active]):is(:hover, :focus) {
|
|
2504
|
+
.bs-pill:where([data-variant^="filter"][data-active]:not([data-active="false"])):is(:hover, :focus) {
|
|
2497
2505
|
--pill-border: transparent;
|
|
2498
2506
|
}
|
|
2499
|
-
:is(a, button).bs-pill:where([data-variant^="filter"][data-active]):is(:hover, :focus) {
|
|
2507
|
+
:is(a, button).bs-pill:where([data-variant^="filter"][data-active]:not([data-active="false"])):is(:hover, :focus) {
|
|
2500
2508
|
--pill-background: var(--bs-blue-500);
|
|
2501
2509
|
--pill-border: transparent;
|
|
2502
2510
|
}
|
|
2503
2511
|
/* White X */
|
|
2504
|
-
.bs-pill:where([data-variant^="filter"][data-active])::after {
|
|
2512
|
+
.bs-pill:where([data-variant^="filter"][data-active]:not([data-active="false"]))::after {
|
|
2505
2513
|
content: url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%23fff'/%3E%3C/svg%3E");
|
|
2506
2514
|
}
|
|
2507
2515
|
/* Black X */
|
|
2508
|
-
.bs-pill:where([data-variant^="filter"][data-active]):where(:disabled, [aria-disabled="true"])::after {
|
|
2516
|
+
.bs-pill:where([data-variant^="filter"][data-active]:not([data-active="false"])):where(:disabled, [aria-disabled="true"])::after {
|
|
2509
2517
|
content: url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%230A0B19'/%3E%3C/svg%3E%0A");
|
|
2510
2518
|
}
|
|
2511
2519
|
/* ------------------------------ Live Now Styles ------------------------------ */
|
|
@@ -2532,7 +2540,8 @@ input:where([type='checkbox'], [type='radio'])[data-error] {
|
|
|
2532
2540
|
color: var(--bs-ink-disabled);
|
|
2533
2541
|
background-color: var(--bs-bg-disabled);
|
|
2534
2542
|
}
|
|
2535
|
-
.bs-pill:where([data-variant^="filter"]):not([data-active]):is(:disabled, [aria-disabled="true"])
|
|
2543
|
+
.bs-pill:where([data-variant^="filter"]):not([data-active]):is(:disabled, [aria-disabled="true"]),
|
|
2544
|
+
.bs-pill:where([data-variant^="filter"])[data-active="false"]:is(:disabled, [aria-disabled="true"]) {
|
|
2536
2545
|
--pill-border: var(--bs-gray-400);
|
|
2537
2546
|
}
|
|
2538
2547
|
.bs-profile-img,
|
|
@@ -2553,7 +2562,7 @@ input:where([type='checkbox'], [type='radio'])[data-error] {
|
|
|
2553
2562
|
object-fit: cover;
|
|
2554
2563
|
width: 100%;
|
|
2555
2564
|
}
|
|
2556
|
-
.bs-profile-img:where([data-no-img]) img {
|
|
2565
|
+
.bs-profile-img:where([data-no-img]:not([data-no-img="false"])) img {
|
|
2557
2566
|
display: none;
|
|
2558
2567
|
}
|
|
2559
2568
|
.bs-profile-img::before,
|
|
@@ -2570,11 +2579,11 @@ input:where([type='checkbox'], [type='radio'])[data-error] {
|
|
|
2570
2579
|
box-shadow: var(--bs-shadow-profilePhoto);
|
|
2571
2580
|
content: '';
|
|
2572
2581
|
}
|
|
2573
|
-
.bs-profile-img:where([data-no-img])::before {
|
|
2582
|
+
.bs-profile-img:where([data-no-img]:not([data-no-img="false"]))::before {
|
|
2574
2583
|
display: none;
|
|
2575
2584
|
}
|
|
2576
2585
|
/* Initials */
|
|
2577
|
-
.bs-profile-img:where([data-no-img])::after {
|
|
2586
|
+
.bs-profile-img:where([data-no-img]:not([data-no-img="false"]))::after {
|
|
2578
2587
|
border: 1px solid currentColor;
|
|
2579
2588
|
color: var(--bs-blue-500);
|
|
2580
2589
|
content: attr(data-initials);
|
|
@@ -2824,7 +2833,7 @@ table:where([data-sticky^="left"]) :is(td:first-child, th:first-child) {
|
|
|
2824
2833
|
width: clamp(17rem, calc(100vw - 3rem), 25rem);
|
|
2825
2834
|
z-index: 999;
|
|
2826
2835
|
}
|
|
2827
|
-
.bs-toast:where([data-stacked]) {
|
|
2836
|
+
.bs-toast:where([data-stacked]:not([data-stacked="false"])) {
|
|
2828
2837
|
bottom: auto;
|
|
2829
2838
|
left: auto;
|
|
2830
2839
|
position: static;
|
|
@@ -2832,7 +2841,7 @@ table:where([data-sticky^="left"]) :is(td:first-child, th:first-child) {
|
|
|
2832
2841
|
z-index: auto;
|
|
2833
2842
|
}
|
|
2834
2843
|
/* Mobile - Toast comes up from bottom */
|
|
2835
|
-
.bs-toast:where([data-shown]) {
|
|
2844
|
+
.bs-toast:where([data-shown]:not([data-shown="false"])) {
|
|
2836
2845
|
opacity: 1;
|
|
2837
2846
|
transform: translate(0, 0);
|
|
2838
2847
|
}
|
|
@@ -2867,7 +2876,7 @@ table:where([data-sticky^="left"]) :is(td:first-child, th:first-child) {
|
|
|
2867
2876
|
padding-right: 1rem;
|
|
2868
2877
|
padding-top: 0.5rem;
|
|
2869
2878
|
}
|
|
2870
|
-
.bs-toast-actions:where([data-stacked]) {
|
|
2879
|
+
.bs-toast-actions:where([data-stacked]:not([data-stacked="false"])) {
|
|
2871
2880
|
flex-direction: column-reverse;
|
|
2872
2881
|
}
|
|
2873
2882
|
/* Warning Toast Styles */
|
|
@@ -2907,12 +2916,12 @@ table:where([data-sticky^="left"]) :is(td:first-child, th:first-child) {
|
|
|
2907
2916
|
transform: translate(calc(100% + 1.5rem), 0);
|
|
2908
2917
|
}
|
|
2909
2918
|
|
|
2910
|
-
.bs-toast:where([data-shown]) {
|
|
2919
|
+
.bs-toast:where([data-shown]:not([data-shown="false"])) {
|
|
2911
2920
|
opacity: 1;
|
|
2912
2921
|
transform: translate(0, 0);
|
|
2913
2922
|
}
|
|
2914
2923
|
|
|
2915
|
-
.bs-toast-actions:where([data-stacked]) {
|
|
2924
|
+
.bs-toast-actions:where([data-stacked]:not([data-stacked="false"])) {
|
|
2916
2925
|
flex-direction: row;
|
|
2917
2926
|
}
|
|
2918
2927
|
}
|
|
@@ -3061,10 +3070,10 @@ table:where([data-sticky^="left"]) :is(td:first-child, th:first-child) {
|
|
|
3061
3070
|
:where(.bs-tooltip[data-position="top-right"]):focus-within :where(.bs-tooltip-text),
|
|
3062
3071
|
:where(.bs-tooltip[data-position="bottom-left"]):focus-within :where(.bs-tooltip-text),
|
|
3063
3072
|
:where(.bs-tooltip[data-position="bottom-right"]):focus-within :where(.bs-tooltip-text),
|
|
3064
|
-
:where(.bs-tooltip[data-position="top-left"])[data-shown] :where(.bs-tooltip-text),
|
|
3065
|
-
:where(.bs-tooltip[data-position="top-right"])[data-shown] :where(.bs-tooltip-text),
|
|
3066
|
-
:where(.bs-tooltip[data-position="bottom-left"])[data-shown] :where(.bs-tooltip-text),
|
|
3067
|
-
:where(.bs-tooltip[data-position="bottom-right"])[data-shown] :where(.bs-tooltip-text) {
|
|
3073
|
+
:where(.bs-tooltip[data-position="top-left"]:not([data-shown="false"]))[data-shown] :where(.bs-tooltip-text),
|
|
3074
|
+
:where(.bs-tooltip[data-position="top-right"]:not([data-shown="false"]))[data-shown] :where(.bs-tooltip-text),
|
|
3075
|
+
:where(.bs-tooltip[data-position="bottom-left"]:not([data-shown="false"]))[data-shown] :where(.bs-tooltip-text),
|
|
3076
|
+
:where(.bs-tooltip[data-position="bottom-right"]:not([data-shown="false"]))[data-shown] :where(.bs-tooltip-text) {
|
|
3068
3077
|
opacity: 1;
|
|
3069
3078
|
transform: scale(1);
|
|
3070
3079
|
}
|
|
@@ -3073,8 +3082,13 @@ table:where([data-sticky^="left"]) :is(td:first-child, th:first-child) {
|
|
|
3073
3082
|
Don't display unless data-shown is present
|
|
3074
3083
|
This must go last to properly override the other classes
|
|
3075
3084
|
*/
|
|
3076
|
-
:where(.bs-tooltip[data-disabled]:not([data-shown])):hover :where(.bs-tooltip-text),
|
|
3077
|
-
:where(.bs-tooltip[data-disabled]:not([data-shown])):focus-within :where(.bs-tooltip-text) {
|
|
3085
|
+
:where(.bs-tooltip[data-disabled]:not([data-disabled="false"]):not([data-shown])):hover :where(.bs-tooltip-text),
|
|
3086
|
+
:where(.bs-tooltip[data-disabled]:not([data-disabled="false"]):not([data-shown])):focus-within :where(.bs-tooltip-text) {
|
|
3087
|
+
opacity: 0;
|
|
3088
|
+
transform: scale(0);
|
|
3089
|
+
}
|
|
3090
|
+
:where(.bs-tooltip[data-shown="false"][data-disabled]:not([data-disabled="false"])):hover :where(.bs-tooltip-text),
|
|
3091
|
+
:where(.bs-tooltip[data-shown="false"][data-disabled]:not([data-disabled="false"])):focus-within :where(.bs-tooltip-text) {
|
|
3078
3092
|
opacity: 0;
|
|
3079
3093
|
transform: scale(0);
|
|
3080
3094
|
}
|