aboutsummaryrefslogtreecommitdiff
path: root/resources/css/style.css
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2021-10-28 15:38:24 +0200
committerTheJackiMonster <thejackimonster@gmail.com>2021-10-28 15:38:24 +0200
commit184431dab83821d1a8cb01a2ad62e018276f2be5 (patch)
treec9ac11cceb74ce8185ef2fe2a7b780784bb9b51a /resources/css/style.css
parent7b10b8c90d4bf3d2922f4c1d0eba779ced28be7f (diff)
downloadmessenger-gtk-184431dab83821d1a8cb01a2ad62e018276f2be5.tar.gz
messenger-gtk-184431dab83821d1a8cb01a2ad62e018276f2be5.zip
Setup some test data in ui to visualize the target
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat (limited to 'resources/css/style.css')
-rw-r--r--resources/css/style.css22
1 files changed, 22 insertions, 0 deletions
diff --git a/resources/css/style.css b/resources/css/style.css
index f46cb9d..1bd39ea 100644
--- a/resources/css/style.css
+++ b/resources/css/style.css
@@ -3,3 +3,25 @@
3 background-color: @theme_bg_color; 3 background-color: @theme_bg_color;
4} 4}
5 5
6.chat-entry {
7 padding: 4px;
8}
9
10.message-box {
11 border-radius: 12px;
12 padding: 8px 12px;
13 margin: 4px;
14 font-size: small;
15}
16
17.message-box:not(.own) {
18 background-color: mix(@theme_bg_color, @theme_fg_color, 0.1);
19 color: @theme_fg_color;
20 margin-right: 20px;
21}
22
23.message-box.own {
24 background-color: @theme_selected_bg_color;
25 color: @theme_selected_fg_color;
26 margin-left: 20px;
27}