boxicons 2.0.5

This commit is contained in:
zadam 2020-02-15 09:16:23 +01:00
parent 2fa41b44c5
commit 9337564075
12 changed files with 3307 additions and 2471 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 797 KiB

After

Width:  |  Height:  |  Size: 912 KiB

View File

@ -68,7 +68,7 @@ class TreeContextMenu {
enabled: isNotRoot && parentNotSearch && noSelectedNotes}, enabled: isNotRoot && parentNotSearch && noSelectedNotes},
{ title: "Advanced", uiIcon: "empty", enabled: true, items: [ { title: "Advanced", uiIcon: "empty", enabled: true, items: [
{ title: 'Collapse subtree <kbd data-kb-action="CollapseSubtree"></kbd>', cmd: "collapseSubtree", uiIcon: "align-justify", enabled: noSelectedNotes }, { title: 'Collapse subtree <kbd data-kb-action="CollapseSubtree"></kbd>', cmd: "collapseSubtree", uiIcon: "align-justify", enabled: noSelectedNotes },
{ title: "Force note sync", cmd: "forceNoteSync", uiIcon: "recycle", enabled: noSelectedNotes }, { title: "Force note sync", cmd: "forceNoteSync", uiIcon: "refresh", enabled: noSelectedNotes },
{ title: 'Sort alphabetically <kbd data-kb-action="SortChildNotes"></kbd>', cmd: "sortAlphabetically", uiIcon: "empty", enabled: noSelectedNotes && notSearch } { title: 'Sort alphabetically <kbd data-kb-action="SortChildNotes"></kbd>', cmd: "sortAlphabetically", uiIcon: "empty", enabled: noSelectedNotes && notSearch }
] }, ] },
{ title: "----" }, { title: "----" },

View File

@ -35,7 +35,7 @@ const TPL = `
</a> </a>
<a class="dropdown-item sync-now-button" title="Trigger sync"> <a class="dropdown-item sync-now-button" title="Trigger sync">
<span class="bx bx-recycle"></span> <span class="bx bx-refresh"></span>
Sync (<span id="outstanding-syncs-count">0</span>) Sync (<span id="outstanding-syncs-count">0</span>)
</a> </a>

View File

@ -206,7 +206,7 @@ export default class NoteTreeWidget extends TabAwareWidget {
const note = await treeCache.getNote(node.data.noteId); const note = await treeCache.getNote(node.data.noteId);
if (note.type === 'search' && $span.find('.refresh-search-button').length === 0) { if (note.type === 'search' && $span.find('.refresh-search-button').length === 0) {
const refreshSearchButton = $('<span>&nbsp; <span class="refresh-search-button bx bx-recycle" title="Refresh saved search results"></span></span>'); const refreshSearchButton = $('<span>&nbsp; <span class="refresh-search-button bx bx-refresh" title="Refresh saved search results"></span></span>');
$span.append(refreshSearchButton); $span.append(refreshSearchButton);
} }

View File

@ -11,7 +11,7 @@ const TPL = `
</button> </button>
<button type="button" <button type="button"
class="btn btn-sm icon-button bx bx-shield unprotect-button" class="btn btn-sm icon-button bx bx-shield-x unprotect-button"
title="Not protected note can be viewed without entering password"> title="Not protected note can be viewed without entering password">
</button> </button>
</div>`; </div>`;

View File

@ -59,7 +59,7 @@ ul.fancytree-container {
font-size: x-large; font-size: x-large;
text-transform: none; text-transform: none;
line-height: 1; line-height: 1;
content: "\e9fa"; content: "\ea1d";
position: relative; position: relative;
top: -2px; top: -2px;
margin-right: 5px; margin-right: 5px;
@ -72,7 +72,7 @@ ul.fancytree-container {
.fancytree-node.fancytree-expanded .fancytree-expander:before { .fancytree-node.fancytree-expanded .fancytree-expander:before {
font-family: 'boxicons' !important; font-family: 'boxicons' !important;
content: "\e9f8"; content: "\ea17";
} }
/** some common text styling for cssClass label */ /** some common text styling for cssClass label */