fix(themes): correct rofi border syntax for new themes
All checks were successful
Check / eval (push) Successful in 3m8s
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:
@@ -16,7 +16,8 @@ window {
|
||||
width: 600px;
|
||||
/* transparent base with slight tint */
|
||||
background-color: rgba(11, 14, 20, 0.45);
|
||||
border: 1px solid rgba(0, 240, 255, 0.3);
|
||||
border: 1px;
|
||||
border-color: rgba(0, 240, 255, 0.3);
|
||||
border-radius: 24px;
|
||||
padding: 24px;
|
||||
/* Blur would be applied via hyprland layerrule for rofi */
|
||||
@@ -28,7 +29,8 @@ mainbox {
|
||||
|
||||
inputbar {
|
||||
background-color: rgba(21, 26, 34, 0.5);
|
||||
border: 1px solid rgba(0, 240, 255, 0.5);
|
||||
border: 1px;
|
||||
border-color: rgba(0, 240, 255, 0.5);
|
||||
border-radius: 12px;
|
||||
padding: 12px 16px;
|
||||
spacing: 12px;
|
||||
@@ -63,7 +65,8 @@ element normal.normal, element alternate.normal {
|
||||
|
||||
element selected.normal {
|
||||
background-color: rgba(0, 240, 255, 0.15);
|
||||
border: 1px solid rgba(0, 240, 255, 0.4);
|
||||
border: 1px;
|
||||
border-color: rgba(0, 240, 255, 0.4);
|
||||
text-color: var(accent, #00F0FF);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user