mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-25 23:02:26 +00:00
123 lines
3.1 KiB
CSS
123 lines
3.1 KiB
CSS
![]() |
.seafile-comment {
|
||
|
border-left: 1px solid #e6e6dd;
|
||
|
background-color: #fff;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
flex: 0 0 auto;
|
||
|
min-height: 18.5em;
|
||
|
width: 30em;
|
||
|
}
|
||
|
.seafile-comment-title {
|
||
|
border-bottom: 1px solid #e5e5e5;
|
||
|
min-height: 3em;
|
||
|
line-height: 3em;
|
||
|
padding: 0 1em;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: space-between;
|
||
|
background-color: #fafaf9;
|
||
|
}
|
||
|
.seafile-comment-title .seafile-comment-title-text {
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
font-weight: 700;
|
||
|
}
|
||
|
.seafile-comment-title .seafile-comment-title-close {
|
||
|
color: #b9b9b9;
|
||
|
}
|
||
|
.seafile-comment-title .seafile-comment-title-close:hover {
|
||
|
color: #888;
|
||
|
}
|
||
|
.seafile-comment-list {
|
||
|
height: calc(100% - 40px);
|
||
|
overflow-y: auto;
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
.seafile-comment .loading-icon {
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
.seafile-comment-list .comment-vacant {
|
||
|
padding: 1em;
|
||
|
text-align: center;
|
||
|
}
|
||
|
.seafile-comment-item {
|
||
|
overflow-y: auto;
|
||
|
padding: 15px 10px;
|
||
|
overflow-y: hidden;
|
||
|
}
|
||
|
.seafile-comment-item .seafile-comment-info {
|
||
|
padding-bottom: 0.5em;
|
||
|
height: 3em;
|
||
|
display: flex;
|
||
|
justify-content: flex-start;
|
||
|
}
|
||
|
.seafile-comment-item .seafile-comment-info .reviewer-head {
|
||
|
margin-top: .3em;
|
||
|
}
|
||
|
.seafile-comment-item .seafile-comment-info .reviewer-info {
|
||
|
padding-left: 10px;
|
||
|
}
|
||
|
.seafile-comment-item .seafile-comment-info .review-time {
|
||
|
font-size: .6em;
|
||
|
color: #777;
|
||
|
}
|
||
|
.seafile-comment-item .seafile-comment-info .seafile-comment-dropdown {
|
||
|
margin-left: auto;
|
||
|
}
|
||
|
.seafile-comment-item .seafile-comment-info .seafile-comment-dropdown button,
|
||
|
.seafile-comment-item .seafile-comment-info .seafile-comment-dropdown button:hover,
|
||
|
.seafile-comment-item .seafile-comment-info .seafile-comment-dropdown button:focus
|
||
|
{
|
||
|
border: none;
|
||
|
box-shadow: none;
|
||
|
background-color: #fff;
|
||
|
height: 100%;
|
||
|
}
|
||
|
.seafile-comment-item .seafile-comment-info.seafile-comment-dropdown .seafile-comment-dropdown-btn {
|
||
|
color: #999;
|
||
|
}
|
||
|
.seafile-comment-item .seafile-comment-info .seafile-comment-dropdown:hover .seafile-comment-dropdown-btn {
|
||
|
color: #555;
|
||
|
}
|
||
|
.seafile-comment-item .seafile-comment-content {
|
||
|
margin-left: 42px;
|
||
|
}
|
||
|
.seafile-comment-item .seafile-comment-content ol,
|
||
|
.seafile-comment-item .seafile-comment-content ul,
|
||
|
.seafile-comment-item .seafile-comment-content li {
|
||
|
margin-left: 10px;
|
||
|
}
|
||
|
.seafile-comment-item .seafile-comment-content table,
|
||
|
.seafile-comment-item .seafile-comment-content th,
|
||
|
.seafile-comment-item .seafile-comment-content td {
|
||
|
border: 1px solid #333;
|
||
|
}
|
||
|
.seafile-comment-footer {
|
||
|
background-color: #fafaf9;
|
||
|
padding: 10px;
|
||
|
border-top: 1px solid #e5e5e5;
|
||
|
display: flex;
|
||
|
justify-content: flex-start;
|
||
|
min-height: 150px;
|
||
|
}
|
||
|
.seafile-comment-footer .seafile-add-comment {
|
||
|
margin-left: 10px;
|
||
|
overflow: hidden;
|
||
|
width: 25em;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
.seafile-comment-footer .seafile-add-comment .add-comment-input {
|
||
|
box-sizing: border-box;
|
||
|
background-color: #fff;
|
||
|
border: 1px solid #e6e6dd;
|
||
|
padding: 5px;
|
||
|
width: 25em;
|
||
|
min-height: 90px;
|
||
|
}
|
||
|
.seafile-comment-footer .seafile-add-comment .submit-comment {
|
||
|
margin-top: 5px;
|
||
|
width: 60px;
|
||
|
height: 28px;
|
||
|
min-height: 28px;
|
||
|
}
|