1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-20 02:48:51 +00:00
Files
seahub/frontend/src/css/review-comment-dialog.css

44 lines
968 B
CSS
Raw Normal View History

2018-11-28 17:03:44 +08:00
.review-comment-dialog {
2018-12-06 17:56:31 +08:00
width: 500px;
2018-11-28 17:03:44 +08:00
position: absolute;
2018-12-06 17:56:31 +08:00
top: 30%;
2018-11-28 17:03:44 +08:00
right: 0;
2018-12-08 12:13:02 +08:00
padding: 15px;
2018-11-28 17:03:44 +08:00
background-color: #fafafa;
border: 1px solid rgba(0,0,0,.2);
border-radius: .3rem;
2018-12-06 17:56:31 +08:00
box-shadow: 0 0 3px #ccc;
2018-12-26 11:30:37 +08:00
z-index: 1000;
2018-11-28 17:03:44 +08:00
}
.review-comment-dialog-triangle {
position: absolute;
2018-12-03 23:11:01 +08:00
left: -5px;
2018-11-28 17:03:44 +08:00
top: 50%;
transform: rotate(45deg);
border: 1px solid rgba(0,0,0,.2);
border-top: none;
border-right: none;
width: 10px;
height: 10px;
2018-12-03 23:11:01 +08:00
background-color: #fafafa;
2018-12-06 17:56:31 +08:00
box-shadow: -1px 1px #ccc;
2018-11-28 17:03:44 +08:00
}
.review-comment-dialog textarea {
width: 100%;
2018-12-08 12:13:02 +08:00
min-height: 100px;
2018-12-06 17:56:31 +08:00
max-height: 300px;
2018-12-26 11:30:37 +08:00
padding: 5px;
2018-11-28 17:03:44 +08:00
}
.review-comment-dialog .button-group .btn {
margin-right: 10px;
2018-12-08 12:13:02 +08:00
}
.review-comment-dialog .review-comment-dialog-quote {
margin-top: 10px;
2018-12-13 14:30:45 +08:00
max-height: 6rem;
overflow: auto;
2018-12-26 11:30:37 +08:00
padding-left: 1rem;
}
.review-comment-dialog .review-comment-dialog-quote ul,
.review-comment-dialog .review-comment-dialog-quote ol {
padding-left: 1rem;
2018-11-28 17:03:44 +08:00
}