♻️ refactor: improve Zola v0.22.0 compatibility (#612)

This commit is contained in:
Óscar 2026-01-14 22:57:40 +01:00 committed by GitHub
parent 7118ae7283
commit 9a09df263a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 47 additions and 22 deletions

View file

@ -14,6 +14,7 @@ code {
color: inherit;
}
/* Legacy table support for Zola versions older than 0.22.0 */
table {
margin: 0rem;
border-collapse: collapse;
@ -21,18 +22,15 @@ code {
width: 100%;
text-align: start;
td,
th,
tr {
td, th, tr {
border: none;
padding: 0rem;
}
// Line number col.
tbody td:first-child {
opacity: 50%;
padding-inline-end: 0.8rem;
width: 1px; // Without this, iOS Safari centres short lines.
width: 1px;
user-select: none;
text-align: end;
}
@ -41,6 +39,24 @@ code {
background-color: inherit;
}
}
/* Span-based layout (Giallo; Zola v0.22.0 and above) */
.giallo-l {
float: left;
clear: left;
width: 100%;
line-height: 1.2;
}
.giallo-ln {
display: inline-block;
opacity: 0.5;
padding-inline-end: 0.8rem;
min-width: 3ch;
color: inherit;
user-select: none;
text-align: end;
}
}
a:hover code {
@ -66,8 +82,8 @@ pre {
// Supports both native Zola way of adding src, and old shortcode-based logic.
// See: https://github.com/welpo/tabi/pull/489
&::after,
code .source-path {
code .source-path,
code[data-name]::after {
display: block;
position: absolute;
top: 0;
@ -77,7 +93,6 @@ pre {
max-width: calc(100% - 14em);
height: 0.9rem;
overflow: hidden;
content: attr(data-name);
color: var(--hover-color);
font-size: 0.65rem;
text-align: end;
@ -85,6 +100,10 @@ pre {
white-space: nowrap;
}
code[data-name]::after {
content: attr(data-name);
}
code {
display: block;
border: 0rem;
@ -124,6 +143,10 @@ html[data-code-direction="inherit"] {
code, pre {
direction: inherit;
}
.giallo-l {
float: right;
clear: right;
}
}
.copy-code {