mirror of
https://github.com/jglev/obsidian-apply-patterns-plugin.git
synced 2026-07-22 05:40:26 +00:00
- The Settings menu has been completely redesigned, and should now be more mobile-friendly. - The position of the cursor, or selection of text, after applying a pattern is now able to be customized from the Settings menu. - Links in the Readme have been updated. - Patterns, Rules, and Commands now ask for confirmation before being deleted.
50 lines
1.1 KiB
CSS
50 lines
1.1 KiB
CSS
.import-export-div .setting-item {
|
|
border-top: none;
|
|
}
|
|
|
|
.pattern,
|
|
.command {
|
|
border-top: 2px solid var(--interactive-accent);
|
|
}
|
|
|
|
.pattern:nth-last-child(2),
|
|
.command:nth-last-child(2) {
|
|
border-bottom: 2px solid var(--interactive-accent);
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.patterns .rule.disabled,
|
|
.patterns .pattern .is-disabled,
|
|
.patterns .rule .is-disabled,
|
|
.commands .command .is-disabled {
|
|
opacity: 50%;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.pattern.collapsed [aria-label="Expand"] {
|
|
color: var(--interactive-success);
|
|
}
|
|
|
|
.pattern.collapsed .pattern-rules,
|
|
.pattern.collapsed .pattern-cursor {
|
|
display: none;
|
|
}
|
|
|
|
.pattern.primed div[aria-label="Delete pattern"],
|
|
.rule.primed div[aria-label="Delete rule"],
|
|
.command.primed div[aria-label="Delete command"] {
|
|
color: var(--text-error) !important;
|
|
}
|
|
|
|
.clear-settings-button.primed button {
|
|
background-color: var(--background-modifier-error) !important;
|
|
color: var(--text-error) !important;
|
|
}
|
|
|
|
.commands .bold {
|
|
color: var(--text-error);
|
|
font-size: 1.15em;
|
|
}
|