rounded-common.rasi
1* {
2 font: "Roboto 11";
3 background-color: transparent;
4 text-color: @fg0;
5 margin: 0px;
6 padding: 0px;
7 highlight: bold;
8 spacing: 0px;
9 width: 30%;
10 height: 30%;
11}
12
13window {
14 border-radius: 24px;
15 background-color: @bg02;
16 // background-color: transparent;
17
18}
19
20mainbox {
21 padding: 12px;
22 children: [inputbar, listview];
23}
24
25inputbar {
26 background-color: @bg1;
27 border-color: @bg3;
28
29 border: 2px;
30 border-radius: 16px;
31
32 padding: 8px 16px;
33 spacing: 8px;
34 children: [ prompt, entry ];
35}
36
37prompt {
38 text-color: @fg2;
39}
40
41entry {
42 placeholder: "Search";
43 placeholder-color: @fg3;
44}
45
46message {
47 margin: 12px 0 0;
48 border-radius: 16px;
49 border-color: @bg2;
50 background-color: @bg2;
51}
52
53textbox {
54 padding: 8px 24px;
55}
56
57listview {
58 background-color: transparent;
59 margin: 12px 0 0;
60 lines: 8;
61 columns: 1;
62 fixed-height: false;
63}
64
65element {
66 padding: 8px 16px;
67 spacing: 8px;
68 background-color: transparent;
69 border-radius: 16px;
70}
71
72element normal active {
73 text-color: @bg3;
74}
75
76element selected normal, element selected active {
77 background-color: @bg3;
78}
79
80element-icon {
81 size: 1em;
82 vertical-align: 0.5;
83}
84
85element-text {
86 text-color: inherit;
87}
88