blue-web 1.17.7 → 1.17.8
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/merged.scss +12 -1
- package/dist/style.css +11 -2
- package/dist/style.css.map +1 -1
- package/dist/style.min.css +3 -3
- package/dist/style.scss +1 -1
- package/dist/styles/_anchor.scss +11 -0
- package/package.json +1 -1
package/dist/merged.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Blue Web v1.17.
|
|
2
|
+
* Blue Web v1.17.8 (https://bruegmann.github.io/blue-web)
|
|
3
3
|
* Licensed under GNU General Public License v3.0 (https://github.com/bruegmann/blue-web/blob/master/LICENSE).
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -12338,8 +12338,19 @@ dialog.blue-modal:has(.offcanvas-start) {
|
|
|
12338
12338
|
anchor-name: var(--blue-anchor-name, --anchor-1);
|
|
12339
12339
|
}
|
|
12340
12340
|
|
|
12341
|
+
@position-try --blue-anchored-below {
|
|
12342
|
+
top: anchor(var(--blue-anchor-name, --anchor-1) bottom);
|
|
12343
|
+
bottom: unset;
|
|
12344
|
+
}
|
|
12345
|
+
|
|
12346
|
+
@position-try --blue-anchored-above {
|
|
12347
|
+
bottom: anchor(var(--blue-anchor-name, --anchor-1) top);
|
|
12348
|
+
top: unset;
|
|
12349
|
+
}
|
|
12350
|
+
|
|
12341
12351
|
.blue-anchored {
|
|
12342
12352
|
top: anchor(var(--blue-anchor-name, --anchor-1) bottom);
|
|
12353
|
+
position-try: --blue-anchored-below, --blue-anchored-above;
|
|
12343
12354
|
}
|
|
12344
12355
|
|
|
12345
12356
|
.blue-anchored-start {
|