mindnet_obsidian/styles.css
Lars bab84549e2
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 interview functionality and settings; add YAML dependency
- Introduced profile selection modal for creating notes from interview profiles.
- Added settings for interview configuration path, auto-starting interviews, and intercepting unresolved link clicks.
- Updated package files to include YAML dependency for configuration handling.
- Enhanced CSS for profile selection and interview wizard UI elements.
2026-01-16 12:27:44 +01:00

64 lines
1.1 KiB
CSS

/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
/* Profile selection visual feedback */
.profile-selected {
background-color: var(--interactive-hover);
border-left: 3px solid var(--interactive-accent);
padding-left: calc(var(--size-4-2) - 3px);
}
.profile-selected .setting-item-name {
font-weight: 600;
}
/* Interview wizard styles */
.interview-prompt {
color: var(--text-muted);
font-style: italic;
margin-bottom: 1em;
}
.interview-warning {
background-color: var(--background-modifier-error);
color: var(--text-error);
padding: 0.5em;
border-radius: 4px;
margin: 1em 0;
}
.interview-note {
color: var(--text-muted);
font-size: 0.9em;
margin-top: 0.5em;
}
.loop-items-list {
margin: 1em 0;
padding: 1em;
background-color: var(--background-secondary);
border-radius: 4px;
}
.loop-items-list ul {
margin: 0.5em 0;
padding-left: 1.5em;
}
.loop-items-list li {
margin: 0.25em 0;
}
/* TextArea improvements */
.setting-item textarea {
width: 100% !important;
min-height: 150px;
resize: vertical;
}