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

33 lines
667 B
CSS
Raw Normal View History

2018-11-28 17:03:44 +08:00
.review-comment-dialog {
width: 300px;
position: absolute;
top: 200px;
right: 0;
padding: 10px;
background-color: #fafafa;
background-clip: padding-box;
border: 1px solid rgba(0,0,0,.2);
border-radius: .3rem;
outline: 0;
}
.review-comment-dialog-triangle {
position: absolute;
left: -6px;
top: 50%;
transform: rotate(45deg);
border: 1px solid rgba(0,0,0,.2);
border-top: none;
border-right: none;
width: 10px;
height: 10px;
z-index: 1001;
background-color: #fff;
}
.review-comment-dialog textarea {
width: 100%;
min-height: 100px;
max-height: 200px;
}
.review-comment-dialog .button-group .btn {
margin-right: 10px;
}