raven-pensieve_obsidian-ace.../styles/QuickConfigModal.css
RavenHogWarts 27ed130899
feat: 统一使用路径别名将工程中的相对/相对路径导入改统一的路径别名 (#45)
@src 和 @styles),并更新 tsconfig 中的 paths 配置以支持这些
别名。主要修改集中在多个组件、hook、service 和 i18n 文件的
import 语句,替换原先的 "@/src/..." 等路径为 "@src/..." 或
"@styles/..."。此外调整了 SettingsStore 的导入位置以保持一
致性。

这样做的原因是简化模块导入、提高代码可读性并避免相对路
径带来的维护成本,方便重构和移动文件时不需大量修改导入
路径。
2025-10-29 20:57:18 +08:00

36 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);
}