Added reporting feature

This commit is contained in:
2021-03-24 03:22:16 +11:00
parent ff0230b77f
commit 4fa54668e6
2 changed files with 36 additions and 6 deletions
+21 -2
View File
@@ -45,11 +45,30 @@
min-height: 300px;
}
.chat > .log .username {
.chat > .log > .scrollable > .line {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.chat > .log > .scrollable > .line > .report {
color: red;
display: none;
}
.chat > .log > .scrollable > .line:hover {
background-color: #BBB;
}
.chat > .log > .scrollable > .line:hover > .report {
display: flex;
}
.chat > .log > .scrollable > .line > .content > .username {
font-weight: bold;
}
.chat .scrollable {
.chat > .log > .scrollable {
margin: 0;
padding: 10px;
min-height: 280px;