Use 8px radius for inline code + embedded images; Gruvbox figure captions; add AGENTS.md with system requirements

This commit is contained in:
trilium-share-gruvbox
2026-08-28 14:55:08 +02:00
parent 302e48391c
commit a8d9c83ae7
2 changed files with 116 additions and 4 deletions
+13 -4
View File
@@ -780,7 +780,7 @@ html.theme-light {
background-color: #3c3836;
color: #ebdbb2;
border-color: #504945;
border-radius: 4px;
border-radius: 8px;
padding: 0.1em 0.35em;
}
@@ -798,10 +798,14 @@ html.theme-light #content code {
border-color: #bdae93;
}
/* ---------- Eingebettete Bilder: Radius wie Inline-Code ---------- */
/* ---------- Eingebettete Bilder: Radius wie Code-Blöcke (8px) ---------- */
#content figure.image {
margin: 1.25em auto;
}
#content figure img,
#content img:not(.blog-thumb) {
border-radius: 4px;
border-radius: 8px;
}
/* ---------- Bildunterschriften (Gruvbox) ---------- */
@@ -810,7 +814,12 @@ html.theme-light #content code {
font-style: italic;
color: var(--text-menu);
text-align: center;
margin-top: 6px;
margin-top: 8px;
padding: 4px 12px;
background: var(--background-secondary);
border: 1px solid var(--background-highlight);
border-radius: 8px;
display: inline-block;
}
.hljs {