2025-12-12 13:14:39 +01:00
|
|
|
@use '../1-helpers/functions';
|
2025-08-27 08:44:30 +02:00
|
|
|
|
|
|
|
|
.ct-comments {
|
|
|
|
|
color: var(--theme-text-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ct-has-avatar {
|
|
|
|
|
.ct-comment-content {
|
2025-12-12 13:14:39 +01:00
|
|
|
@include functions.media-breakpoint-up(md) {
|
2025-08-27 08:44:30 +02:00
|
|
|
padding-inline-start: 70px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ct-comments-title {
|
|
|
|
|
margin-bottom: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ct-comment-list {
|
|
|
|
|
|
|
|
|
|
.children {
|
2025-12-12 13:14:39 +01:00
|
|
|
@include functions.media-breakpoint-down(sm) {
|
2025-08-27 08:44:30 +02:00
|
|
|
padding-inline-start: 35px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-12 13:14:39 +01:00
|
|
|
@include functions.media-breakpoint-up(md) {
|
2025-08-27 08:44:30 +02:00
|
|
|
padding-inline-start: 70px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-respond {
|
|
|
|
|
padding-bottom: 50px;
|
|
|
|
|
|
2025-12-12 13:14:39 +01:00
|
|
|
@include functions.media-breakpoint-up(md) {
|
2025-08-27 08:44:30 +02:00
|
|
|
padding-inline-start: 70px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// comment
|
|
|
|
|
.ct-comment-inner {
|
|
|
|
|
padding-block: 50px;
|
|
|
|
|
border-top: 1px solid var(--theme-border-color);
|
|
|
|
|
|
|
|
|
|
&:not(.ct-has-reply-form) {
|
|
|
|
|
&:hover .comment-reply-link {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background: var(--theme-button-background-initial-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-reply-link {
|
|
|
|
|
&:hover {
|
|
|
|
|
background: var(--theme-button-background-hover-color);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ct-comment-meta {
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
--theme-link-initial-color: var(--theme-text-color);
|
|
|
|
|
|
2025-12-12 13:14:39 +01:00
|
|
|
@include functions.media-breakpoint-up(md) {
|
2025-08-27 08:44:30 +02:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
figure {
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset-inline-start: 0;
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
max-width: var(--max-size, 50px);
|
|
|
|
|
max-height: var(--max-size, 50px);
|
|
|
|
|
|
2025-12-12 13:14:39 +01:00
|
|
|
@include functions.media-breakpoint-down(sm) {
|
2025-08-27 08:44:30 +02:00
|
|
|
--max-size: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-12 13:14:39 +01:00
|
|
|
@include functions.media-breakpoint-up(md) {
|
2025-08-27 08:44:30 +02:00
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ct-has-avatar .ct-comment-meta {
|
2025-12-12 13:14:39 +01:00
|
|
|
@include functions.media-breakpoint-down(sm) {
|
2025-08-27 08:44:30 +02:00
|
|
|
padding-inline-start: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-12 13:14:39 +01:00
|
|
|
@include functions.media-breakpoint-up(md) {
|
2025-08-27 08:44:30 +02:00
|
|
|
padding-inline-start: 70px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ct-comment-author {
|
|
|
|
|
--theme-font-size: 16px;
|
|
|
|
|
--theme-link-initial-color: currentColor;
|
|
|
|
|
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ct-comment-meta-data {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
align-items: center;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
2025-12-12 13:14:39 +01:00
|
|
|
@include functions.media-breakpoint-up(md) {
|
2025-08-27 08:44:30 +02:00
|
|
|
margin-inline-start: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-edit-link,
|
|
|
|
|
.comment-reply-login {
|
|
|
|
|
&:before {
|
|
|
|
|
content: '/';
|
|
|
|
|
margin-inline: 3px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-edit-link {
|
2025-12-12 13:14:39 +01:00
|
|
|
@include functions.media-breakpoint-down(sm) {
|
2025-08-27 08:44:30 +02:00
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-reply-link {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: 25px;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
margin-inline-start: var(--margin-inline-start, 20px);
|
|
|
|
|
transition: color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955),
|
|
|
|
|
background 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
|
|
|
|
|
|
2025-12-12 13:14:39 +01:00
|
|
|
@include functions.media-breakpoint-down(sm) {
|
2025-08-27 08:44:30 +02:00
|
|
|
--margin-inline-start: auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// reply title
|
|
|
|
|
#reply-title {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#cancel-comment-reply-link {
|
|
|
|
|
padding: 0.5em 0.9em;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
color: var(--theme-button-text-initial-color, #fff);
|
|
|
|
|
background: var(--theme-button-background-initial-color);
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: var(--theme-button-text-hover-color, #fff);
|
|
|
|
|
background: var(--theme-button-background-hover-color);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// respond form
|
|
|
|
|
.comment-respond {
|
|
|
|
|
&:not(:only-child) {
|
|
|
|
|
.comment-reply-title {
|
|
|
|
|
padding-top: 40px;
|
|
|
|
|
border-top: 1px solid var(--theme-border-color);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
+ .ct-comment-list {
|
|
|
|
|
margin-top: 50px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comment-form {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-column-gap: 20px;
|
|
|
|
|
grid-row-gap: 1.5em;
|
|
|
|
|
--theme-content-spacing: 0;
|
|
|
|
|
--theme-link-initial-color: var(--theme-text-color);
|
|
|
|
|
|
2025-12-12 13:14:39 +01:00
|
|
|
@include functions.media-breakpoint-up(md) {
|
2025-08-27 08:44:30 +02:00
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
|
|
|
|
|
|
&.has-website-field {
|
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> * {
|
|
|
|
|
grid-column: var(--grid-column, 1/-1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[class*='comment-form-field-input'] {
|
|
|
|
|
--grid-column: span 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logged-in-as,
|
|
|
|
|
.comment-notes {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.required {
|
|
|
|
|
color: #cc0000;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// form labels
|
|
|
|
|
[class*='comment-form-field'] label {
|
|
|
|
|
display: flex;
|
|
|
|
|
color: var(--theme-form-text-initial-color);
|
|
|
|
|
margin-bottom: var(--has-classic-forms, 0.5em);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-labels-inside {
|
|
|
|
|
|
|
|
|
|
[class*='comment-form-field'] {
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
label {
|
|
|
|
|
position: absolute;
|
|
|
|
|
align-items: center;
|
|
|
|
|
cursor: text;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
inset-inline-start: 0;
|
|
|
|
|
height: var(--has-classic-forms, var(--theme-form-field-height, 40px));
|
|
|
|
|
padding: var(--has-classic-forms, var(--theme-form-field-padding, 0 15px));
|
|
|
|
|
transition: opacity 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955),
|
|
|
|
|
visibility 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955),
|
|
|
|
|
inset-inline-start 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&[class*='textarea'] label {
|
|
|
|
|
height: 40px;
|
|
|
|
|
top: var(--has-classic-forms, 5px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:focus-within,
|
|
|
|
|
&.ct-not-empty {
|
|
|
|
|
|
|
|
|
|
label {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
inset-inline-start: 20px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.comment-form-cookies-consent {
|
|
|
|
|
+ .gdpr-confirm-policy {
|
|
|
|
|
margin-top: -1em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// no comments
|
|
|
|
|
.no-comments {
|
|
|
|
|
padding: 15px 20px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background: rgba(233, 235, 239, 0.5);
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// comments pagination
|
|
|
|
|
.ct-comments-navigation {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding-top: 15px;
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
border-top: 1px solid var(--theme-border-color);
|
|
|
|
|
}
|