feat: improve anyrun styling

This commit is contained in:
2023-12-17 00:07:57 +01:00
parent fcd347aba5
commit f082d6eb65

View File

@@ -126,6 +126,7 @@
]; ];
animation = [ animation = [
"specialWorkspace,1,4,default,fade" "specialWorkspace,1,4,default,fade"
"fade,1,1,default"
]; ];
decoration = { decoration = {
rounding = 20; rounding = 20;
@@ -161,7 +162,6 @@
shell shell
]; ];
y.fraction = 0.2; y.fraction = 0.2;
showResultsImmediately = true;
closeOnClick = true; closeOnClick = true;
}; };
extraCss = extraCss =
@@ -170,22 +170,29 @@
*/ */
'' ''
* { * {
font-family: "Noto Sans NF"; font-family: "NotoSans NF";
} }
window#window { window#window {
background: transparent; background: transparent;
} }
entry#entry, box#main {
list#main {
background: rgba(48, 52, 70, 0.4); background: rgba(48, 52, 70, 0.4);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.29); box-shadow: 0 0 15px rgba(0, 0, 0, 0.29);
border-radius: 24px;
}
entry#entry {
border: none;
box-shadow: none;
padding: 8px 24px;
} }
entry#entry, entry#entry,
list#main { list#main {
border-radius: 24px; border-radius: 24px;
background: transparent;
} }
row#match { row#match {
@@ -198,15 +205,6 @@
padding: 16px; padding: 16px;
} }
entry#entry {
padding: 8px 24px;
margin-bottom: 16px;
}
list#main {
padding: 8px;
}
list#plugin { list#plugin {
background: transparent; background: transparent;
} }