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

32 lines
662 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;
padding: 10px;
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-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-06 17:56:31 +08:00
min-height: 200px;
max-height: 300px;
2018-11-28 17:03:44 +08:00
}
.review-comment-dialog .button-group .btn {
margin-right: 10px;
}