@wwtdev/bsds-css 3.0.13 → 3.0.15
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
|
@@ -5335,7 +5335,6 @@ label:where(.bs-label) {
|
|
|
5335
5335
|
opacity: 1;
|
|
5336
5336
|
}
|
|
5337
5337
|
.bs-pagination {
|
|
5338
|
-
background-color: var(--bs-bg-base);
|
|
5339
5338
|
color: var(--bs-ink-base);
|
|
5340
5339
|
display: flex;
|
|
5341
5340
|
gap: 1.5rem;
|
|
@@ -7273,7 +7272,37 @@ a.bs-text-button {
|
|
|
7273
7272
|
--bs-popover-width: 28.75rem; /* 460px */
|
|
7274
7273
|
}
|
|
7275
7274
|
.bs-flyout:where([data-size="lg"]) {
|
|
7276
|
-
--bs-popover-width: 33.4375rem /* 535px
|
|
7275
|
+
--bs-popover-width: 33.4375rem; /* 535px */
|
|
7276
|
+
}
|
|
7277
|
+
/* -- RESIZING -- */
|
|
7278
|
+
.bs-flyout:where([data-resize]) {
|
|
7279
|
+
/* using clip instead of hidden, to allow resizer hover target
|
|
7280
|
+
to extend outside of the flyout bounds via overflow-clip-margin */
|
|
7281
|
+
overflow: clip;
|
|
7282
|
+
transform: translateX(var(--bs-flyout-resize-pushed, 0px));
|
|
7283
|
+
}
|
|
7284
|
+
.bs-flyout-resizer {
|
|
7285
|
+
cursor: col-resize;
|
|
7286
|
+
inset-block: 0;
|
|
7287
|
+
position: absolute;
|
|
7288
|
+
width: 10px;
|
|
7289
|
+
z-index: 1;
|
|
7290
|
+
/* prevents browser from trying to hijack touch interactions to handle on its own */
|
|
7291
|
+
touch-action: none;
|
|
7292
|
+
}
|
|
7293
|
+
/* right flyout */
|
|
7294
|
+
.bs-flyout:where([data-resize="right"]) {
|
|
7295
|
+
overflow-clip-margin: 5px;
|
|
7296
|
+
}
|
|
7297
|
+
.bs-flyout:where([data-resize="right"]) :where(.bs-flyout-resizer) {
|
|
7298
|
+
left: -5px;
|
|
7299
|
+
}
|
|
7300
|
+
/* left flyout - not using same as right flyout, to avoid overlapping potential scrollbar too much */
|
|
7301
|
+
.bs-flyout:where([data-resize="left"]) {
|
|
7302
|
+
overflow-clip-margin: 7px;
|
|
7303
|
+
}
|
|
7304
|
+
.bs-flyout:where([data-resize="left"]) :where(.bs-flyout-resizer) {
|
|
7305
|
+
right: -7px;
|
|
7277
7306
|
}
|
|
7278
7307
|
/* -- SHADOWS -- */
|
|
7279
7308
|
.bs-flyout:where([data-place-self="left"]) {
|
|
@@ -7299,11 +7328,11 @@ a.bs-text-button {
|
|
|
7299
7328
|
/* The 105% is so the huge shadow on the flyout ends-up off-screen too, otherwise at 100%, you notice it cut out when the panel closes */
|
|
7300
7329
|
.bs-flyout-enter-from .bs-flyout[data-place-self="left"],
|
|
7301
7330
|
.bs-flyout-leave-to .bs-flyout[data-place-self="left"] {
|
|
7302
|
-
transform:
|
|
7331
|
+
transform: translate(calc(-105% + var(--bs-flyout-resize-pushed, 0px)));
|
|
7303
7332
|
}
|
|
7304
7333
|
.bs-flyout-enter-from .bs-flyout[data-place-self="right"],
|
|
7305
7334
|
.bs-flyout-leave-to .bs-flyout[data-place-self="right"] {
|
|
7306
|
-
transform:
|
|
7335
|
+
transform: translate(calc(105% + var(--bs-flyout-resize-pushed, 0px)));
|
|
7307
7336
|
}
|
|
7308
7337
|
/*
|
|
7309
7338
|
HEADS-UP:
|