Fix style comments

This commit is contained in:
Arkadiusz Wieczorek 2023-02-09 12:54:35 +01:00
parent 1b11f8b6d6
commit 794752fa77
2 changed files with 291 additions and 210 deletions

View File

@ -1,8 +1,8 @@
.isso-postbox > .form-wrapper > .auth-section .post-action > input:hover { .isso-postbox>.form-wrapper>.auth-section .post-action>input:hover {
background-color: #ddd; background-color: #ddd;
} }
.isso-postbox > .form-wrapper > .auth-section .input-wrapper input { .isso-postbox>.form-wrapper>.auth-section .input-wrapper input {
padding: 0.5rem; padding: 0.5rem;
max-width: 100%; max-width: 100%;
border-radius: 3px; border-radius: 3px;
@ -22,12 +22,12 @@
color: #000; color: #000;
} }
.isso-comment > div.text-wrapper > .isso-comment-header .author { .isso-comment>div.text-wrapper>.isso-comment-header .author {
font-weight: bold; font-weight: bold;
color: #222; color: #222;
} }
.isso-postbox > .form-wrapper > .auth-section .post-action > input { .isso-postbox>.form-wrapper>.auth-section .post-action>input {
padding: 0.5rem 1rem !important; padding: 0.5rem 1rem !important;
border-radius: 2px; border-radius: 2px;
border: 1px solid #ccc; border: 1px solid #ccc;
@ -39,7 +39,7 @@
color: #222; color: #222;
} }
#isso-thread > h4 { #isso-thread>h4 {
color: var(--midgrey2) !important; color: var(--midgrey2) !important;
font-weight: bold; font-weight: bold;
} }
@ -48,6 +48,10 @@
border-radius: 50%; border-radius: 50%;
} }
#isso-root {
margin-top: 8rem;
}
#isso-root .spacer, #isso-root .spacer,
.isso-comment-header *, .isso-comment-header *,
.isso-comment-footer *, .isso-comment-footer *,
@ -55,7 +59,7 @@
.isso-comment .isso-comment-header a.permalink, .isso-comment .isso-comment-header a.permalink,
.isso-comment .isso-comment-header .note, .isso-comment .isso-comment-header .note,
.isso-comment .isso-comment-header a.parent, .isso-comment .isso-comment-header a.parent,
.isso-comment > div.text-wrapper > .isso-comment-header .spacer { .isso-comment>div.text-wrapper>.isso-comment-header .spacer {
color: var(--midgrey2) !important; color: var(--midgrey2) !important;
} }
@ -87,15 +91,15 @@
.isso-comment .isso-comment-header a.permalink, .isso-comment .isso-comment-header a.permalink,
.isso-comment .isso-comment-header .note, .isso-comment .isso-comment-header .note,
.isso-comment .isso-comment-header a.parent, .isso-comment .isso-comment-header a.parent,
.isso-comment > div.text-wrapper > .isso-comment-header .spacer, .isso-comment>div.text-wrapper>.isso-comment-header .spacer,
.isso-comment-header *, .isso-comment-header *,
.isso-comment-footer *, .isso-comment-footer *,
#isso-thread > h4 { #isso-thread>h4 {
color: var(--whitegrey) !important; color: var(--whitegrey) !important;
} }
.isso-feedlink:hover, .isso-feedlink:hover,
.isso-comment > div.text-wrapper > .isso-comment-footer a:hover, .isso-comment>div.text-wrapper>.isso-comment-footer a:hover,
#isso-root a:hover { #isso-root a:hover {
text-decoration: underline; text-decoration: underline;
} }
@ -105,7 +109,7 @@
} }
.isso-feedlink:hover, .isso-feedlink:hover,
.isso-comment > div.text-wrapper > .isso-comment-footer a:hover, .isso-comment>div.text-wrapper>.isso-comment-footer a:hover,
#isso-root a:hover { #isso-root a:hover {
color: #fff; color: #fff;
text-decoration: underline; text-decoration: underline;
@ -117,4 +121,5 @@
display: grid; display: grid;
grid-template-columns: 20px 1fr; grid-template-columns: 20px 1fr;
grid-column-gap: 10px; grid-column-gap: 10px;
} margin: 1rem 0;
}

474
post.hbs
View File

@ -1,130 +1,195 @@
{{!< default}} {{!<
default}}
{{!-- The tag above means: insert everything in this file {{!--
into the {body} of the default.hbs template --}} The
tag
<header class="site-header"> above
means:
insert
everything
in
this
file
into
the
{body}
of
the
default.hbs
template
--}}
<header
class="site-header"
>
{{> site-header}} {{> site-header}}
</header> </header>
{{!-- Everything inside the #post tags pulls data from the post --}} {{!-- Everything inside the #post tags pulls data from the post --}}
{{#post}} {{#post}}
<main id="site-main" class="site-main outer"> <main
<div class="inner"> id="site-main"
class="site-main outer"
>
<div class="inner">
<article class="post-full {{post_class}} {{#unless feature_image}}no-image{{/unless}}"> <article class="post-full {{post_class}} {{#unless feature_image}}no-image{{/unless}}">
<header class="post-full-header"> <header class="post-full-header">
{{#if primary_tag}} {{#if primary_tag}}
<section class="post-full-tags"> <section class="post-full-tags">
{{#if tags}} {{#if tags}}
{{#foreach tags}} {{#foreach tags}}
<a href="{{url}}" title="{{name}}" class="tag {{slug}}">{{name}}</a> <a
{{/foreach}} href="{{url}}"
title="{{name}}"
class="tag {{slug}}"
>{{name}}</a>
{{/foreach}}
{{/if}} {{/if}}
</section> </section>
{{/if}} {{/if}}
<h1 class="post-full-title">{{title}}</h1> <h1 class="post-full-title">{{title}}</h1>
{{#if custom_excerpt}} {{#if custom_excerpt}}
<p class="post-full-custom-excerpt">{{custom_excerpt}}</p> <p class="post-full-custom-excerpt">{{custom_excerpt}}</p>
{{/if}} {{/if}}
<div class="post-full-byline"> <div class="post-full-byline">
<section class="post-full-byline-content"> <section class="post-full-byline-content">
<ul class="author-list"> <ul class="author-list">
{{#foreach authors}} {{#foreach authors}}
<li class="author-list-item"> <li class="author-list-item">
<div class="author-card"> <div class="author-card">
{{#if profile_image}} {{#if profile_image}}
<img class="author-profile-image" src="{{img_url profile_image size="xs"}}" alt="{{name}}" /> <img
{{else}} class="author-profile-image"
<div class="author-profile-image">{{> "icons/avatar"}}</div> src="{{img_url profile_image size="
{{/if}} xs"}}"
<div class="author-info" aria-hidden="true"> alt="{{name}}"
{{#if bio}} />
<div class="bio">
<h2>{{name}}</h2>
<p>{{bio}}</p>
<p><a href="{{url}}">Więcej postów</a> - {{name}}.</p>
</div>
{{else}} {{else}}
<h2>{{name}}</h2> <div class="author-profile-image">{{> "icons/avatar"}}</div>
<p>Zobacz <a href="{{url}}">więcej postów</a> tego autora.</p>
{{/if}} {{/if}}
<div
class="author-info"
aria-hidden="true"
>
{{#if bio}}
<div class="bio">
<h2>{{name}}</h2>
<p>{{bio}}</p>
<p><a href="{{url}}">Więcej postów</a> - {{name}}.</p>
</div>
{{else}}
<h2>{{name}}</h2>
<p>Zobacz <a href="{{url}}">więcej postów</a> tego autora.</p>
{{/if}}
</div>
</div> </div>
{{#if profile_image}}
<a
href="{{url}}"
class="author-avatar"
>
<img
class="author-profile-image"
src="{{img_url profile_image size="
xs"}}"
alt="{{name}}"
/>
</a>
{{else}}
<a
href="{{url}}"
class="author-avatar author-profile-image"
>{{> "icons/avatar"}}</a>
{{/if}}
</li>
{{/foreach}}
</ul>
<section class="post-full-byline-meta">
<h4 class="author-name">{{authors}}</h4>
<div class="byline-meta-content">
<time
class="byline-meta-date"
datetime="{{date format="
YYYY-MM-DD"}}"
>{{date format="D MMM YYYY"}}</time>
<span class="byline-reading-time"><span class="bull">&bull;</span>
{{reading_time}}</span>
</div> </div>
</section>
{{#if profile_image}}
<a href="{{url}}" class="author-avatar">
<img class="author-profile-image" src="{{img_url profile_image size="xs"}}" alt="{{name}}" />
</a>
{{else}}
<a href="{{url}}" class="author-avatar author-profile-image">{{> "icons/avatar"}}</a>
{{/if}}
</li>
{{/foreach}}
</ul>
<section class="post-full-byline-meta">
<h4 class="author-name">{{authors}}</h4>
<div class="byline-meta-content">
<time class="byline-meta-date" datetime="{{date format="YYYY-MM-DD"}}">{{date format="D MMM YYYY"}}</time>
<span class="byline-reading-time"><span class="bull">&bull;</span> {{reading_time}}</span>
</div>
</section> </section>
</section>
</div> </div>
</header> </header>
{{#if feature_image}} {{#if feature_image}}
<figure class="post-full-image"> <figure class="post-full-image">
{{!-- This is a responsive image, it loads different sizes depending on device {{!-- This is a responsive image, it loads different sizes depending on device
https://medium.freecodecamp.org/a-guide-to-responsive-images-with-ready-to-use-templates-c400bd65c433 --}} https://medium.freecodecamp.org/a-guide-to-responsive-images-with-ready-to-use-templates-c400bd65c433
<img --}}
srcset="{{img_url feature_image size="s"}} 300w, <img
{{img_url feature_image size="m"}} 600w, srcset="{{img_url feature_image size="
{{img_url feature_image size="l"}} 1000w, s"}}
{{img_url feature_image size="xl"}} 2000w" 300w,
sizes="(max-width: 800px) 400px, {{img_url
feature_image
size="m"
}}
600w,
{{img_url
feature_image
size="l"
}}
1000w,
{{img_url
feature_image
size="xl"
}}
2000w"
sizes="(max-width: 800px) 400px,
(max-width: 1170px) 1170px, (max-width: 1170px) 1170px,
2000px" 2000px"
src="{{img_url feature_image size="xl"}}" src="{{img_url feature_image size="
alt="{{title}}" xl"}}"
/> alt="{{title}}"
</figure> />
{{/if}} </figure>
{{/if}}
<section class="post-full-content"> <section class="post-full-content">
<div class="post-content"> <div class="post-content">
{{content}} {{content}}
</div> </div>
</section> </section>
{{!-- Email subscribe form at the bottom of the page --}} {{!-- Email subscribe form at the bottom of the page --}}
{{#if @labs.members}} {{#if @labs.members}}
{{> subscribe-form}} {{> subscribe-form}}
{{/if}} {{/if}}
{{!-- {{!--
<section class="post-full-comments"> <section class="post-full-comments">
If you want to embed comments, this is a good place to do it! If you want to embed comments, this is a good place to do it!
</section> </section>
--}} --}}
</article> </article>
<script data-isso="https://www.internet-czas-dzialac.pl/isso" <script
data-isso="https://www.internet-czas-dzialac.pl/isso"
data-isso-lang="pl" data-isso-lang="pl"
data-isso-default-lang="pl" data-isso-default-lang="pl"
data-isso-feed="false" data-isso-feed="false"
@ -132,66 +197,70 @@ into the {body} of the default.hbs template --}}
data-isso-max-comments-nested="inf" data-isso-max-comments-nested="inf"
data-isso-gravatar="false" data-isso-gravatar="false"
data-isso-avatar="true" data-isso-avatar="true"
src="https://www.internet-czas-dzialac.pl/isso/js/embed.min.js" async></script> src="https://www.internet-czas-dzialac.pl/isso/js/embed.min.js"
async
></script>
<section id="isso-thread"></section> <section id="isso-thread"></section>
<script> <script>
(async function(){ (async function () {
function addCheckbox(){const original_submit = document.querySelector(".post-action input[type='submit']"); function addCheckbox() {
original_submit.style.setProperty("display", "none") const original_submit = document.querySelector(".post-action input[type='submit']");
const faux_submit = document.createElement("input") original_submit.style.setProperty("display", "none")
faux_submit.value = "Wyślij" const faux_submit = document.createElement("input")
faux_submit.type = "submit" faux_submit.value = "Wyślij"
const comment_checkbox_id = "comment-checkbox" faux_submit.type = "submit"
const checkbox = document.createElement("input") const comment_checkbox_id = "comment-checkbox"
checkbox.type = "checkbox" const checkbox = document.createElement("input")
checkbox.id = comment_checkbox_id checkbox.type = "checkbox"
checkbox.required = true checkbox.id = comment_checkbox_id
const label = document.createElement("label") checkbox.required = true
label.style.setProperty("line-height", 1); const label = document.createElement("label")
label.style.setProperty("margin", "1em 0"); label.style.setProperty("line-height", 1);
label.for = comment_checkbox_id; label.style.setProperty("margin", "1em 0");
label.appendChild(checkbox) label.for = comment_checkbox_id;
label.id = comment_checkbox_id + "__label" label.appendChild(checkbox)
const label_text = document.createElement("span") label.id = comment_checkbox_id + "__label"
label_text.innerHTML = `Zapoznałam/em się z <a href="/regulamin-komentarzy">Regulaminem publikowania komentarzy</a> i&nbsp;akceptuję jego treść.` const label_text = document.createElement("span")
label.appendChild(label_text) label_text.innerHTML = `Zapoznałam/em się z <a href="/regulamin-komentarzy">Regulaminem publikowania komentarzy</a> i&nbsp;akceptuję jego treść.`
document.querySelector("#isso-thread .auth-section").insertBefore(label, document.querySelector(".auth-section .post-action")) label.appendChild(label_text)
const legal = document.createElement("p"); document.querySelector("#isso-thread .auth-section").insertBefore(label, document.querySelector(".auth-section .post-action"))
legal.classList.add("legal"); const legal = document.createElement("p");
legal.textContent = `Współadministratorami danych osobowych są Arkadiusz wieczorek oraz Jan Orlik. Dane osobowe podane w formularzu są przetwarzane w celu realizacji usługi publikowania komentarzy na stronie internetowej współadministratorów, jak również w celu ustalenia, dochodzenia lub obrony roszczeń. Masz w szczególności prawo dostępu do swoich danych osobowych, ich usunięcia oraz wniesienia sprzeciwu wobec przetwarzania danych. Szczegóły dotyczące przetwarzania danych osobowych i przysługujących Ci praw znajdują się w Polityce prywatności.` legal.classList.add("legal");
legal.style.setProperty("line-height", "0.98") legal.textContent = `Współadministratorami danych osobowych są Arkadiusz Wieczorek oraz Jan Orlik. Dane osobowe podane w formularzu są przetwarzane w celu realizacji usługi publikowania komentarzy na stronie internetowej współadministratorów, jak również w celu ustalenia, dochodzenia lub obrony roszczeń. Masz w szczególności prawo dostępu do swoich danych osobowych, ich usunięcia oraz wniesienia sprzeciwu wobec przetwarzania danych. Szczegóły dotyczące przetwarzania danych osobowych i przysługujących Ci praw znajdują się w Polityce prywatności.`
legal.style.setProperty("hyphens", "auto") legal.style.setProperty("hyphens", "auto")
legal.style.setProperty("text-align", "justify") legal.style.setProperty("text-align", "justify")
legal.style.setProperty("font-style", "italic") legal.style.setProperty("font-style", "italic")
document.querySelector("#isso-thread .auth-section").insertBefore(legal, document.querySelector(".auth-section .post-action")) legal.style.setProperty("font-size", "1.333rem")
faux_submit.addEventListener("click", ()=>{ legal.style.setProperty("line-height", "150%")
if(!checkbox.checked){ document.querySelector("#isso-thread .auth-section").insertBefore(legal, document.querySelector(".auth-section .post-action"))
checkbox.reportValidity() faux_submit.addEventListener("click", () => {
}else { if (!checkbox.checked) {
original_submit.click() checkbox.reportValidity()
} else {
original_submit.click()
} }
}) })
original_submit.parentElement.appendChild(faux_submit) original_submit.parentElement.appendChild(faux_submit)
} }
for(let i=0; i<=20; i++){ for (let i = 0; i <= 20; i++) {
if(document.querySelector(".post-action input[type='submit']")){ if (document.querySelector(".post-action input[type='submit']")) {
continue continue
} }
await new Promise((resolve)=>setTimeout(resolve, 200)); await new Promise((resolve) => setTimeout(resolve, 200));
} }
addCheckbox(); addCheckbox();
})() })()
</script> </script>
</div> </div>
</main> </main>
{{!-- Links to Previous/Next posts --}} {{!-- Links to Previous/Next posts --}}
<aside class="read-next outer"> <aside class="read-next outer">
<div class="inner"> <div class="inner">
<div class="read-next-feed"> <div class="read-next-feed">
{{#if primary_tag}} {{#if primary_tag}}
{{#get "posts" filter="tags:{{primary_tag.slug}}+id:-{{id}}" limit="3" as |related_posts|}} {{#get "posts" filter="tags:{{primary_tag.slug}}+id:-{{id}}" limit="3" as |related_posts|}}
{{#if related_posts}} {{#if related_posts}}
<article class="read-next-card"> <article class="read-next-card">
<header class="read-next-card-header"> <header class="read-next-card-header">
@ -205,7 +274,10 @@ into the {body} of the default.hbs template --}}
<li> <li>
<h4><a href="{{url}}">{{title}}</a></h4> <h4><a href="{{url}}">{{title}}</a></h4>
<div class="read-next-card-meta"> <div class="read-next-card-meta">
<p><time datetime="{{date format="YYYY-MM-DD"}}">{{date format="D MMM YYYY"}}</time> <p><time
datetime="{{date format="
YYYY-MM-DD"}}"
>{{date format="D MMM YYYY"}}</time>
{{reading_time}}</p> {{reading_time}}</p>
</div> </div>
</li> </li>
@ -213,63 +285,67 @@ into the {body} of the default.hbs template --}}
</ul> </ul>
</div> </div>
<footer class="read-next-card-footer"> <footer class="read-next-card-footer">
<a href="{{#../primary_tag}}{{url}}{{/../primary_tag}}">{{plural meta.pagination.total empty='No posts' singular='% post' plural='See all % posts'}} <a href="{{#../primary_tag}}{{url}}{{/../primary_tag}}">{{plural meta.pagination.total empty='No
posts' singular='% post' plural='See all % posts'}}
→</a> →</a>
</footer> </footer>
</article> </article>
{{/if}} {{/if}}
{{/get}} {{/get}}
{{/if}} {{/if}}
{{!-- If there's a next post, display it using the same markup included from - partials/post-card.hbs --}} {{!-- If there's a next post, display it using the same markup included from - partials/post-card.hbs
{{#next_post}} --}}
{{#next_post}}
{{> "post-card"}} {{> "post-card"}}
{{/next_post}} {{/next_post}}
{{!-- If there's a previous post, display it using the same markup included from - partials/post-card.hbs --}} {{!-- If there's a previous post, display it using the same markup included from -
{{#prev_post}} partials/post-card.hbs --}}
{{#prev_post}}
{{> "post-card"}} {{> "post-card"}}
{{/prev_post}} {{/prev_post}}
</div>
</div> </div>
</div> </aside>
</aside>
{{/post}} {{/post}}
{{!-- The #contentFor helper here will send everything inside it up to the matching #block helper found in default.hbs --}} {{!-- The #contentFor helper here will send everything inside it up to the matching #block helper found in
{{#contentFor "scripts"}} default.hbs --}}
<script> {{#contentFor "scripts"}}
$(document).ready(function () { <script>
// FitVids - start $(document).ready(function () {
var $postContent = $(".post-full-content"); // FitVids - start
$postContent.fitVids(); var $postContent = $(".post-full-content");
// FitVids - end $postContent.fitVids();
// FitVids - end
// Replace nav with title on scroll - start // Replace nav with title on scroll - start
Casper.stickyNavTitle({ Casper.stickyNavTitle({
navSelector: '.site-nav-main', navSelector: '.site-nav-main',
titleSelector: '.post-full-title', titleSelector: '.post-full-title',
activeClass: 'nav-post-title-active' activeClass: 'nav-post-title-active'
});
// Replace nav with title on scroll - end
// Hover on avatar
var hoverTimeout;
$('.author-list-item').hover(function () {
var $this = $(this);
clearTimeout(hoverTimeout);
$('.author-card').removeClass('hovered');
$(this).children('.author-card').addClass('hovered');
}, function () {
var $this = $(this);
hoverTimeout = setTimeout(function () {
$this.children('.author-card').removeClass('hovered');
}, 800);
});
}); });
// Replace nav with title on scroll - end </script>
{{/contentFor}}
// Hover on avatar
var hoverTimeout;
$('.author-list-item').hover(function () {
var $this = $(this);
clearTimeout(hoverTimeout);
$('.author-card').removeClass('hovered');
$(this).children('.author-card').addClass('hovered');
}, function () {
var $this = $(this);
hoverTimeout = setTimeout(function () {
$this.children('.author-card').removeClass('hovered');
}, 800);
});
});
</script>
{{/contentFor}}