@wavemaker/app-runtime-wm-build 11.14.1-next.28343 → 11.14.1-rc.236
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/npm-shrinkwrap.json +2 -2
- package/package-lock.json +2 -2
- package/package.json +1 -1
- package/wmapp/scripts/wm-libs.js +3 -3
- package/wmapp/scripts/wm-libs.min.js +2 -2
- package/wmapp/scripts/wm-loader.js +1 -1
- package/wmapp/scripts/wm-loader.min.js +1 -1
- package/wmapp/styles/foundation/foundation.css +6 -1
- package/wmapp/styles/foundation/foundation.min.css +1 -1
|
@@ -2085,6 +2085,7 @@ button:active.focus::before {
|
|
|
2085
2085
|
}
|
|
2086
2086
|
/* Container component styles and tokens */
|
|
2087
2087
|
:root {
|
|
2088
|
+
--wm-container-background: var(--wm-color-transparent);
|
|
2088
2089
|
--wm-container-border-color: var(--wm-color-border);
|
|
2089
2090
|
--wm-container-border-width: var(--wm-space-0);
|
|
2090
2091
|
--wm-container-border-style: var(--wm-border-style-none);
|
|
@@ -2114,6 +2115,7 @@ button:active.focus::before {
|
|
|
2114
2115
|
}
|
|
2115
2116
|
.wm-app .app-container {
|
|
2116
2117
|
position: relative;
|
|
2118
|
+
background-color: var(--wm-container-background);
|
|
2117
2119
|
border: var(--wm-container-border-width) var(--wm-container-border-style) var(--wm-container-border-color);
|
|
2118
2120
|
border-radius: var(--wm-container-border-radius);
|
|
2119
2121
|
box-shadow: var(--wm-container-shadow);
|
|
@@ -5824,7 +5826,7 @@ button:active.focus::before {
|
|
|
5824
5826
|
pointer-events: none;
|
|
5825
5827
|
}
|
|
5826
5828
|
.wm-app .app-popover {
|
|
5827
|
-
position:
|
|
5829
|
+
position: absolute;
|
|
5828
5830
|
inset: auto;
|
|
5829
5831
|
z-index: var(--wm-popover-z-index);
|
|
5830
5832
|
min-width: var(--wm-popover-min-width);
|
|
@@ -8165,6 +8167,9 @@ button:active.focus::before {
|
|
|
8165
8167
|
outline: 0 !important;
|
|
8166
8168
|
position: relative;
|
|
8167
8169
|
}
|
|
8170
|
+
.wm-app *:has(.app-popover) {
|
|
8171
|
+
position: static;
|
|
8172
|
+
}
|
|
8168
8173
|
.wm-app .sr-only {
|
|
8169
8174
|
position: absolute;
|
|
8170
8175
|
width: 1px;
|