feat: disabled some hints

This commit is contained in:
kenji
2025-12-26 13:05:38 -06:00
parent 2049c94a1c
commit 4ce7ab874f
2 changed files with 45 additions and 22 deletions
+1 -2
View File
@@ -18,6 +18,7 @@
# CSS Implementation using Stylix Colors # CSS Implementation using Stylix Colors
config = { config = {
hide_action_hints = true;
icons.theme = config.gtk.iconTheme.name; icons.theme = config.gtk.iconTheme.name;
placeholders.default = { placeholders.default = {
@@ -35,8 +36,6 @@
prefix = "_"; prefix = "_";
} }
]; ];
keybinds.quick_activate = ["F1" "F2" "F3"];
}; };
}; };
} }
+44 -20
View File
@@ -4,10 +4,14 @@
in { in {
programs.walker = { programs.walker = {
theme.style = '' theme.style = ''
* {
all: unset;
}
* { * {
font-family: monospace; font-family: monospace;
font-size: 18px; font-size: 18px;
color: ${colors.base05}; /* Text */ color: ${colors.base05};
} }
scrollbar { scrollbar {
@@ -23,26 +27,27 @@ in {
} }
.box-wrapper { .box-wrapper {
background: ${colors.base00}; /* Surface0/Base */ background: alpha(${colors.base00}, 0.95);
padding: 20px; padding: 20px;
border: 2px solid ${colors.base0E}; /* Lavender/Accent Border */ border: 2px solid ${colors.base0E};
border-radius: 12px; }
.preview-box {
}
.box {
} }
.search-container { .search-container {
background: ${colors.base01}; /* Surface1 */ background: ${colors.base00};
padding: 10px; padding: 10px;
border-radius: 8px;
margin-bottom: 10px;
} }
.input placeholder { .input placeholder {
opacity: 0.5; opacity: 0.5;
color: ${colors.base03};
} }
.input { .input {
color: ${colors.base05};
} }
.input:focus, .input:focus,
@@ -51,31 +56,49 @@ in {
outline: none; outline: none;
} }
.content-container {
}
.placeholder {
}
.scroll {
}
.list {
}
child,
child > * {
}
child:hover .item-box { child:hover .item-box {
background: ${colors.base02}; /* Surface2/Selection wrapper */
border-radius: 8px;
} }
child:selected .item-box { child:selected .item-box {
background: ${colors.base0E}; /* Lavender selection */
border-radius: 8px;
} }
child:selected .item-box * { child:selected .item-box * {
color: ${colors.base00}; /* Text becomes dark on accent background */ color: ${colors.base0D};
} }
.item-box { .item-box {
padding: 5px 14px; padding-left: 14px;
} }
.item-text-box { .item-text-box {
padding: 5px 0; all: unset;
padding: 14px 0;
}
.item-text {
} }
.item-subtext { .item-subtext {
font-size: 12px; font-size: 0px;
opacity: 0.7; min-height: 0px;
margin: 0px;
padding: 0px;
} }
.item-image { .item-image {
@@ -91,8 +114,9 @@ in {
background: ${colors.base01}; background: ${colors.base01};
padding: 10px; padding: 10px;
margin-top: 10px; margin-top: 10px;
border-radius: 8px; }
color: ${colors.base0E};
.preview {
} }
''; '';
}; };