mirror of
https://github.com/kbenestad/mdcms.git
synced 2026-06-18 07:24:31 +00:00
Fix callout CSS: wire border-color and background to CSS variables
border-left was 4px solid without color; background was missing. JS sets --callout-primary and --callout-bg on each callout element but CSS wasn't referencing them. https://claude.ai/code/session_01UP8Wo2CKPNhvvTkzX48CWF
This commit is contained in:
parent
ad2f7b47ee
commit
020b05f1f6
1 changed files with 2 additions and 1 deletions
|
|
@ -797,7 +797,8 @@ body {
|
|||
TAG SYSTEM: CALLOUTS
|
||||
═══════════════════════════════════════════ */
|
||||
.mdcms-callout {
|
||||
border-left: 4px solid;
|
||||
border-left: 4px solid var(--callout-primary, var(--accent));
|
||||
background: var(--callout-bg, transparent);
|
||||
border-radius: 0 6px 6px 0;
|
||||
padding: 0.85rem 1rem 0.85rem 1rem;
|
||||
margin: 1.25rem 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue