BookStack/resources/assets/sass/_comments.scss

83 lines
1.4 KiB
SCSS
Raw Normal View History

2017-04-18 19:54:33 +00:00
.comments-list {
.comment-box {
border-bottom: 1px solid $comment-border;
}
2017-04-18 19:54:33 +00:00
.comment-box:last-child {
border-bottom: 0px;
}
2017-04-18 19:54:33 +00:00
}
.page-comment {
2017-04-18 19:54:33 +00:00
.comment-container {
margin-left: 42px;
}
2017-04-18 19:54:33 +00:00
.comment-actions {
font-size: 0.8em;
padding-bottom: 2px;
2017-04-18 19:54:33 +00:00
ul {
padding-left: 0px;
margin-bottom: 2px;
2017-04-18 19:54:33 +00:00
}
li {
float: left;
list-style-type: none;
}
2017-04-18 19:54:33 +00:00
li:after {
content: '';
color: #707070;
padding: 0 5px;
font-size: 1em;
}
2017-04-18 19:54:33 +00:00
li:last-child:after {
content: none;
}
}
.comment-actions {
border-bottom: 1px solid #DDD;
}
.comment-actions:last-child {
border-bottom: 0px;
}
2017-04-18 19:54:33 +00:00
.comment-header {
font-size: 1.25em;
margin-top: 0.6em;
}
.comment-body p {
margin-bottom: 1em;
2017-04-18 19:54:33 +00:00
}
.comment-inactive {
font-style: italic;
font-size: 0.85em;
padding-top: 5px;
}
2017-04-18 19:54:33 +00:00
.user-image {
float: left;
margin-right: 10px;
width: 32px;
img {
width: 100%;
}
}
2017-04-18 19:54:33 +00:00
}
.comment-editor {
margin-top: 2em;
2017-05-02 21:12:04 +00:00
textarea {
display: block;
width: 100%;
max-width: 100%;
min-height: 120px;
}
2017-04-18 19:54:33 +00:00
}