mirror of
https://gitlab.com/ArkHost/HelixNotes.git
synced 2026-07-25 08:15:55 +02:00
tidy AppConfig types, md-it shims, dead CSS
This commit is contained in:
@@ -1841,21 +1841,6 @@
|
|||||||
padding: 2px 8px 4px;
|
padding: 2px 8px 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag-edit-input {
|
|
||||||
width: 100%;
|
|
||||||
padding: 4px 8px;
|
|
||||||
border: 1px solid var(--border-color);
|
|
||||||
border-radius: 4px;
|
|
||||||
background: var(--bg-secondary);
|
|
||||||
color: var(--text-primary);
|
|
||||||
font-size: 12px;
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tag-edit-input:focus {
|
|
||||||
border-color: var(--accent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tag-edit-list {
|
.tag-edit-list {
|
||||||
max-height: 160px;
|
max-height: 160px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
|||||||
Vendored
+5
@@ -0,0 +1,5 @@
|
|||||||
|
// Ambient type shims for markdown-it plugins that ship without their own TypeScript
|
||||||
|
// declarations. Type-only; no runtime effect.
|
||||||
|
declare module 'markdown-it-mark';
|
||||||
|
declare module 'markdown-it-sub';
|
||||||
|
declare module 'markdown-it-sup';
|
||||||
@@ -65,6 +65,7 @@ export interface AppConfig {
|
|||||||
pdf_height: number;
|
pdf_height: number;
|
||||||
title_mode: string;
|
title_mode: string;
|
||||||
hide_title_in_body: boolean;
|
hide_title_in_body: boolean;
|
||||||
|
show_line_numbers: boolean;
|
||||||
backup_enabled: boolean;
|
backup_enabled: boolean;
|
||||||
backup_frequency: string;
|
backup_frequency: string;
|
||||||
backup_max_count: number;
|
backup_max_count: number;
|
||||||
@@ -83,6 +84,7 @@ export interface AppConfig {
|
|||||||
ai_writing_style: string | null;
|
ai_writing_style: string | null;
|
||||||
default_view_mode: boolean;
|
default_view_mode: boolean;
|
||||||
show_tray_icon: boolean;
|
show_tray_icon: boolean;
|
||||||
|
close_to_tray: boolean;
|
||||||
enable_wiki_links: boolean;
|
enable_wiki_links: boolean;
|
||||||
restore_last_session: boolean;
|
restore_last_session: boolean;
|
||||||
sync_provider: string | null;
|
sync_provider: string | null;
|
||||||
|
|||||||
Reference in New Issue
Block a user