@quidgest/ui 0.9.7 → 0.9.9
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/index.d.ts +1 -0
- package/dist/ui.css +1 -0
- package/dist/ui.esm.js +35 -27
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js +1 -1
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +1 -1
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +4 -2
- package/package.json +1 -1
package/dist/ui.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest Framework v0.9.
|
|
2
|
+
* Quidgest Framework v0.9.9
|
|
3
3
|
* (c) 2023 Quidgest - Consultores de Gestão, SA
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -730,16 +730,18 @@ $line-color: var(--q-theme-primary);
|
|
|
730
730
|
$overlay-border-width: 1px;
|
|
731
731
|
$overlay-arrow-width: 1rem;
|
|
732
732
|
$overlay-arrow-height: 0.5rem;
|
|
733
|
+
$overlay-z-index: 1070;
|
|
733
734
|
.q-overlay {
|
|
734
735
|
$this: &;
|
|
735
736
|
--q-overlay-bg: var(--q-theme-background);
|
|
736
737
|
--q-overlay-color: var(--q-theme-on-background);
|
|
737
738
|
--q-overlay-border-color: var(--q-theme-neutral-light);
|
|
738
739
|
position: absolute;
|
|
739
|
-
z-index:
|
|
740
|
+
z-index: $overlay-z-index;
|
|
740
741
|
&__underlay {
|
|
741
742
|
position: fixed;
|
|
742
743
|
inset: 0;
|
|
744
|
+
z-index: $overlay-z-index - 1;
|
|
743
745
|
&--blur {
|
|
744
746
|
backdrop-filter: blur(2px);
|
|
745
747
|
}
|