summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2019-01-29 21:46:40 +0100
committerDave Davenport <qball@gmpclient.org>2019-01-29 21:46:40 +0100
commit205381846637426dfe9a30056bac9df47503532a (patch)
tree1fd055309178294a4f2d0522586c2dfe4f6470fd
parent40da1b25e2e31ccb8c782b8bc73203a88d30d035 (diff)
[Themes] Re-fix sidebar theme to not go fullscreen.
-rw-r--r--themes/sidebar.rasi26
1 files changed, 4 insertions, 22 deletions
diff --git a/themes/sidebar.rasi b/themes/sidebar.rasi
index 1d71a9b3..68e4e87b 100644
--- a/themes/sidebar.rasi
+++ b/themes/sidebar.rasi
@@ -42,32 +42,23 @@
highlight: bold #ffffff;
}
#window {
- fullscreen: true;
+ height: 100%;
+ width: 30em;
location: west;
anchor: west;
border: 0px 2px 0px 0px;
text-color: @lightwhite;
-
- orientation: horizontal;
- children: [mainbox, dummy];
-}
-
-#dummy {
- expand: true;
}
#sidebar {
border: 2px 0px 0px 0px;
background-color: @lightblack;
- padding: 10px;
+ padding: 4px;
}
#button selected {
border-color: @lightgreen;
text-color: @lightgreen;
}
-#entry {
- width: 20em;
-}
#inputbar {
background-color: @lightblack;
text-color: @lightgreen;
@@ -75,7 +66,7 @@
border: 0px 0px 2px 0px;
}
#mainbox {
- expand: false;
+ expand: true;
background-color: #1c1c1cee;
spacing: 1em;
}
@@ -109,12 +100,3 @@
background-color: @lightred;
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;
-}