Add extra margin between prompt and entry.

This commit is contained in:
Dave Davenport 2017-10-31 09:51:00 +01:00
parent 1dccdb302e
commit 0bb64cf1ad
4 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,6 @@
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.
- Better error message on invalid argb syntax.
- Fix default theme border.

View File

@ -113,7 +113,7 @@
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
spacing: 3px ;
text-color: @normal-foreground;
padding: 1px ;
}

View File

@ -113,7 +113,7 @@
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
spacing: 3px ;
text-color: @normal-foreground;
padding: 1px ;
}

View File

@ -140,5 +140,6 @@ const char *default_theme =
"#inputbar, case-indicator, entry, prompt, button {"
" spacing: 0;"
" text-color: @normal-foreground;"
"}";
"}"
"#inputbar { spacing: 3px; }";
#endif