Add changing avatar image to a previous one and display avatar names

This commit is contained in:
Natsumi
2021-04-03 13:59:12 +13:00
parent 816d9749a3
commit c473432de8
4 changed files with 198 additions and 48 deletions

View File

@@ -385,6 +385,27 @@ img.friends-list-avatar {
object-fit: cover;
}
.x-change-avatar-item {
cursor: pointer;
display: inline-block;
padding: 4px 4px 0 4px;
}
.x-change-avatar-item:hover {
background: #f0f0f0;
border-radius: 2px;
}
.x-change-avatar-item > img {
width: 240px;
height: 180px;
}
.current-avatar-image {
border: 2px solid #67c23a;
padding: 2px 2px 0 2px;
}
.x-dialog > .el-dialog {
max-width: 100%;
margin-bottom: 10px;