mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
Merge pull request #392 from SiriusXT/Icon_improvements
Icon improvements
This commit is contained in:
parent
fe844d4f8c
commit
a4341a5cac
@ -42,9 +42,9 @@ const NOTE_TYPE_ICONS = {
|
|||||||
"code": "bx bx-code",
|
"code": "bx bx-code",
|
||||||
"render": "bx bx-extension",
|
"render": "bx bx-extension",
|
||||||
"search": "bx bx-file-find",
|
"search": "bx bx-file-find",
|
||||||
"relationMap": "bx bx-map-alt",
|
"relationMap": "bx bxs-network-chart",
|
||||||
"book": "bx bx-book",
|
"book": "bx bx-book",
|
||||||
"noteMap": "bx bx-map-alt",
|
"noteMap": "bx bxs-network-chart",
|
||||||
"mermaid": "bx bx-selection",
|
"mermaid": "bx bx-selection",
|
||||||
"canvas": "bx bx-pen",
|
"canvas": "bx bx-pen",
|
||||||
"webView": "bx bx-globe-alt",
|
"webView": "bx bx-globe-alt",
|
||||||
@ -570,7 +570,7 @@ class FNote {
|
|||||||
return workspaceIconClass;
|
return workspaceIconClass;
|
||||||
}
|
}
|
||||||
else if (this.noteId === 'root') {
|
else if (this.noteId === 'root') {
|
||||||
return "bx bx-chevrons-right";
|
return "bx bx-home-alt-2";
|
||||||
}
|
}
|
||||||
if (this.noteId === '_share') {
|
if (this.noteId === '_share') {
|
||||||
return "bx bx-share-alt";
|
return "bx bx-share-alt";
|
||||||
|
@ -14,9 +14,9 @@ const NOTE_TYPE_ICONS = {
|
|||||||
"code": "bx bx-code",
|
"code": "bx bx-code",
|
||||||
"render": "bx bx-extension",
|
"render": "bx bx-extension",
|
||||||
"search": "bx bx-file-find",
|
"search": "bx bx-file-find",
|
||||||
"relationMap": "bx bx-map-alt",
|
"relationMap": "bx bxs-network-chart",
|
||||||
"book": "bx bx-book",
|
"book": "bx bx-book",
|
||||||
"noteMap": "bx bx-map-alt",
|
"noteMap": "bx bxs-network-chart",
|
||||||
"mermaid": "bx bx-selection",
|
"mermaid": "bx bx-selection",
|
||||||
"canvas": "bx bx-pen",
|
"canvas": "bx bx-pen",
|
||||||
"webView": "bx bx-globe-alt",
|
"webView": "bx bx-globe-alt",
|
||||||
@ -543,7 +543,7 @@ class FNote {
|
|||||||
return workspaceIconClass;
|
return workspaceIconClass;
|
||||||
}
|
}
|
||||||
else if (this.noteId === 'root') {
|
else if (this.noteId === 'root') {
|
||||||
return "bx bx-chevrons-right";
|
return "bx bx-home-alt-2";
|
||||||
}
|
}
|
||||||
if (this.noteId === '_share') {
|
if (this.noteId === '_share') {
|
||||||
return "bx bx-share-alt";
|
return "bx bx-share-alt";
|
||||||
|
@ -7,8 +7,8 @@ async function getNoteTypeItems(command) {
|
|||||||
{ title: t("note_types.text"), command: command, type: "text", uiIcon: "bx bx-note" },
|
{ title: t("note_types.text"), command: command, type: "text", uiIcon: "bx bx-note" },
|
||||||
{ title: t("note_types.code"), command: command, type: "code", uiIcon: "bx bx-code" },
|
{ title: t("note_types.code"), command: command, type: "code", uiIcon: "bx bx-code" },
|
||||||
{ title: t("note_types.saved-search"), command: command, type: "search", uiIcon: "bx bx-file-find" },
|
{ title: t("note_types.saved-search"), command: command, type: "search", uiIcon: "bx bx-file-find" },
|
||||||
{ title: t("note_types.relation-map"), command: command, type: "relationMap", uiIcon: "bx bx-map-alt" },
|
{ title: t("note_types.relation-map"), command: command, type: "relationMap", uiIcon: "bx bxs-network-chart" },
|
||||||
{ title: t("note_types.note-map"), command: command, type: "noteMap", uiIcon: "bx bx-map-alt" },
|
{ title: t("note_types.note-map"), command: command, type: "noteMap", uiIcon: "bx bxs-network-chart" },
|
||||||
{ title: t("note_types.render-note"), command: command, type: "render", uiIcon: "bx bx-extension" },
|
{ title: t("note_types.render-note"), command: command, type: "render", uiIcon: "bx bx-extension" },
|
||||||
{ title: t("note_types.book"), command: command, type: "book", uiIcon: "bx bx-book" },
|
{ title: t("note_types.book"), command: command, type: "book", uiIcon: "bx bx-book" },
|
||||||
{ title: t("note_types.mermaid-diagram"), command: command, type: "mermaid", uiIcon: "bx bx-selection" },
|
{ title: t("note_types.mermaid-diagram"), command: command, type: "mermaid", uiIcon: "bx bx-selection" },
|
||||||
|
@ -126,7 +126,7 @@ const TPL = `
|
|||||||
|
|
||||||
<ul class="dropdown-menu dropdown-menu-right">
|
<ul class="dropdown-menu dropdown-menu-right">
|
||||||
<li class="dropdown-item" data-trigger-command="showOptions">
|
<li class="dropdown-item" data-trigger-command="showOptions">
|
||||||
<span class="bx bx-slider"></span>
|
<span class="bx bx-cog"></span>
|
||||||
${t('global_menu.options')}
|
${t('global_menu.options')}
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
@ -177,7 +177,7 @@ const TPL = `
|
|||||||
|
|
||||||
<li class="dropdown-item dropdown-submenu">
|
<li class="dropdown-item dropdown-submenu">
|
||||||
<span class="dropdown-toggle">
|
<span class="dropdown-toggle">
|
||||||
<span class="bx bx-empty"></span>
|
<span class="bx bx-chip"></span>
|
||||||
${t('global_menu.advanced')}
|
${t('global_menu.advanced')}
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
@ -195,43 +195,43 @@ const TPL = `
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="dropdown-item" data-trigger-command="showSQLConsoleHistory">
|
<li class="dropdown-item" data-trigger-command="showSQLConsoleHistory">
|
||||||
<span class="bx bx-empty"></span>
|
<span class="bx bx-data"></span>
|
||||||
${t('global_menu.open_sql_console_history')}
|
${t('global_menu.open_sql_console_history')}
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="dropdown-item" data-trigger-command="showSearchHistory">
|
<li class="dropdown-item" data-trigger-command="showSearchHistory">
|
||||||
<span class="bx bx-empty"></span>
|
<span class="bx bx-search-alt"></span>
|
||||||
${t('global_menu.open_search_history')}
|
${t('global_menu.open_search_history')}
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="dropdown-item" data-trigger-command="showBackendLog">
|
<li class="dropdown-item" data-trigger-command="showBackendLog">
|
||||||
<span class="bx bx-empty"></span>
|
<span class="bx bx-detail"></span>
|
||||||
${t('global_menu.show_backend_log')}
|
${t('global_menu.show_backend_log')}
|
||||||
<kbd data-command="showBackendLog"></kbd>
|
<kbd data-command="showBackendLog"></kbd>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="dropdown-item" data-trigger-command="reloadFrontendApp"
|
<li class="dropdown-item" data-trigger-command="reloadFrontendApp"
|
||||||
title="${t('global_menu.reload_hint')}">
|
title="${t('global_menu.reload_hint')}">
|
||||||
<span class="bx bx-empty"></span>
|
<span class="bx bx-refresh"></span>
|
||||||
${t('global_menu.reload_frontend')}
|
${t('global_menu.reload_frontend')}
|
||||||
<kbd data-command="reloadFrontendApp"></kbd>
|
<kbd data-command="reloadFrontendApp"></kbd>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="dropdown-item" data-trigger-command="showHiddenSubtree">
|
<li class="dropdown-item" data-trigger-command="showHiddenSubtree">
|
||||||
<span class="bx bx-empty"></span>
|
<span class="bx bx-hide"></span>
|
||||||
${t('global_menu.show_hidden_subtree')}
|
${t('global_menu.show_hidden_subtree')}
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="dropdown-item show-help-button" data-trigger-command="showHelp">
|
<li class="dropdown-item show-help-button" data-trigger-command="showHelp">
|
||||||
<span class="bx bx-info-circle"></span>
|
<span class="bx bx-help-circle"></span>
|
||||||
${t('global_menu.show_help')}
|
${t('global_menu.show_help')}
|
||||||
<kbd data-command="showHelp"></kbd>
|
<kbd data-command="showHelp"></kbd>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="dropdown-item show-about-dialog-button">
|
<li class="dropdown-item show-about-dialog-button">
|
||||||
<span class="bx bx-empty"></span>
|
<span class="bx bx-info-circle"></span>
|
||||||
${t('global_menu.about')}
|
${t('global_menu.about')}
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ export default class HighlightsListWidget extends RightPanelWidget {
|
|||||||
get widgetButtons() {
|
get widgetButtons() {
|
||||||
return [
|
return [
|
||||||
new OnClickButtonWidget()
|
new OnClickButtonWidget()
|
||||||
.icon("bx-slider")
|
.icon("bx-cog")
|
||||||
.title("Options")
|
.title("Options")
|
||||||
.titlePlacement("left")
|
.titlePlacement("left")
|
||||||
.onClick(() => appContext.tabManager.openContextWithNote('_optionsTextNotes', {activate: true}))
|
.onClick(() => appContext.tabManager.openContextWithNote('_optionsTextNotes', {activate: true}))
|
||||||
|
@ -106,7 +106,7 @@ const TPL = `
|
|||||||
title="Scroll to active note"
|
title="Scroll to active note"
|
||||||
data-trigger-command="scrollToActiveNote"></button>
|
data-trigger-command="scrollToActiveNote"></button>
|
||||||
|
|
||||||
<button class="tree-floating-button bx bx-cog tree-settings-button"
|
<button class="tree-floating-button bx bxs-tree tree-settings-button"
|
||||||
title="Tree settings"></button>
|
title="Tree settings"></button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ export default class NoteMapRibbonWidget extends NoteContextAwareWidget {
|
|||||||
return {
|
return {
|
||||||
show: this.isEnabled(),
|
show: this.isEnabled(),
|
||||||
title: t("note_map.title"),
|
title: t("note_map.title"),
|
||||||
icon: 'bx bx-map-alt'
|
icon: 'bx bxs-network-chart'
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ export default class TocWidget extends RightPanelWidget {
|
|||||||
get widgetButtons() {
|
get widgetButtons() {
|
||||||
return [
|
return [
|
||||||
new OnClickButtonWidget()
|
new OnClickButtonWidget()
|
||||||
.icon("bx-slider")
|
.icon("bx-cog")
|
||||||
.title("Options")
|
.title("Options")
|
||||||
.titlePlacement("left")
|
.titlePlacement("left")
|
||||||
.onClick(() => appContext.tabManager.openContextWithNote('_optionsTextNotes', {activate: true}))
|
.onClick(() => appContext.tabManager.openContextWithNote('_optionsTextNotes', {activate: true}))
|
||||||
|
@ -48,7 +48,7 @@ const HIDDEN_SUBTREE_DEFINITION: Item = {
|
|||||||
id: '_hidden',
|
id: '_hidden',
|
||||||
title: 'Hidden Notes',
|
title: 'Hidden Notes',
|
||||||
type: 'doc',
|
type: 'doc',
|
||||||
icon: 'bx bx-chip',
|
icon: 'bx bx-hide',
|
||||||
// we want to keep the hidden subtree always last, otherwise there will be problems with e.g., keyboard navigation
|
// we want to keep the hidden subtree always last, otherwise there will be problems with e.g., keyboard navigation
|
||||||
// over tree when it's in the middle
|
// over tree when it's in the middle
|
||||||
notePosition: 999_999_999,
|
notePosition: 999_999_999,
|
||||||
@ -222,7 +222,7 @@ const HIDDEN_SUBTREE_DEFINITION: Item = {
|
|||||||
{ id: '_lbJumpTo', title: 'Jump to Note', type: 'launcher', command: 'jumpToNote', icon: 'bx bx-send', attributes: [
|
{ id: '_lbJumpTo', title: 'Jump to Note', type: 'launcher', command: 'jumpToNote', icon: 'bx bx-send', attributes: [
|
||||||
{ type: 'label', name: 'desktopOnly' }
|
{ type: 'label', name: 'desktopOnly' }
|
||||||
] },
|
] },
|
||||||
{ id: '_lbNoteMap', title: 'Note Map', type: 'launcher', targetNoteId: '_globalNoteMap', icon: 'bx bx-map-alt' },
|
{ id: '_lbNoteMap', title: 'Note Map', type: 'launcher', targetNoteId: '_globalNoteMap', icon: 'bx bxs-network-chart' },
|
||||||
{ id: '_lbCalendar', title: 'Calendar', type: 'launcher', builtinWidget: 'calendar', icon: 'bx bx-calendar' },
|
{ id: '_lbCalendar', title: 'Calendar', type: 'launcher', builtinWidget: 'calendar', icon: 'bx bx-calendar' },
|
||||||
{ id: '_lbRecentChanges', title: 'Recent Changes', type: 'launcher', command: 'showRecentChanges', icon: 'bx bx-history', attributes: [
|
{ id: '_lbRecentChanges', title: 'Recent Changes', type: 'launcher', command: 'showRecentChanges', icon: 'bx bx-history', attributes: [
|
||||||
{ type: 'label', name: 'desktopOnly' }
|
{ type: 'label', name: 'desktopOnly' }
|
||||||
@ -241,6 +241,7 @@ const HIDDEN_SUBTREE_DEFINITION: Item = {
|
|||||||
id: '_options',
|
id: '_options',
|
||||||
title: 'Options',
|
title: 'Options',
|
||||||
type: 'book',
|
type: 'book',
|
||||||
|
icon: 'bx-cog',
|
||||||
children: [
|
children: [
|
||||||
{ id: '_optionsAppearance', title: 'Appearance', type: 'contentWidget', icon: 'bx-layout' },
|
{ id: '_optionsAppearance', title: 'Appearance', type: 'contentWidget', icon: 'bx-layout' },
|
||||||
{ id: '_optionsShortcuts', title: 'Shortcuts', type: 'contentWidget', icon: 'bxs-keyboard' },
|
{ id: '_optionsShortcuts', title: 'Shortcuts', type: 'contentWidget', icon: 'bxs-keyboard' },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user