summaryrefslogtreecommitdiff
path: root/scss/notifpopups.scss
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-26 22:36:23 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-26 22:36:23 +1000
commit3c579d0e275cdaf6f2c9589abade94bde7905c82 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /scss/notifpopups.scss
parentschemes: fix (diff)
downloadcaelestia-shell-3c579d0e275cdaf6f2c9589abade94bde7905c82.tar.gz
caelestia-shell-3c579d0e275cdaf6f2c9589abade94bde7905c82.tar.bz2
caelestia-shell-3c579d0e275cdaf6f2c9589abade94bde7905c82.zip
clean
Remove everything
Diffstat (limited to 'scss/notifpopups.scss')
-rw-r--r--scss/notifpopups.scss51
1 files changed, 0 insertions, 51 deletions
diff --git a/scss/notifpopups.scss b/scss/notifpopups.scss
deleted file mode 100644
index 92d2760..0000000
--- a/scss/notifpopups.scss
+++ /dev/null
@@ -1,51 +0,0 @@
-@use "sass:color";
-@use "scheme";
-@use "lib";
-@use "font";
-
-@mixin popup($colour) {
- .separator {
- background-color: $colour;
- }
-
- .image {
- @include lib.border($colour, 0.05);
- }
-}
-
-.notifpopups {
- min-width: lib.s(425);
- padding-left: lib.s(10); // So notifications can overshoot for init animation
- padding-right: lib.s(5);
- padding-top: lib.s(5);
-
- .notification {
- .wrapper {
- padding: lib.s(5); // For shadow
- }
-
- .inner {
- @include lib.rounded(10);
- @include lib.shadow;
-
- background-color: scheme.$base;
-
- &.low {
- @include popup(scheme.$overlay0);
- }
-
- &.normal {
- @include popup(scheme.$primary);
- }
-
- &.critical {
- @include lib.border(scheme.$error, 0.5);
- @include popup(scheme.$error);
-
- @if not scheme.$borders {
- background-color: color.mix(scheme.$base, scheme.$error, 95%);
- }
- }
- }
- }
-}