diaspora/app/assets/stylesheets/comments.scss
Steffen van Bergerem c7e3f2fc19 Adjust the SPV design
2016-02-23 09:20:54 +01:00

50 lines
1,002 B
SCSS

.comment_stream {
.show_comments {
margin-top: 5px;
border-top: 1px solid $border-grey;
a {
color: $text-grey;
font-size: 13px;
}
.media { margin-top: 10px; }
}
.comments > .comment,
.comment.new-comment-form-wrapper {
.avatar {
height: 35px;
width: 35px;
}
margin: 0;
border-top: 1px dotted $border-grey;
padding: 10px 0;
.info {
margin-top: 5px;
font-size: $font-size-small;
line-height: $font-size-small;
}
>.highlighted {
border-left: 3px solid $blue;
padding-left: 3px;
}
}
.submit_button {
margin-top: 10px;
input {
float: right;
}
padding-left: 12px;
display: none;
}
.comment_box {
height: 35px;
resize: none;
}
textarea.comment_box:focus, textarea.comment_box:valid, textarea.comment_box:active {
border-color: $border-dark-grey;
& + .submit_button { display: block; }
min-height: 35px;
box-shadow: none;
}
}