2019-09-20 17:56:01 +02:00
|
|
|
.commentsContainer {
|
2022-05-28 11:03:36 +02:00
|
|
|
@extend .my-3;
|
|
|
|
|
|
2019-09-20 17:56:01 +02:00
|
|
|
.newCommentForm {
|
|
|
|
|
@extend
|
|
|
|
|
.d-flex,
|
2022-05-28 11:03:36 +02:00
|
|
|
.flex-column,
|
2019-09-20 17:56:01 +02:00
|
|
|
.my-3;
|
|
|
|
|
|
2022-05-28 11:03:36 +02:00
|
|
|
.commentBodyForm {
|
|
|
|
|
@extend .d-flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.commentIsUpdateForm {
|
|
|
|
|
@extend
|
|
|
|
|
.d-flex,
|
|
|
|
|
.justify-content-between,
|
|
|
|
|
.mt-3;
|
|
|
|
|
|
|
|
|
|
margin-left: 48px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-02 15:26:32 +02:00
|
|
|
.currentUserAvatar {
|
|
|
|
|
@extend
|
|
|
|
|
.gravatar,
|
|
|
|
|
.align-self-end,
|
|
|
|
|
.mr-2;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-20 17:56:01 +02:00
|
|
|
.newCommentBody {
|
|
|
|
|
@extend
|
|
|
|
|
.form-control,
|
|
|
|
|
.w-100,
|
|
|
|
|
.p-2,
|
|
|
|
|
.mr-2;
|
|
|
|
|
|
|
|
|
|
height: 80px;
|
|
|
|
|
|
|
|
|
|
border: thin solid grey;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
|
|
resize: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.submitCommentButton {
|
|
|
|
|
@extend
|
|
|
|
|
.align-self-end;
|
|
|
|
|
|
2022-04-07 18:58:18 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: 120px;
|
2019-09-20 17:56:01 +02:00
|
|
|
height: 40px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.commentsTitle {
|
|
|
|
|
@extend
|
|
|
|
|
.text-secondary,
|
|
|
|
|
.text-uppercase,
|
|
|
|
|
.font-weight-lighter,
|
|
|
|
|
.my-2;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-17 17:04:19 +02:00
|
|
|
.commentList > .commentList {
|
|
|
|
|
padding-left: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment {
|
2019-09-20 17:56:01 +02:00
|
|
|
@extend
|
2022-06-06 20:20:03 +02:00
|
|
|
.my-4;
|
2019-09-17 17:04:19 +02:00
|
|
|
|
|
|
|
|
.commentHeader {
|
2019-09-20 17:56:01 +02:00
|
|
|
@extend .titleText;
|
2019-09-30 23:28:52 +02:00
|
|
|
|
|
|
|
|
.commentAuthor {
|
|
|
|
|
@extend .ml-2;
|
|
|
|
|
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
2019-10-02 16:43:13 +02:00
|
|
|
|
|
|
|
|
.postUpdateBadge {
|
|
|
|
|
@extend
|
|
|
|
|
.badge,
|
|
|
|
|
.badgeLight,
|
|
|
|
|
.ml-2;
|
|
|
|
|
}
|
2019-09-17 17:04:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.commentBody {
|
2022-06-06 20:20:03 +02:00
|
|
|
@extend .my-2;
|
|
|
|
|
|
|
|
|
|
p { @extend .m-0; }
|
2019-09-20 17:56:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.commentFooter {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
2019-10-02 16:43:13 +02:00
|
|
|
.commentLink {
|
2019-09-27 11:40:33 +02:00
|
|
|
color: $astuto-black;
|
2019-09-20 17:56:01 +02:00
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-09-17 17:04:19 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|