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 css = App.configDir + '/style.css';
exec(`sassc ${scss} ${css}`);
exec(`sassc ${scss} ${css}`)
const closeWinDelay = 800;;
export default {
@ -24,9 +25,9 @@ export default {
},
closeWindowDelay: {
'applauncher': 500,
'notification-center': 500,
'powermenu': 500,
'applauncher': closeWinDelay,
'notification-center': closeWinDelay,
'powermenu': closeWinDelay,
},
windows: [
AppLauncher(),

View file

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