feat: try out walker

This commit is contained in:
Barrett Ruth 2026-02-14 10:50:20 -05:00
parent 8952984da2
commit baa0921be0
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
8 changed files with 152 additions and 3 deletions

View file

@ -0,0 +1,61 @@
* {
font-family: "SF Pro Display", sans-serif;
font-size: 16px;
}
window {
background: transparent;
}
#box {
background: #f5f5f5;
border: 2px solid #e8e8e8;
border-radius: 0;
}
#search {
background: #f5f5f5;
border-radius: 0;
}
#input {
background: #f5f5f5;
color: #1a1a1a;
border-radius: 0;
padding: 10px;
}
#input:focus {
outline: none;
box-shadow: none;
}
#list {
background: #f5f5f5;
}
row {
padding: 6px 10px;
background: #f5f5f5;
color: #1a1a1a;
border-radius: 0;
}
row:selected {
background: #ebebeb;
color: #1a1a1a;
}
.activation-label {
color: #999999;
}
#typeahead {
color: #999999;
background: transparent;
}
scrollbar,
scrollbar slider {
opacity: 0;
}

View file

@ -0,0 +1,61 @@
* {
font-family: "SF Pro Display", sans-serif;
font-size: 16px;
}
window {
background: transparent;
}
#box {
background: #121212;
border: 2px solid #3d3d3d;
border-radius: 0;
}
#search {
background: #121212;
border-radius: 0;
}
#input {
background: #121212;
color: #e0e0e0;
border-radius: 0;
padding: 10px;
}
#input:focus {
outline: none;
box-shadow: none;
}
#list {
background: #121212;
}
row {
padding: 6px 10px;
background: #121212;
color: #e0e0e0;
border-radius: 0;
}
row:selected {
background: #2d2d2d;
color: #e0e0e0;
}
.activation-label {
color: #666666;
}
#typeahead {
color: #666666;
background: transparent;
}
scrollbar,
scrollbar slider {
opacity: 0;
}