aboutsummaryrefslogtreecommitdiff
path: root/resources/css/style.css
blob: 1bd39ea017d1fb6628be9921a0798db0c14e533c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.flap-background {
	background-color: @theme_bg_color;
}

.chat-entry {
	padding: 4px;
}

.message-box {
	border-radius: 12px;
	padding: 8px 12px;
	margin: 4px;
	font-size: small;
}

.message-box:not(.own) {
	background-color: mix(@theme_bg_color, @theme_fg_color, 0.1);
	color: @theme_fg_color;
	margin-right: 20px;
}

.message-box.own {
	background-color: @theme_selected_bg_color;
	color: @theme_selected_fg_color;
	margin-left: 20px;
}