mirror of
https://github.com/unabyss/obsidian-plugin.git
synced 2026-07-22 07:47:17 +00:00
Reduce background sync to once per day, clarify outbound success messaging, and center the brand mark in the settings header. Co-authored-by: Cursor <cursoragent@cursor.com>
86 lines
1.7 KiB
CSS
86 lines
1.7 KiB
CSS
.unabyss-settings-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.unabyss-logo {
|
|
flex-shrink: 0;
|
|
--unabyss-logo-bg: #181817;
|
|
--unabyss-logo-dot: #ffffff;
|
|
}
|
|
|
|
.theme-light .unabyss-logo {
|
|
--unabyss-logo-bg: #ffffff;
|
|
--unabyss-logo-dot: #181817;
|
|
}
|
|
|
|
.unabyss-logo .unabyss-logo-tile {
|
|
fill: var(--unabyss-logo-bg);
|
|
}
|
|
|
|
.unabyss-logo .unabyss-logo-dot {
|
|
fill: var(--unabyss-logo-dot);
|
|
}
|
|
|
|
.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-include-folders {
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.unabyss-folder-chip-subcontainer {
|
|
margin: 4px 0 0 0;
|
|
padding: 10px 12px;
|
|
border: 1px solid var(--background-modifier-border);
|
|
border-radius: 8px;
|
|
background: var(--background-secondary);
|
|
}
|
|
|
|
.unabyss-folder-chip-subcontainer-title {
|
|
font-size: var(--font-ui-smaller);
|
|
color: var(--text-muted);
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.unabyss-folder-chip-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.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;
|
|
}
|