ags: add center-window and logout-menu windows and more

This commit is contained in:
retrozinndev
2025-02-12 13:39:38 -03:00
parent 36ee8c6ff5
commit be2731516e
28 changed files with 576 additions and 232 deletions
+9 -46
View File
@@ -1,55 +1,18 @@
@use "sass:color";
@use "./style/bar";
@use "./style/wal";
@use "./style/mixins";
@use "./style/bar";
@use "./style/osd";
@use "./style/control-center";
@use "./style/center-window";
* {
all: unset;
transition: 120ms linear;
color: color.adjust($color: wal.$foreground, $lightness: 15%);
@include mixins.reset-props;
}
.button-row {
& > button {
background: color.scale($color: wal.$foreground, $lightness: -30%, $alpha: 70%);
margin: 0 1px;
border-radius: 2px;
&:hover {
background: color.scale($color: wal.$foreground, $lightness: -30%, $alpha: 100%);
}
&:first-child {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
&:last-child {
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
}
}
menu {
padding: 4px;
background: wal.$background;
border-radius: 14px;
& separator {
margin: 0 4px;
color: wal.$background;
}
& menuitem {
padding: 8px 0px;
border-radius: 10px;
font-size: 12px;
font-weight: 600;
&:hover {
background: wal.$color1;
}
}
window * {
@include mixins.default-styles;
}