1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-25 14:50:29 +00:00

fix warnings and className

This commit is contained in:
Michael An
2019-06-28 10:23:22 +08:00
parent e382d40df8
commit 6eab883563
5 changed files with 61 additions and 23 deletions

View File

@@ -1,18 +1,58 @@
.file-participants {
/* participants-list */
.participants {
min-height: 30px;
}
.file-participants .avatar {
.participants .avatar {
width: 28px;
height: 28px;
border: 2px solid #fff;
}
.file-participants .add-file-participants {
.participants .add-participants {
position: absolute;
cursor: pointer;
}
.file-participants .add-file-participants i {
.participants .add-participants i {
font-size: 16px;
color: rgb(229, 162, 82);
border: 2px solid #fff;
border-radius: 50%;
}
}
/* file-participant-dialog */
.participant-add {
display: flex;
justify-content: space-between;
}
.participant-add .participant-select {
width: 385px;
}
.participant-add .btn {
width: 75px;
}
.participant-select-info {
margin-top: 10px;
display: flex;
align-items: center;
justify-content: space-between;
}
.participant-select-avatar {
margin-right: 10px;
}
.participant-select-name {
height: 2rem;
line-height: 2rem;
}
.participant-select-error {
margin-top: 1em;
}
.participant-select .true__dropdown-indicator, .participant-select .true__indicator-separator {
display: none;
}
.participant-select-info i {
opacity: 0;
margin-right: 10px;
}
.participant-select-info:hover i {
cursor: pointer;
opacity: 1;
color: #a4a4a4;
}