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