Better structuring of the wofi css

Reusing look for select menu and reducing theme duplication
This commit is contained in:
David Heinemeier Hansson
2025-07-07 11:37:50 -07:00
parent 6c1c829f86
commit 201d303c2c
10 changed files with 83 additions and 422 deletions

View File

@ -1,73 +1,3 @@
@define-color selected-text #fabd2f;
@define-color text #ebdbb2;
@define-color base #282828;
* {
font-family: 'CaskaydiaMono Nerd Font', monospace;
font-size: 18px;
}
window {
margin: 0px;
padding: 20px;
background-color: @base;
opacity: 0.95;
}
#inner-box {
margin: 0;
padding: 0;
border: none;
background-color: @base;
}
#outer-box {
margin: 0;
padding: 20px;
border: none;
background-color: @base;
}
#scroll {
margin: 0;
padding: 0;
border: none;
background-color: @base;
}
#input {
margin: 0;
padding: 10px;
border: none;
background-color: @base;
color: @text;
}
#input:focus {
outline: none;
box-shadow: none;
border: none;
}
#text {
margin: 5px;
border: none;
color: @text;
}
#entry {
background-color: @base;
}
#entry:selected {
outline: none;
border: none;
}
#entry:selected #text {
color: @selected-text;
}
#entry image {
-gtk-icon-transform: scale(0.7);
}