- 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.
37 lines
902 B
CSS
37 lines
902 B
CSS
/*
|
||
* 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;
|
||
}
|