aboutsummaryrefslogtreecommitdiff
path: root/.config/ags/widget/powermenu/powermenu.scss
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2025-08-30 19:22:59 +0200
committersrdusr <trevorgray@srdusr.com>2025-08-30 19:22:59 +0200
commit19120d4f9761c67d99ed1ce3da6084b83f5a49c9 (patch)
treef234cad1bdad88114a63c9702144da487024967a /.config/ags/widget/powermenu/powermenu.scss
parent5928998af5404ae2be84c6cecc10ebf84bd3f3ed (diff)
downloaddotfiles-19120d4f9761c67d99ed1ce3da6084b83f5a49c9.tar.gz
dotfiles-19120d4f9761c67d99ed1ce3da6084b83f5a49c9.zip
Linux-specific dotfiles
Diffstat (limited to '.config/ags/widget/powermenu/powermenu.scss')
-rw-r--r--.config/ags/widget/powermenu/powermenu.scss110
1 files changed, 0 insertions, 110 deletions
diff --git a/.config/ags/widget/powermenu/powermenu.scss b/.config/ags/widget/powermenu/powermenu.scss
deleted file mode 100644
index d5ce0de..0000000
--- a/.config/ags/widget/powermenu/powermenu.scss
+++ /dev/null
@@ -1,110 +0,0 @@
-window#powermenu,
-window#verification {
- // the fraction has to be more than hyprland ignorealpha
- background-color: rgba(0, 0, 0, .4);
-}
-
-window#verification .verification {
- @include floating-widget;
- padding: $popover-padding * 1.5;
- min-width: 300px;
- min-height: 100px;
-
- .text-box {
- margin-bottom: $spacing;
-
- .title {
- font-size: 1.6em;
- }
-
- .desc {
- color: transparentize($fg, 0.1);
- font-size: 1.1em;
- }
- }
-
- .buttons {
- @include spacing;
- margin-top: $padding;
-
- button {
- @include button;
- font-size: 1.5em;
- padding: $padding;
- }
- }
-}
-
-window#powermenu .powermenu {
- @include floating-widget;
-
- &.line {
- padding: $popover-padding * 1.5;
-
- button {
- padding: $popover-padding;
- }
-
- label {
- margin-bottom: $spacing * -.5;
- }
- }
-
- &.box {
- padding: $popover-padding * 2;
-
- button {
- padding: $popover-padding * 1.5;
- }
-
- label {
- margin-bottom: $spacing * -1;
- }
- }
-
- button {
- @include unset;
-
- image {
- @include button;
- border-radius: $radius + ($popover-padding * 1.4);
- min-width: 1.7em;
- min-height: 1.7em;
- font-size: 4em;
- }
-
- label,
- image {
- color: transparentize($fg, 0.1);
- }
-
- label {
- margin-top: $spacing * .3;
- }
-
- &:hover {
- image {
- @include button-hover;
- }
-
- label {
- color: $fg;
- }
- }
-
- &:focus image {
- @include button-focus;
- }
-
- &:active image {
- @include button-active;
- }
-
- &:focus,
- &:active {
- label {
- color: $primary-bg;
- }
- }
- }
-}