mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Add extra margin between prompt and entry.
This commit is contained in:
parent
1dccdb302e
commit
0bb64cf1ad
4 changed files with 6 additions and 3 deletions
|
@ -1,4 +1,6 @@
|
||||||
v1.4.3 (dev):
|
v1.4.3 (dev):
|
||||||
|
- Add extra margin between prompt and entry.
|
||||||
|
- Remove colon from prompt. (#637)
|
||||||
- Add support for passing extra properties in script mode.
|
- Add support for passing extra properties in script mode.
|
||||||
- Better error message on invalid argb syntax.
|
- Better error message on invalid argb syntax.
|
||||||
- Fix default theme border.
|
- Fix default theme border.
|
||||||
|
|
|
@ -113,7 +113,7 @@
|
||||||
text-color: @selected-normal-foreground;
|
text-color: @selected-normal-foreground;
|
||||||
}
|
}
|
||||||
#inputbar {
|
#inputbar {
|
||||||
spacing: 0;
|
spacing: 3px ;
|
||||||
text-color: @normal-foreground;
|
text-color: @normal-foreground;
|
||||||
padding: 1px ;
|
padding: 1px ;
|
||||||
}
|
}
|
||||||
|
|
|
@ -113,7 +113,7 @@
|
||||||
text-color: @selected-normal-foreground;
|
text-color: @selected-normal-foreground;
|
||||||
}
|
}
|
||||||
#inputbar {
|
#inputbar {
|
||||||
spacing: 0;
|
spacing: 3px ;
|
||||||
text-color: @normal-foreground;
|
text-color: @normal-foreground;
|
||||||
padding: 1px ;
|
padding: 1px ;
|
||||||
}
|
}
|
||||||
|
|
|
@ -140,5 +140,6 @@ const char *default_theme =
|
||||||
"#inputbar, case-indicator, entry, prompt, button {"
|
"#inputbar, case-indicator, entry, prompt, button {"
|
||||||
" spacing: 0;"
|
" spacing: 0;"
|
||||||
" text-color: @normal-foreground;"
|
" text-color: @normal-foreground;"
|
||||||
"}";
|
"}"
|
||||||
|
"#inputbar { spacing: 3px; }";
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue