summaryrefslogtreecommitdiff
path: root/scss/popdowns/notifications.scss
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-02 15:06:27 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-02 15:06:27 +1100
commite9eba2e2914e6c9aa01dd3d6267c969bcba3bb2f (patch)
tree9ce2fad274d4978d9531b5c57c2ceb4d67c219b5 /scss/popdowns/notifications.scss
parentsidebar: add date time to time pane (diff)
downloadcaelestia-shell-e9eba2e2914e6c9aa01dd3d6267c969bcba3bb2f.tar.gz
caelestia-shell-e9eba2e2914e6c9aa01dd3d6267c969bcba3bb2f.tar.bz2
caelestia-shell-e9eba2e2914e6c9aa01dd3d6267c969bcba3bb2f.zip
cleanup: remove popdown stuff
Popdowns were replaced with the sidebar
Diffstat (limited to 'scss/popdowns/notifications.scss')
-rw-r--r--scss/popdowns/notifications.scss58
1 files changed, 0 insertions, 58 deletions
diff --git a/scss/popdowns/notifications.scss b/scss/popdowns/notifications.scss
deleted file mode 100644
index e992f50..0000000
--- a/scss/popdowns/notifications.scss
+++ /dev/null
@@ -1,58 +0,0 @@
-@use "sass:color";
-@use "../scheme";
-@use "../lib";
-@use "../font";
-
-@mixin popup($accent) {
- .separator {
- background-color: $accent;
- }
-
- .image {
- @include lib.border($accent, 0.05);
- }
-}
-
-.notifications {
- @include lib.popdown-window(scheme.$mauve);
-
- min-width: lib.s(400);
- min-height: lib.s(600);
-
- .notification {
- .wrapper {
- padding-bottom: lib.s(10);
- }
-
- .inner {
- background-color: color.mix(scheme.$base, scheme.$surface0, 70%);
-
- &.low {
- @include popup(scheme.$overlay0);
- }
-
- &.normal {
- @include lib.border(scheme.$primary, 0.3);
- @include popup(scheme.$primary);
- }
-
- &.critical {
- @include lib.border(scheme.$error, 0.8);
- @include popup(scheme.$error);
- }
- }
-
- .actions > * {
- background-color: scheme.$surface0;
-
- &:hover,
- &:focus {
- background-color: scheme.$surface1;
- }
-
- &:active {
- background-color: scheme.$surface2;
- }
- }
- }
-}