chore(binto ags): update code to latest wim changes
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-01-02 23:26:52 -05:00
parent 89a83a9881
commit 5e4e626eab
2 changed files with 16 additions and 13 deletions

View file

@ -10,7 +10,8 @@ import Powermenu from 'file:///home/matt/.nix/devices/wim/config/ags/js/powermen
const scss = App.configDir + '/scss/main.scss'; const scss = App.configDir + '/scss/main.scss';
const css = App.configDir + '/style.css'; const css = App.configDir + '/style.css';
exec(`sassc ${scss} ${css}`); exec(`sassc ${scss} ${css}`)
const closeWinDelay = 800;;
export default { export default {
@ -24,9 +25,9 @@ export default {
}, },
closeWindowDelay: { closeWindowDelay: {
'applauncher': 500, 'applauncher': closeWinDelay,
'notification-center': 500, 'notification-center': closeWinDelay,
'powermenu': 500, 'powermenu': closeWinDelay,
}, },
windows: [ windows: [
AppLauncher(), AppLauncher(),

View file

@ -17,21 +17,23 @@
font-size: 22px; font-size: 22px;
} }
button { .clear {
all: unset; box {
transition: 200ms; all: unset;
color: #eee; transition: 200ms;
background-color: #664C90; color: #eee;
box-shadow: inset 0 0 0 1px rgba(238, 238, 238, 0.03); background-color: #664C90;
padding: 4.5px 9px; box-shadow: inset 0 0 0 1px rgba(238, 238, 238, 0.03);
padding: 4.5px 9px;
}
&:hover { &.hover box {
box-shadow: inset 0 0 0 1px rgba(238, 238, 238, 0.03); box-shadow: inset 0 0 0 1px rgba(238, 238, 238, 0.03);
background-color: rgba(238, 238, 238, 0.154); background-color: rgba(238, 238, 238, 0.154);
color: #f1f1f1; color: #f1f1f1;
} }
&:disabled { &.disabled box {
box-shadow: none; box-shadow: none;
background-color: rgba(#664C90, 0.3); background-color: rgba(#664C90, 0.3);
color: rgba(238, 238, 238, 0.3); color: rgba(238, 238, 238, 0.3);