mirror of
https://github.com/raven-pensieve/obsidian-ace-code-editor.git
synced 2026-07-22 12:50:24 +00:00
37 lines
716 B
CSS
37 lines
716 B
CSS
|
|
.ace-quick-config-modal .suggestion-item {
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ace-quick-config-modal .suggestion-current-indicator {
|
||
|
|
color: var(--text-accent);
|
||
|
|
font-weight: bold;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ace-quick-config-modal .suggestion-content {
|
||
|
|
flex-grow: 1;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ace-quick-config-modal .suggestion-title {
|
||
|
|
font-weight: 500;
|
||
|
|
margin-bottom: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ace-quick-config-modal .suggestion-description {
|
||
|
|
font-size: 12px;
|
||
|
|
color: var(--text-muted);
|
||
|
|
opacity: 0.8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ace-quick-config-modal .prompt-instructions {
|
||
|
|
background-color: var(--background-secondary);
|
||
|
|
}
|
||
|
|
|
||
|
|
.ace-quick-config-modal .prompt-instruction-command {
|
||
|
|
font-weight: bold;
|
||
|
|
color: var(--text-normal);
|
||
|
|
}
|