mindnet_obsidian/docs/snippet_section_callout.css
Lars 725adb5302
Some checks are pending
Node.js build / build (20.x) (push) Waiting to run
Node.js build / build (22.x) (push) Waiting to run
Enhance UI and functionality for Chain Workbench and related features
- Introduced a wide two-column layout for the Chain Workbench modal, improving user experience and accessibility.
- Added new styles for workbench components, including headers, filters, and main containers, to enhance visual organization.
- Updated chain templates to allow for multiple distinct matches per template, improving flexibility in template matching.
- Enhanced documentation to clarify the new settings and commands related to the Chain Workbench and edge detection features.
- Implemented logging for better tracking of missing configurations, ensuring users are informed about any loading issues.
2026-02-05 11:41:15 +01:00

37 lines
902 B
CSS
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Unauffällige Formatierung für > [!section] type (Mindnet)
* Inhalt in .obsidian/snippets/mindnet.css einfügen und Snippet aktivieren.
*/
/* [!section] möglichst unauffällig: kein Kasten, kein Stift, wie ein kleines Label */
.callout[data-callout="section"] {
--callout-color: 128, 128, 128;
--callout-icon: none;
border: none;
border-left: 1px solid rgba(var(--callout-color), 0.25);
background-color: transparent;
padding: 0.1em 0 0.1em 0.5em;
margin: 0.25em 0;
box-shadow: none;
}
.callout[data-callout="section"] .callout-title {
background-color: transparent;
padding: 0;
}
.callout[data-callout="section"] .callout-icon {
display: none;
}
.callout[data-callout="section"] .callout-title-inner {
font-size: 0.85em;
font-weight: 500;
color: var(--text-muted);
opacity: 0.9;
}
.callout[data-callout="section"] .callout-content {
display: none;
}