@wwtdev/bsds-css 3.0.0 → 3.0.2
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/wwt-bsds.css
CHANGED
|
@@ -837,6 +837,16 @@ textarea,
|
|
|
837
837
|
select {
|
|
838
838
|
font: inherit;
|
|
839
839
|
}
|
|
840
|
+
button {
|
|
841
|
+
background-color: inherit;
|
|
842
|
+
border-color: transparent;
|
|
843
|
+
color: inherit;
|
|
844
|
+
font-family: inherit;
|
|
845
|
+
font-size: inherit;
|
|
846
|
+
padding: 0;
|
|
847
|
+
position: relative;
|
|
848
|
+
text-decoration: none;
|
|
849
|
+
}
|
|
840
850
|
/* Remove all animations and transitions for people that prefer not to see them */
|
|
841
851
|
@media (prefers-reduced-motion: reduce) {
|
|
842
852
|
html:where(:focus-within) {
|
|
@@ -1220,9 +1230,16 @@ a {
|
|
|
1220
1230
|
text-underline-offset: 2px;
|
|
1221
1231
|
transition: all var(--bs-transition-quick) var(--bs-transition-ease);
|
|
1222
1232
|
}
|
|
1233
|
+
a:where([data-unstyled="true"]) {
|
|
1234
|
+
color: inherit;
|
|
1235
|
+
text-decoration: none;
|
|
1236
|
+
}
|
|
1223
1237
|
a:where(:visited) {
|
|
1224
1238
|
color: var(--bs-ink-secondary);
|
|
1225
1239
|
}
|
|
1240
|
+
a:where([data-unstyled="true"]):where(:hover) {
|
|
1241
|
+
color: inherit;
|
|
1242
|
+
}
|
|
1226
1243
|
a:where(:focus-visible) {
|
|
1227
1244
|
outline-offset: var(--bs-space-1);
|
|
1228
1245
|
outline-style: solid;
|
|
@@ -5515,13 +5532,13 @@ label:where(.bs-label) {
|
|
|
5515
5532
|
}
|
|
5516
5533
|
/* Deprecated; use "data-status positive" instead */
|
|
5517
5534
|
.bs-pill:where([data-status^="complete"]) {
|
|
5518
|
-
--status-color: var(--bs-purple-
|
|
5535
|
+
--status-color: var(--bs-purple-400);
|
|
5519
5536
|
--pill-background: var(--bs-purple-100);
|
|
5520
5537
|
}
|
|
5521
5538
|
/* Dark mode selector for complete */
|
|
5522
5539
|
:where(.dark) .bs-pill:where([data-status^="complete"]) {
|
|
5523
5540
|
--status-color: var(--bs-purple-100);
|
|
5524
|
-
--pill-background: var(--bs-purple-
|
|
5541
|
+
--pill-background: var(--bs-purple-400);
|
|
5525
5542
|
}
|
|
5526
5543
|
/* ------------------------------ Filter Styles ------------------------------ */
|
|
5527
5544
|
.bs-pill:where([data-variant^="filter"]) {
|
|
@@ -6665,6 +6682,11 @@ a.bs-text-button {
|
|
|
6665
6682
|
visibility: visible;
|
|
6666
6683
|
pointer-events: auto;
|
|
6667
6684
|
width: var(--bs-vertical-nav-width);
|
|
6685
|
+
position: fixed;
|
|
6686
|
+
}
|
|
6687
|
+
|
|
6688
|
+
.bs-vertical-nav:where([data-sticky="true"]) {
|
|
6689
|
+
position: sticky;
|
|
6668
6690
|
}
|
|
6669
6691
|
|
|
6670
6692
|
.bs-vertical-nav:where([data-narrow="true"]) {
|
|
@@ -7462,8 +7484,8 @@ a.bs-text-button {
|
|
|
7462
7484
|
}
|
|
7463
7485
|
.bs-toast:where([data-variant="negative"]) {
|
|
7464
7486
|
--toast-icon: var(--toast-icon-warning);
|
|
7465
|
-
--toast-icon-color: var(--bs-negative-
|
|
7466
|
-
--toast-variant-color: var(--bs-negative-
|
|
7487
|
+
--toast-icon-color: var(--bs-negative-base);
|
|
7488
|
+
--toast-variant-color: var(--bs-negative-base);
|
|
7467
7489
|
}
|
|
7468
7490
|
/* Toast Header - auto-add the icon */
|
|
7469
7491
|
.bs-toast :where(.bs-pop-header:not(:has(.bs-pop-title, .bs-pop-subtitle)))::before,
|