diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-31 22:00:52 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-31 22:00:52 +1100 |
| commit | f8f8b0837bad46e6b1f40ce6e8df3b45cf3c8542 (patch) | |
| tree | 1e36ba9a357434fed7ff9eecda5b9f69b6ae0e77 /scss | |
| parent | config: don't show sidebar on startup by default (diff) | |
| download | caelestia-shell-f8f8b0837bad46e6b1f40ce6e8df3b45cf3c8542.tar.gz caelestia-shell-f8f8b0837bad46e6b1f40ce6e8df3b45cf3c8542.tar.bz2 caelestia-shell-f8f8b0837bad46e6b1f40ce6e8df3b45cf3c8542.zip | |
startup: wait for config to init
Also cleanup some stuff
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/_lib.scss | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/scss/_lib.scss b/scss/_lib.scss index ff418c3..e222b59 100644 --- a/scss/_lib.scss +++ b/scss/_lib.scss @@ -43,57 +43,3 @@ $scale: 0.068rem; @mixin ease-in-out { transition-timing-function: cubic-bezier(0.85, 0, 0.15, 1); } - -@mixin popdown-window($colour) { - @include rounded(8); - @include border($colour, 0.4, 2); - @include shadow; - @include font.mono; - - background-color: scheme.$mantle; - color: $colour; - padding: s(10) s(12); - font-size: s(14); - - .header { - @include spacing(8); - - padding: 0 s(5); - margin-bottom: s(8); - font-size: s(15); - - button { - @include rounded(5); - @include element-decel; - - padding: s(3) s(8); - - &:hover, - &:focus { - background-color: scheme.$surface0; - } - - &:active { - background-color: scheme.$surface1; - } - - &.enabled { - background-color: $colour; - color: scheme.$base; - - &:hover, - &:focus { - background-color: color.mix($colour, scheme.$base, 80%); - } - - &:active { - background-color: color.mix($colour, scheme.$base, 70%); - } - } - } - } - - .icon { - font-size: s(32); - } -} |