- 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.
64 lines
1.1 KiB
CSS
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;
|
|
}
|