mod: walker

This commit is contained in:
kenji
2025-12-27 17:42:11 -06:00
parent 57333f3a73
commit a92d654fe0
3 changed files with 555 additions and 31 deletions
+11 -11
View File
@@ -11,7 +11,7 @@
popover {
background: lighter(@window_bg_color);
border: 1px solid darker(@accent_bg_color);
border-radius: 18px;
border-radius: 0px; /* Square */
padding: 10px;
}
@@ -28,13 +28,12 @@ scrollbar {
}
.box-wrapper {
box-shadow:
0 19px 38px rgba(0, 0, 0, 0.3),
0 15px 12px rgba(0, 0, 0, 0.22);
/* Simple: Removed complex drop shadow */
box-shadow: none;
background: @window_bg_color;
padding: 20px;
border-radius: 20px;
border: 1px solid darker(@accent_bg_color);
border-radius: 0px; /* Square */
border: 2px solid @accent_bg_color; /* Slightly thicker border for definition */
}
.preview-box,
@@ -47,7 +46,7 @@ scrollbar {
}
.search-container {
border-radius: 10px;
border-radius: 0px; /* Square */
}
.input placeholder {
@@ -63,6 +62,7 @@ scrollbar {
background: lighter(@window_bg_color);
padding: 10px;
color: @theme_fg_color;
border-bottom: 1px solid alpha(@theme_fg_color, 0.1); /* Simple separator instead of radius */
}
.input:focus,
@@ -86,13 +86,13 @@ child {
}
.item-box {
border-radius: 10px;
border-radius: 0px; /* Square */
padding: 10px;
}
.item-quick-activation {
background: alpha(@accent_bg_color, 0.25);
border-radius: 5px;
border-radius: 0px; /* Square */
padding: 10px;
}
@@ -121,7 +121,7 @@ child:selected .item-box {
.preview {
border: 1px solid alpha(@accent_bg_color, 0.25);
/* padding: 10px; */
border-radius: 10px;
border-radius: 0px; /* Square */
color: @theme_fg_color;
}
@@ -188,7 +188,7 @@ child:selected .item-box {
.keybind-label {
padding: 2px 4px;
border-radius: 4px;
border-radius: 0px; /* Square */
border: 1px solid @theme_fg_color;
}