Skip to content

Commit b360f4d

Browse files
committed
fix(Z-indexes): Redifine z-indexes between 0 and 5
1 parent 862a3ae commit b360f4d

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

app/components/Auth/AuthBackground.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
.auth-background {
1010
position: fixed;
1111
inset: 0;
12-
z-index: -1;
12+
z-index: 0;
1313
overflow: hidden;
1414
pointer-events: none;
1515
}

app/components/CreateTools.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ watch(
127127
<style scoped>
128128
.back-btn {
129129
top: 0;
130-
z-index: 10;
130+
z-index: 2;
131131
}
132132
133133
.custom-tool-card {

app/components/Extension.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ function removeExtension() {
433433
}
434434
435435
.remove-dialog {
436-
z-index: 10000;
436+
z-index: 4;
437437
}
438438
439439
.extension-icon {

app/components/Layout/DrawerManager.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function handleFilesDropped(files) {
6666
elevation="0"
6767
:width="380"
6868
class="drawer-container left-0"
69-
style="z-index: 9999"
69+
style="z-index: 4;"
7070
>
7171
<GlassCard
7272
variant="panel"
@@ -88,7 +88,7 @@ function handleFilesDropped(files) {
8888
position: fixed;
8989
inset: 0;
9090
background-color: rgba(0, 0, 0, 0.5);
91-
z-index: 98;
91+
z-index: 2;
9292
will-change: backdrop-filter;
9393
transform: translateZ(0);
9494
isolation: isolate;
@@ -101,7 +101,7 @@ function handleFilesDropped(files) {
101101
height: calc(100vh - 100px) !important;
102102
margin-top: 84px;
103103
padding: 16px;
104-
z-index: 99;
104+
z-index: 3;
105105
isolation: isolate;
106106
backface-visibility: hidden;
107107
transform: translateZ(0);

app/layouts/default.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ watch(
4444

4545
<v-main class="custom-background dropzone">
4646
<GlassCard variant="ui" padding="pa-0" class="island-wrapper overflow-hidden">
47-
<NuxtPage style="z-index: 1" class="fill-height" />
47+
<NuxtPage z-index="1" class="fill-height" />
4848
</GlassCard>
4949
<InfraConnected>
5050
<DrawerManager :ui-store="UIStore" @files-dropped="handleFilesDropped" />
@@ -55,7 +55,7 @@ watch(
5555
indeterminate
5656
color="white"
5757
class="position-fixed top-0"
58-
style="z-index: 10001"
58+
style="z-index: 4;"
5959
/>
6060
<FeedBackSnackers />
6161
</v-app>
@@ -98,7 +98,7 @@ watch(
9898
position: fixed;
9999
inset: 0;
100100
background-color: rgba(0, 0, 0, 0.5);
101-
z-index: 98;
101+
z-index: 2;
102102
will-change: backdrop-filter;
103103
transform: translateZ(0);
104104
isolation: isolate;
@@ -118,7 +118,7 @@ watch(
118118
height: calc(100vh - 100px) !important;
119119
margin-top: 84px;
120120
padding: 16px;
121-
z-index: 99;
121+
z-index: 3;
122122
isolation: isolate;
123123
backface-visibility: hidden;
124124
transform: translateZ(0);

0 commit comments

Comments
 (0)