[Themes] Re-fix sidebar theme to not go fullscreen.

This commit is contained in:
Dave Davenport 2019-01-29 21:46:40 +01:00
parent 40da1b25e2
commit 2053818466
1 changed files with 4 additions and 22 deletions

View File

@ -42,32 +42,23 @@
highlight: bold #ffffff; highlight: bold #ffffff;
} }
#window { #window {
fullscreen: true; height: 100%;
width: 30em;
location: west; location: west;
anchor: west; anchor: west;
border: 0px 2px 0px 0px; border: 0px 2px 0px 0px;
text-color: @lightwhite; text-color: @lightwhite;
orientation: horizontal;
children: [mainbox, dummy];
}
#dummy {
expand: true;
} }
#sidebar { #sidebar {
border: 2px 0px 0px 0px; border: 2px 0px 0px 0px;
background-color: @lightblack; background-color: @lightblack;
padding: 10px; padding: 4px;
} }
#button selected { #button selected {
border-color: @lightgreen; border-color: @lightgreen;
text-color: @lightgreen; text-color: @lightgreen;
} }
#entry {
width: 20em;
}
#inputbar { #inputbar {
background-color: @lightblack; background-color: @lightblack;
text-color: @lightgreen; text-color: @lightgreen;
@ -75,7 +66,7 @@
border: 0px 0px 2px 0px; border: 0px 0px 2px 0px;
} }
#mainbox { #mainbox {
expand: false; expand: true;
background-color: #1c1c1cee; background-color: #1c1c1cee;
spacing: 1em; spacing: 1em;
} }
@ -109,12 +100,3 @@
background-color: @lightred; background-color: @lightred;
text-color: @dark; text-color: @dark;
} }
#inputbar {
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
#textbox-prompt-colon {
expand: false;
str: ":";
margin: 0px 0.3em 0em 0em ;
text-color: @normal-foreground;
}