Files
dotfiles/wofi/style.css
T
funman300 b0daea2a73 waybar: fix GTK3 CSS variables, pin timezone, adjust screenshot keybind
- theme/colors.css: replace CSS custom properties (--var) with GTK3
  @define-color — GTK3 CSS parser rejects -- syntax, crashing waybar
- waybar/style.css, wofi/style.css, gtklock/style.css: update var(--x)
  references to @x to match
- waybar/config.jsonc: pin clock timezone to America/Vancouver
- niri/config.kdl: change Print to Mod+Print for screenshot keybind

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-28 11:38:48 -07:00

68 lines
934 B
CSS

@import url("../theme/colors.css");
* {
font-family: JetBrainsMono Nerd Font;
font-size: 14px;
}
window {
background-color: @tn-bg-a96;
border: 1px solid @tn-bg-high;
border-radius: 12px;
color: @tn-fg;
}
#input {
background-color: @tn-bg-alt;
color: @tn-fg;
border: 1px solid @tn-bg-high;
border-radius: 8px;
padding: 10px 14px;
margin: 12px 12px 6px 12px;
outline: none;
font-size: 15px;
caret-color: @tn-blue;
}
#input:focus {
border-color: @tn-blue;
}
#inner-box {
background-color: transparent;
}
#outer-box {
padding: 6px;
}
#scroll {
margin: 4px 6px 8px 6px;
}
#entry {
padding: 8px 14px;
border-radius: 8px;
margin: 2px 0;
transition: all 150ms ease;
}
#entry:selected {
background-color: @tn-bg-alt;
border: 1px solid @tn-blue;
outline: none;
}
#text {
color: @tn-fg;
}
#text:selected {
color: @tn-blue;
font-weight: bold;
}
#img {
margin-right: 8px;
}