[i299] fix auto scroll highlighting of code blocks #302

Merged
rho_n merged 3 commits from i299_fix-auto-scroll-highlighting-of-code-blocks into main 2025-11-14 21:22:55 +00:00
2 changed files with 15 additions and 2 deletions
Showing only changes of commit 7170015a0e - Show all commits

View File

@@ -403,6 +403,9 @@ article > p,
font-size: var(--default-header-4-font-size);
margin-left: 22px;
}
.lane.stack > article > footer {
margin-bottom: 1rem;
}
a.lane-button {
display: flex;
flex-direction: column;

View File

@@ -14,14 +14,24 @@
WHERE miniseries.id = ?
ORDER BY name'
%-->
<!--% query_shows_sql = 'SELECT
<!--% query_shows_sql = 'WITH
comment_tallies AS (
SELECT
eps_id,
COUNT(eps_id) AS eps_tally
FROM comments
GROUP BY eps_id
)
SELECT
id, date, title,
duration, summary, notes,
explicit, eps.license, tags,
hosts.host, hosts.hostid
hosts.host, hosts.hostid,
COALESCE(comment_tallies.eps_tally,0) AS commentsTally
FROM eps
INNER JOIN hosts
ON eps.hostid = hosts.hostid
LEFT JOIN comment_tallies ON eps.id = comment_tallies.eps_id
WHERE series = ? AND eps.date < date(\'now\', \'+1 days\')
ORDER BY eps.id DESC
'