fix(themes): correct rofi border syntax for new themes
All checks were successful
Check / eval (push) Successful in 3m8s

Rofi expects border width and border-color to be separated, the CSS shorthand is not supported.
This commit is contained in:
2026-07-06 18:53:08 +01:00
parent 801ffa4e24
commit 825b7e25a4
2 changed files with 11 additions and 6 deletions

View File

@@ -12,7 +12,8 @@
window {
width: 600px;
background-color: var(base, #1A1D24);
border: 1px solid var(overlay, #333947);
border: 1px;
border-color: var(overlay, #333947);
border-radius: 4px;
padding: 16px;
}
@@ -23,7 +24,8 @@ mainbox {
inputbar {
background-color: var(surface, #232731);
border: 1px solid var(overlay, #333947);
border: 1px;
border-color: var(overlay, #333947);
border-radius: 4px;
padding: 10px 14px;
spacing: 10px;
@@ -60,7 +62,7 @@ element normal.normal, element alternate.normal {
element selected.normal {
background-color: var(surface, #232731);
text-color: var(text, #D4DAE8);
border: 0 0 0 4px solid;
border: 0 0 0 4px;
border-color: var(accent, #4D78CC);
}