Greatly simplify rofi stylesheet
Noticed rofi wasn't handling selection highlights properly any more. In troubleshooting found the stylesheet was massively over-complicated since it was a copy of a less simple stylesheet in its origins. Simplified and fixed the bug.
This commit is contained in:
parent
bc476def8b
commit
7657770a22
1 changed files with 18 additions and 38 deletions
|
@ -22,9 +22,6 @@
|
|||
|
||||
* {
|
||||
background-color: @base00;
|
||||
alt-background-color: @base01;
|
||||
urgent-background-color: @base08;
|
||||
urgent-text-color: @base00;
|
||||
text-color: @base05;
|
||||
border-color: @base02;
|
||||
spacing: 2;
|
||||
|
@ -34,18 +31,21 @@ window {
|
|||
border: 1;
|
||||
padding: 5;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
message {
|
||||
border: 1px dash 0px 0px ;
|
||||
padding: 1px ;
|
||||
}
|
||||
|
||||
textbox {
|
||||
background-color: @alt-background-color;
|
||||
border: 2px solid;
|
||||
background-color: @background-color;
|
||||
}
|
||||
|
||||
listview {
|
||||
fixed-height: 0;
|
||||
border: 0;
|
||||
|
@ -53,61 +53,39 @@ listview {
|
|||
scrollbar: true;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
element {
|
||||
border: 0;
|
||||
padding: 1px ;
|
||||
padding: 1px;
|
||||
}
|
||||
element normal.normal {
|
||||
}
|
||||
element normal.urgent {
|
||||
background-color: @urgent-background-color;
|
||||
text-color: @urgent-text-color;
|
||||
}
|
||||
element normal.active {
|
||||
}
|
||||
element selected.normal {
|
||||
|
||||
selected {
|
||||
background-color: @border-color;
|
||||
}
|
||||
element selected.urgent {
|
||||
background-color: @text-color;
|
||||
text-color: @urgent-background-color;
|
||||
}
|
||||
element selected.active {
|
||||
background-color: @border-color;
|
||||
}
|
||||
element alternate.normal {
|
||||
}
|
||||
element alternate.urgent {
|
||||
background-color: @urgent-background-color;
|
||||
text-color: @urgent-text-color;
|
||||
}
|
||||
element alternate.active {
|
||||
}
|
||||
|
||||
scrollbar {
|
||||
width: 4px ;
|
||||
border: 0;
|
||||
handle-color: @text-color;
|
||||
handle-width: 8px ;
|
||||
padding: 0;
|
||||
padding: 2;
|
||||
}
|
||||
|
||||
sidebar {
|
||||
border: 2px dash 0px 0px ;
|
||||
border-color: @border-color;
|
||||
}
|
||||
|
||||
button {
|
||||
spacing: 0;
|
||||
}
|
||||
button selected {
|
||||
background-color: @selected-normal-background;
|
||||
text-color: @selected-normal-foreground;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
spacing: 0px;
|
||||
padding: 1px ;
|
||||
padding: 1px;
|
||||
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
|
||||
border: 2px solid;
|
||||
border-color: @selected-normal-background;
|
||||
}
|
||||
|
||||
case-indicator {
|
||||
spacing: 0;
|
||||
background-color: inherit;
|
||||
|
@ -117,10 +95,12 @@ entry {
|
|||
spacing: 0;
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
prompt {
|
||||
spacing: 0;
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
textbox-prompt-colon {
|
||||
expand: false;
|
||||
str: ":";
|
||||
|
|
Loading…
Add table
Reference in a new issue