aboutsummaryrefslogtreecommitdiff
path: root/resources/css/style.css
blob: 4dd8ea43ed35f3f1310d83f9afc7c48782ff8948 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
.flap-background {
	background-color: @theme_bg_color;
}

.profile-entry {
	padding: 4px 20px;
}

.chat-entry {
	padding: 4px;
}

.message-avatar {
	margin: 4px;
}

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

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

.message-box.sent {
	background-color: @theme_selected_bg_color;
	color: @theme_selected_fg_color;
}

.message-box.sent, .message-box.status {
	margin-left: 20px;
}

.message-content:not(.status) {
	padding-top: 4px;
}

.message-box.status > .message-content {
	padding: 2px 12px;
}

.settings-entry {
	margin: 8px;
}