diff --git a/frontend/src/html/pages/settings.html b/frontend/src/html/pages/settings.html index a5cf80b41e21..a3110ca39996 100644 --- a/frontend/src/html/pages/settings.html +++ b/frontend/src/html/pages/settings.html @@ -1438,7 +1438,7 @@
Apply various effects to the custom background.
-
+
blur
diff --git a/frontend/src/styles/index.scss b/frontend/src/styles/index.scss index 6a81fb596d29..9d1b742572ce 100644 --- a/frontend/src/styles/index.scss +++ b/frontend/src/styles/index.scss @@ -15,8 +15,11 @@ } } +// the screenshotting library has some issues with css layers +@import "fonts"; + @layer custom-styles { - @import "buttons", "fonts", "404", "ads", "account", "animations", "caret", + @import "buttons", "404", "ads", "account", "animations", "caret", "commandline", "core", "inputs", "keymap", "login", "monkey", "nav", "notifications", "popups", "profile", "scroll", "settings", "account-settings", "leaderboards", "test", "loading", "friends", diff --git a/frontend/src/styles/vendor.scss b/frontend/src/styles/vendor.scss index a97b0842ab56..8ce1826bcdb2 100644 --- a/frontend/src/styles/vendor.scss +++ b/frontend/src/styles/vendor.scss @@ -1,7 +1,7 @@ -@import "normalize.css" layer(normalize); +@import "fontawesome-5"; // the screenshotting library has some issues with css layers +@import "normalize.css" layer(normalize); @layer vendor { - @import "fontawesome-5"; @import "slim-select/styles"; @import "balloon-css/src/balloon"; } diff --git a/frontend/src/ts/components/layout/footer/Footer.tsx b/frontend/src/ts/components/layout/footer/Footer.tsx index 32c4bcee956b..d154f29ed578 100644 --- a/frontend/src/ts/components/layout/footer/Footer.tsx +++ b/frontend/src/ts/components/layout/footer/Footer.tsx @@ -1,7 +1,8 @@ import { JSXElement } from "solid-js"; -import { getFocus } from "../../../signals/core"; +import { getFocus, getIsScreenshotting } from "../../../signals/core"; import { showModal } from "../../../stores/modals"; +import { cn } from "../../../utils/cn"; import { Button } from "../../common/Button"; import { Keytips } from "./Keytips"; @@ -10,7 +11,11 @@ import { VersionButton } from "./VersionButton"; export function Footer(): JSXElement { return ( -