mirror of
https://github.com/unabyss/obsidian-plugin.git
synced 2026-07-22 07:47:17 +00:00
- manifest: drop redundant "Obsidian" from description - settings: render logo as inline themed SVG (no shipped image assets, adapts via currentColor), move all inline styles to styles.css, use Setting().setHeading() for section headers, drop document/activeDocument access, and avoid returning a promise from a void event handler - syncInbound: use FileManager.trashFile to respect the user's deletion preference instead of Vault.trash - main: type catch parameters as unknown (no unsafe any) - apiClient: optional catch binding for the unused error - build: replace builtin-modules package with node:module builtinModules - release CI: attach only main.js/manifest.json/styles.css and add build provenance attestations - versions.json: backfill 1.0.1 and 1.1.1 Co-authored-by: Cursor <cursoragent@cursor.com>
56 lines
1 KiB
CSS
56 lines
1 KiB
CSS
.unabyss-settings-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.unabyss-settings-logo {
|
|
width: 32px;
|
|
height: 32px;
|
|
flex-shrink: 0;
|
|
color: var(--text-normal);
|
|
}
|
|
|
|
.unabyss-settings-title {
|
|
margin: 0;
|
|
font-size: var(--font-ui-large);
|
|
font-weight: var(--font-bold);
|
|
}
|
|
|
|
.unabyss-connection-banner {
|
|
margin-bottom: 16px;
|
|
padding: 12px 14px;
|
|
border-radius: 8px;
|
|
border: 1px solid var(--background-modifier-border);
|
|
background: var(--background-secondary);
|
|
}
|
|
|
|
.unabyss-connection-banner-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.unabyss-folder-chip-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.unabyss-folder-chip {
|
|
padding: 4px 8px;
|
|
border: 1px solid var(--background-modifier-border);
|
|
border-radius: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.unabyss-folder-chip-remove {
|
|
background: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|