@wwtdev/bsds-css 3.0.14 → 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
|
@@ -7272,7 +7272,37 @@ a.bs-text-button {
|
|
|
7272
7272
|
--bs-popover-width: 28.75rem; /* 460px */
|
|
7273
7273
|
}
|
|
7274
7274
|
.bs-flyout:where([data-size="lg"]) {
|
|
7275
|
-
--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;
|
|
7276
7306
|
}
|
|
7277
7307
|
/* -- SHADOWS -- */
|
|
7278
7308
|
.bs-flyout:where([data-place-self="left"]) {
|
|
@@ -7298,11 +7328,11 @@ a.bs-text-button {
|
|
|
7298
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 */
|
|
7299
7329
|
.bs-flyout-enter-from .bs-flyout[data-place-self="left"],
|
|
7300
7330
|
.bs-flyout-leave-to .bs-flyout[data-place-self="left"] {
|
|
7301
|
-
transform:
|
|
7331
|
+
transform: translate(calc(-105% + var(--bs-flyout-resize-pushed, 0px)));
|
|
7302
7332
|
}
|
|
7303
7333
|
.bs-flyout-enter-from .bs-flyout[data-place-self="right"],
|
|
7304
7334
|
.bs-flyout-leave-to .bs-flyout[data-place-self="right"] {
|
|
7305
|
-
transform:
|
|
7335
|
+
transform: translate(calc(105% + var(--bs-flyout-resize-pushed, 0px)));
|
|
7306
7336
|
}
|
|
7307
7337
|
/*
|
|
7308
7338
|
HEADS-UP:
|