first load
This commit is contained in:
161
styles/_comments.scss
Normal file
161
styles/_comments.scss
Normal file
@@ -0,0 +1,161 @@
|
||||
/***** Comments *****/
|
||||
/* Styles comments inside articles, posts and requests */
|
||||
.comment {
|
||||
border-bottom: 1px solid $low-contrast-border-color;
|
||||
padding: 20px 0;
|
||||
|
||||
&-heading {
|
||||
margin-bottom: 5px;
|
||||
margin-top: 0;
|
||||
font-size: 18px;
|
||||
font-weight: $font-weight-semibold;
|
||||
}
|
||||
|
||||
&-overview {
|
||||
border-bottom: 1px solid $low-contrast-border-color;
|
||||
border-top: 1px solid $low-contrast-border-color;
|
||||
padding: 20px 0;
|
||||
|
||||
p { margin-top: 0; }
|
||||
}
|
||||
|
||||
&-callout {
|
||||
color: $secondary-text-color;
|
||||
display: inline-block;
|
||||
font-size: $font-size-small;
|
||||
margin-bottom: 0;
|
||||
|
||||
@include standalone-link;
|
||||
}
|
||||
|
||||
|
||||
&-sorter {
|
||||
display: inline-block;
|
||||
float: right;
|
||||
|
||||
.dropdown-toggle {
|
||||
color: $secondary-text-color;
|
||||
font-size: $font-size-small;
|
||||
}
|
||||
|
||||
[dir="rtl"] & {
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
|
||||
&-wrapper {
|
||||
display: flex;
|
||||
position: relative;
|
||||
|
||||
&.comment-official {
|
||||
@include tablet { padding-top: 20px; }
|
||||
|
||||
border: 1px solid $brand_color;
|
||||
padding: 40px 20px 20px; // 20 + 20 of official commment badge
|
||||
}
|
||||
}
|
||||
|
||||
&-info {
|
||||
min-width: 0;
|
||||
padding-right: 20px;
|
||||
width: 100%;
|
||||
|
||||
[dir="rtl"] & {
|
||||
padding-right: 0;
|
||||
padding-left: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
&-author {
|
||||
align-items: flex-end;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin-bottom: 20px;
|
||||
|
||||
@include tablet { justify-content: space-between; }
|
||||
}
|
||||
|
||||
&-avatar {
|
||||
margin-right: 10px;
|
||||
|
||||
[dir="rtl"] & {
|
||||
margin-left: 10px;
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&-meta {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
&-labels {
|
||||
flex-basis: 100%;
|
||||
|
||||
@include tablet {
|
||||
flex-basis: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.status-label:not(.status-label-official) {
|
||||
margin-top: 10px;
|
||||
|
||||
@include tablet { margin-top: 0; }
|
||||
}
|
||||
|
||||
&-form {
|
||||
display: flex;
|
||||
padding-top: 30px;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
&-container { width: 100%; }
|
||||
|
||||
&-form-controls {
|
||||
@include tablet {
|
||||
[dir="ltr"] & {
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
display: none;
|
||||
margin-top: 10px;
|
||||
text-align: left;
|
||||
|
||||
input[type="submit"] {
|
||||
@include desktop {
|
||||
margin-left: 15px;
|
||||
[dir="rtl"] & {
|
||||
margin-left: 0;
|
||||
margin-right: 15px;
|
||||
}
|
||||
}
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
input[type="checkbox"] {
|
||||
margin-right: 5px;
|
||||
|
||||
[dir="rtl"] { margin-left: 5px; }
|
||||
}
|
||||
}
|
||||
|
||||
&-ccs { display: none; }
|
||||
&-ccs + textarea { margin-top: 10px; }
|
||||
|
||||
&-attachments {
|
||||
margin-top: 10px;
|
||||
|
||||
a { color: $brand_color; }
|
||||
}
|
||||
|
||||
&-body {
|
||||
@include text-overflow;
|
||||
@include content-body;
|
||||
font-family: $text_font;
|
||||
line-height: 1.6;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
&-mark-as-solved {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user