Skip to content

Commit

Permalink
Merge pull request #210 from damongolding/fix/css-z-index
Browse files Browse the repository at this point in the history
z-index css var fix
  • Loading branch information
damongolding authored Dec 6, 2024
2 parents 50082a1 + 328f8a0 commit 7413cae
Show file tree
Hide file tree
Showing 6 changed files with 296 additions and 60 deletions.
10 changes: 5 additions & 5 deletions frontend/public/assets/css/kiosk.css
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ body {
-moz-transition: opacity 1s ease-out;
transition: opacity 1s ease-out;
will-change: opacity;
z-index: var(-z-base);
z-index: var(--z-base);
}

/* src/css/spinner.css */
Expand Down Expand Up @@ -211,7 +211,7 @@ body {
bottom: 0;
overflow: hidden;
background-color: #000;
z-index: var(-z-base);
z-index: var(--z-base);
}
.frame--image {
position: absolute;
Expand Down Expand Up @@ -431,7 +431,7 @@ body {
height: 200%;
background-image: -moz-radial-gradient(0% 100%, 100% 100%, var(--fade-gradient));
background-image: radial-gradient(100% 100% at 0% 100%, var(--fade-gradient));
z-index: var(-z-base);
z-index: var(--z-base);
}
.image--metadata--theme-solid {
padding-left: 1.5rem;
Expand Down Expand Up @@ -1195,7 +1195,7 @@ body {
height: 200%;
background-image: -moz-radial-gradient(0% 100%, 100% 100%, var(--fade-gradient));
background-image: radial-gradient(100% 100% at 0% 100%, var(--fade-gradient));
z-index: var(-z-base);
z-index: var(--z-base);
}
.weather {
position: relative;
Expand Down Expand Up @@ -1267,7 +1267,7 @@ body {
height: 200%;
background-image: -moz-radial-gradient(100% 0%, 100% 100%, var(--fade-gradient));
background-image: radial-gradient(100% 100% at 100% 0%, var(--fade-gradient));
z-index: var(-z-base);
z-index: var(--z-base);
}
.layout-splitview .weather--theme-solid {
border-radius: 0 0 0 2rem;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/css/container.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
transition: opacity 1s ease-out;
will-change: opacity;

z-index: var(-z-base);
z-index: var(--z-base);
}
2 changes: 1 addition & 1 deletion frontend/src/css/frame.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

background-color: #000;

z-index: var(-z-base);
z-index: var(--z-base);
}

.frame--image {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/css/image.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
100% 100% at 0% 100%,
var(--fade-gradient)
);
z-index: var(-z-base);
z-index: var(--z-base);
}

/* solid theme */
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/css/weather.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
100% 100% at 0% 100%,
var(--fade-gradient)
);
z-index: var(-z-base);
z-index: var(--z-base);
}

.weather {
Expand Down Expand Up @@ -103,7 +103,7 @@
100% 100% at 100% 0%,
var(--fade-gradient)
);
z-index: var(-z-base);
z-index: var(--z-base);
}
.weather--theme-solid {
border-radius: 0 0 0 2rem;
Expand Down
Loading

0 comments on commit 7413cae

Please sign in to comment.