summaryrefslogtreecommitdiffstats
path: root/themes/sidebar.rasi
diff options
context:
space:
mode:
Diffstat (limited to 'themes/sidebar.rasi')
-rw-r--r--themes/sidebar.rasi26
1 files changed, 22 insertions, 4 deletions
diff --git a/themes/sidebar.rasi b/themes/sidebar.rasi
index 68e4e87b..1d71a9b3 100644
--- a/themes/sidebar.rasi
+++ b/themes/sidebar.rasi
@@ -42,23 +42,32 @@
highlight: bold #ffffff;
}
#window {
- height: 100%;
- width: 30em;
+ fullscreen: true;
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: 4px;
+ padding: 10px;
}
#button selected {
border-color: @lightgreen;
text-color: @lightgreen;
}
+#entry {
+ width: 20em;
+}
#inputbar {
background-color: @lightblack;
text-color: @lightgreen;
@@ -66,7 +75,7 @@
border: 0px 0px 2px 0px;
}
#mainbox {
- expand: true;
+ expand: false;
background-color: #1c1c1cee;
spacing: 1em;
}
@@ -100,3 +109,12 @@
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;
+}