From b6efbcedefa6d7148df65449706f97dc69e277dd Mon Sep 17 00:00:00 2001 From: Yutaka Ishii Date: Sat, 18 Nov 2017 13:46:46 +0900 Subject: [PATCH] design update 2 --- boostnote.json | 10 +++++ browser/components/NoteItem.js | 2 +- browser/components/NoteItem.styl | 8 ++-- browser/components/SideNavFilter.js | 30 ++++++++++++-- browser/components/SideNavFilter.styl | 46 ++++++++++++++------- browser/components/StorageItem.styl | 17 ++++---- browser/components/StorageList.styl | 2 +- browser/main/Detail/InfoButton.js | 2 +- browser/main/Detail/InfoButton.styl | 2 +- browser/main/Detail/InfoPanel.styl | 2 +- browser/main/Detail/MarkdownNoteDetail.js | 10 +++-- browser/main/Detail/MarkdownNoteDetail.styl | 2 +- browser/main/Detail/NoteDetailInfo.styl | 2 +- browser/main/Detail/SnippetNoteDetail.js | 2 +- browser/main/Detail/SnippetNoteDetail.styl | 1 + browser/main/Detail/StarButton.js | 8 ++-- browser/main/Detail/TrashButton.js | 2 +- browser/main/Detail/TrashButton.styl | 2 +- browser/main/NewNoteButton/index.js | 2 +- browser/main/NoteList/NoteList.styl | 4 +- browser/main/NoteList/index.js | 4 +- browser/main/SideNav/SideNav.styl | 11 +++-- browser/main/SideNav/StorageItem.js | 8 ++-- browser/main/SideNav/StorageItem.styl | 28 +++++++------ browser/main/SideNav/index.js | 19 +++++++-- browser/main/StatusBar/StatusBar.styl | 8 +++- browser/main/StatusBar/index.js | 4 +- browser/main/TopBar/TopBar.styl | 2 +- browser/main/global.styl | 1 + browser/styles/index.styl | 10 ++--- resources/icon/icon-all-active.svg | 18 ++++++++ resources/icon/icon-all.svg | 18 ++++++++ resources/icon/icon-column-list.svg | 20 +++++++++ resources/icon/icon-column.svg | 18 ++++++++ resources/icon/icon-down.svg | 17 ++++++++ resources/icon/icon-info-24.svg | 19 +++++++++ resources/icon/icon-info.svg | 19 +++++++++ resources/icon/icon-list-active.svg | 20 +++++++++ resources/icon/icon-list.svg | 20 +++++++++ resources/icon/icon-lock.svg | 18 ++++++++ resources/icon/icon-newnote.svg | 18 ++++++++ resources/icon/icon-note-code.svg | 20 +++++++++ resources/icon/icon-note-text.svg | 21 ++++++++++ resources/icon/icon-plus.svg | 18 ++++++++ resources/icon/icon-right.svg | 17 ++++++++ resources/icon/icon-setting.svg | 19 +++++++++ resources/icon/icon-sidebar-24.svg | 18 ++++++++ resources/icon/icon-sidebar.svg | 18 ++++++++ resources/icon/icon-star-24.svg | 18 ++++++++ resources/icon/icon-star-active.svg | 22 ++++++++++ resources/icon/icon-star.svg | 22 ++++++++++ resources/icon/icon-starred-24.svg | 18 ++++++++ resources/icon/icon-starred.svg | 20 +++++++++ resources/icon/icon-tag-active.svg | 17 ++++++++ resources/icon/icon-tag.svg | 17 ++++++++ resources/icon/icon-trash-24.svg | 18 ++++++++ resources/icon/icon-trash-active.svg | 18 ++++++++ resources/icon/icon-trash.svg | 18 ++++++++ resources/icon/icon-unlock.svg | 18 ++++++++ resources/icon/icon-zoom.svg | 20 +++++++++ resources/icon/info.svg | 18 ++++++++ 61 files changed, 741 insertions(+), 90 deletions(-) create mode 100644 boostnote.json create mode 100644 resources/icon/icon-all-active.svg create mode 100644 resources/icon/icon-all.svg create mode 100644 resources/icon/icon-column-list.svg create mode 100644 resources/icon/icon-column.svg create mode 100644 resources/icon/icon-down.svg create mode 100644 resources/icon/icon-info-24.svg create mode 100644 resources/icon/icon-info.svg create mode 100644 resources/icon/icon-list-active.svg create mode 100644 resources/icon/icon-list.svg create mode 100644 resources/icon/icon-lock.svg create mode 100644 resources/icon/icon-newnote.svg create mode 100644 resources/icon/icon-note-code.svg create mode 100644 resources/icon/icon-note-text.svg create mode 100644 resources/icon/icon-plus.svg create mode 100644 resources/icon/icon-right.svg create mode 100644 resources/icon/icon-setting.svg create mode 100644 resources/icon/icon-sidebar-24.svg create mode 100644 resources/icon/icon-sidebar.svg create mode 100644 resources/icon/icon-star-24.svg create mode 100644 resources/icon/icon-star-active.svg create mode 100644 resources/icon/icon-star.svg create mode 100644 resources/icon/icon-starred-24.svg create mode 100644 resources/icon/icon-starred.svg create mode 100644 resources/icon/icon-tag-active.svg create mode 100644 resources/icon/icon-tag.svg create mode 100644 resources/icon/icon-trash-24.svg create mode 100644 resources/icon/icon-trash-active.svg create mode 100644 resources/icon/icon-trash.svg create mode 100644 resources/icon/icon-unlock.svg create mode 100644 resources/icon/icon-zoom.svg create mode 100644 resources/icon/info.svg diff --git a/boostnote.json b/boostnote.json new file mode 100644 index 00000000..25d01e35 --- /dev/null +++ b/boostnote.json @@ -0,0 +1,10 @@ +{ + "folders": [ + { + "key": "3115e37e3d7131add9c6", + "color": "#E10051", + "name": "Notes" + } + ], + "version": "1.0" +} diff --git a/browser/components/NoteItem.js b/browser/components/NoteItem.js index e85df791..5df2d646 100644 --- a/browser/components/NoteItem.js +++ b/browser/components/NoteItem.js @@ -70,7 +70,7 @@ const NoteItem = ({ isActive, note, dateDisplay, handleNoteClick, handleNoteCont
{dateDisplay}
{note.isStarred - ? : '' + ? : '' } {note.isPinned && !pathname.match(/\/home|\/starred|\/trash/) ? : '' diff --git a/browser/components/NoteItem.styl b/browser/components/NoteItem.styl index d410a7cf..7a511801 100644 --- a/browser/components/NoteItem.styl +++ b/browser/components/NoteItem.styl @@ -125,10 +125,10 @@ $control-height = 30px .item-star position absolute - right -20px - bottom 2px - width 34px - height 34px + right -10px + bottom 12px + width 16px + height 16px color alpha($ui-favorite-star-button-color, 60%) font-size 12px padding 0 diff --git a/browser/components/SideNavFilter.js b/browser/components/SideNavFilter.js index 1fc59d7e..8e92fd01 100644 --- a/browser/components/SideNavFilter.js +++ b/browser/components/SideNavFilter.js @@ -19,27 +19,51 @@ const SideNavFilter = ({ counterTotalNote, counterStarredNote }) => (
+ + + + + +
) diff --git a/browser/components/SideNavFilter.styl b/browser/components/SideNavFilter.styl index 332f3a38..bd914cdb 100644 --- a/browser/components/SideNavFilter.styl +++ b/browser/components/SideNavFilter.styl @@ -3,41 +3,55 @@ .menu-button navButtonColor() - height 32px - padding 0 15px - font-size 13px + height 36px + padding 0 15px 0 20px + font-size 14px width 100% text-align left overflow ellipsis - &:hover - color $ui-button-default-color + display flex + align-items center + &:hover, &:active, &:active:hover + color #1EC38B background-color alpha($ui-button-default--active-backgroundColor, 20%) - transition background-color 0.15s - &:active, &:active:hover - color $ui-button-default-color - background-color $ui-button-default--active-backgroundColor +.iconWrap + width 20px + text-align center + .counters float right color $ui-inactive-text-color .menu-button--active @extend .menu-button - color #e74c3c SideNavFilter() + color #1EC38B + background-color alpha($ui-button-default--active-backgroundColor, 20%) + .menu-button-label, .counters + color #1EC38B + &:hover + color #1EC38B .menu-button-star--active @extend .menu-button - color #F9BF3B SideNavFilter() + color #1EC38B + background-color alpha($ui-button-default--active-backgroundColor, 20%) + .menu-button-label, .counters + color #1EC38B .menu-button-trash--active @extend .menu-button - color #5D9E36 SideNavFilter() + color #1EC38B + background-color alpha($ui-button-default--active-backgroundColor, 20%) + .menu-button-label, .counters + color #1EC38B .menu-button-label - margin-left 5px + margin-left 10px + flex 1 .menu--folded @extend .menu @@ -46,6 +60,7 @@ &:hover .menu-button-label transition opacity 0.15s opacity 1 + .menu-button-label position fixed display inline-block @@ -55,9 +70,7 @@ margin-top -8px margin-left 0 overflow ellipsis - background-color $ui-tooltip-backgroundColor z-index 10 - color white line-height 32px border-top-right-radius 2px border-bottom-right-radius 2px @@ -67,6 +80,9 @@ .counters display none + + + body[data-theme="white"] .menu-button navWhiteButtonColor() diff --git a/browser/components/StorageItem.styl b/browser/components/StorageItem.styl index 373e94aa..4a1b2d6f 100644 --- a/browser/components/StorageItem.styl +++ b/browser/components/StorageItem.styl @@ -5,31 +5,30 @@ .folderList-item display flex width 100% - height 26px + height 34px background-color transparent color $ui-inactive-text-color padding 0 - margin-bottom 5px text-align left border none overflow ellipsis - font-size 13px + font-size 14px &:first-child margin-top 0 &:hover - color $ui-button-default-color + color #1EC38B; background-color alpha($ui-button-default--active-backgroundColor, 20%) transition background-color 0.15s &:active color $$ui-button-default-color - background-color $ui-button-default--active-backgroundColor - + background-color alpha($ui-button-default--active-backgroundColor, 20%) + .folderList-item--active @extend .folderList-item - color $ui-button-default-color - background-color $ui-button-default--active-backgroundColor + color #1EC38B + background-color alpha($ui-button-default--active-backgroundColor, 20%) &:hover - color $ui-button-default-color + color #1EC38B; background-color alpha($ui-button-default--active-backgroundColor, 50%) .folderList-item-name diff --git a/browser/components/StorageList.styl b/browser/components/StorageList.styl index 622905b1..dfb06b45 100644 --- a/browser/components/StorageList.styl +++ b/browser/components/StorageList.styl @@ -1,7 +1,7 @@ .storageList absolute left right bottom 37px - top 160px + top 180px overflow-y auto .storageList-empty diff --git a/browser/main/Detail/InfoButton.js b/browser/main/Detail/InfoButton.js index ce9f35de..478259c1 100644 --- a/browser/main/Detail/InfoButton.js +++ b/browser/main/Detail/InfoButton.js @@ -8,7 +8,7 @@ const InfoButton = ({ ) diff --git a/browser/main/Detail/InfoButton.styl b/browser/main/Detail/InfoButton.styl index f5ed4c6a..570a09eb 100644 --- a/browser/main/Detail/InfoButton.styl +++ b/browser/main/Detail/InfoButton.styl @@ -14,7 +14,7 @@ .infoButton padding 0px - margin 15px 0 + margin 45px 0 body[data-theme="dark"] .control-infoButton diff --git a/browser/main/Detail/InfoPanel.styl b/browser/main/Detail/InfoPanel.styl index 980df6d4..42041f5d 100644 --- a/browser/main/Detail/InfoPanel.styl +++ b/browser/main/Detail/InfoPanel.styl @@ -11,7 +11,7 @@ .control-infoButton-panel z-index 200 margin-top 38px - right 0px + right 0 position absolute padding 20px 25px 0 25px width 300px diff --git a/browser/main/Detail/MarkdownNoteDetail.js b/browser/main/Detail/MarkdownNoteDetail.js index a427198b..9e376d0c 100644 --- a/browser/main/Detail/MarkdownNoteDetail.js +++ b/browser/main/Detail/MarkdownNoteDetail.js @@ -232,7 +232,7 @@ class MarkdownNoteDetail extends React.Component { } getToggleLockButton () { - return this.state.isLocked ? 'fa-eye-slash' : 'fa-eye' + return this.state.isLocked ? '../resources/icon/icon-lock.svg' : '../resources/icon/icon-unlock.svg' } handleDeleteKeyDown (e) { @@ -332,23 +332,25 @@ class MarkdownNoteDetail extends React.Component { /> {(() => { - const faClassName = `fa ${this.getToggleLockButton()}` + const imgSrc = `${this.getToggleLockButton()}` const lockButtonComponent = + return ( this.state.isLockButtonShown ? lockButtonComponent : '' ) })()} + this.handleTrashButtonClick(e)} /> diff --git a/browser/main/Detail/MarkdownNoteDetail.styl b/browser/main/Detail/MarkdownNoteDetail.styl index a4ed7762..c8b02bc9 100644 --- a/browser/main/Detail/MarkdownNoteDetail.styl +++ b/browser/main/Detail/MarkdownNoteDetail.styl @@ -12,6 +12,7 @@ .control-lockButton top 160px + margin-bottom 10px topBarButtonLight() .trashed-infopanel @@ -28,7 +29,6 @@ right $note-detail-right-margin top $info-height + $info-margin-under-border bottom $statusBar-height - .body-noteEditor absolute top bottom left right diff --git a/browser/main/Detail/NoteDetailInfo.styl b/browser/main/Detail/NoteDetailInfo.styl index 8d03d4c7..fa0f8a65 100644 --- a/browser/main/Detail/NoteDetailInfo.styl +++ b/browser/main/Detail/NoteDetailInfo.styl @@ -52,7 +52,7 @@ $info-margin-under-border = 15px .info-right position absolute right -20px - top 0 + top 10px background $ui-noteDetail-backgroundColor bottom 1px padding-left 30px diff --git a/browser/main/Detail/SnippetNoteDetail.js b/browser/main/Detail/SnippetNoteDetail.js index 3ef08340..38c5d1b4 100644 --- a/browser/main/Detail/SnippetNoteDetail.js +++ b/browser/main/Detail/SnippetNoteDetail.js @@ -610,7 +610,7 @@ class SnippetNoteDetail extends React.Component { this.handleTrashButtonClick(e)} /> diff --git a/browser/main/Detail/SnippetNoteDetail.styl b/browser/main/Detail/SnippetNoteDetail.styl index bfd8e6b2..7b73896c 100644 --- a/browser/main/Detail/SnippetNoteDetail.styl +++ b/browser/main/Detail/SnippetNoteDetail.styl @@ -67,6 +67,7 @@ .control-fullScreenButton top 80px + margin-bottom 10px topBarButtonLight() body[data-theme="white"] diff --git a/browser/main/Detail/StarButton.js b/browser/main/Detail/StarButton.js index 8610c950..7350bc98 100644 --- a/browser/main/Detail/StarButton.js +++ b/browser/main/Detail/StarButton.js @@ -47,10 +47,10 @@ class StarButton extends React.Component { onMouseLeave={(e) => this.handleMouseLeave(e)} onClick={this.props.onClick} > - diff --git a/browser/main/Detail/TrashButton.js b/browser/main/Detail/TrashButton.js index 04dcaacd..f15cac6d 100644 --- a/browser/main/Detail/TrashButton.js +++ b/browser/main/Detail/TrashButton.js @@ -8,7 +8,7 @@ const TrashButton = ({ ) diff --git a/browser/main/Detail/TrashButton.styl b/browser/main/Detail/TrashButton.styl index 91bc24c7..b1edbb5f 100644 --- a/browser/main/Detail/TrashButton.styl +++ b/browser/main/Detail/TrashButton.styl @@ -1,5 +1,6 @@ .control-trashButton top 120px + margin-bottom 10px topBarButtonLight() .control-trashButton--in-trash @@ -8,7 +9,6 @@ .trashButton padding 0px - margin 15px 0 body[data-theme="dark"] .control-trashButton diff --git a/browser/main/NewNoteButton/index.js b/browser/main/NewNoteButton/index.js index 936bb146..b27bb3ab 100644 --- a/browser/main/NewNoteButton/index.js +++ b/browser/main/NewNoteButton/index.js @@ -85,7 +85,7 @@ class NewNoteButton extends React.Component {
diff --git a/browser/main/SideNav/SideNav.styl b/browser/main/SideNav/SideNav.styl index c7b4ae40..191a7cce 100644 --- a/browser/main/SideNav/SideNav.styl +++ b/browser/main/SideNav/SideNav.styl @@ -23,13 +23,13 @@ background-color transparent &:active, &:active:hover color $ui-button-default--active-backgroundColor - background-color transparent .switch-buttons background-color transparent border 0 - height 25px - margin 20px auto 0px 8px + margin 24px auto 4px 14px + display flex + text-align center .non-active-button color $ui-inactive-text-color @@ -37,13 +37,16 @@ border 0 background-color transparent transition 0.2s + display flex + text-align center + margin-right 4px; &:hover color alpha(#239F86, 60%) .active-button @extend .non-active-button color $ui-button-default--active-backgroundColor - + .top-menu-label margin-left 5px overflow ellipsis diff --git a/browser/main/SideNav/StorageItem.js b/browser/main/SideNav/StorageItem.js index c7985f75..24f08108 100644 --- a/browser/main/SideNav/StorageItem.js +++ b/browser/main/SideNav/StorageItem.js @@ -226,9 +226,9 @@ class StorageItem extends React.Component { @@ -237,7 +237,7 @@ class StorageItem extends React.Component { } diff --git a/browser/main/SideNav/StorageItem.styl b/browser/main/SideNav/StorageItem.styl index a0690120..95d58198 100644 --- a/browser/main/SideNav/StorageItem.styl +++ b/browser/main/SideNav/StorageItem.styl @@ -5,19 +5,23 @@ .header position relative - height 25px + height 36px width 100% margin-bottom 5px transition 0.15s + display flex + align-items center .header--active margin-bottom 5px - background-color $ui-button-default--active-backgroundColor + background-color alpha($ui-button-default--active-backgroundColor, 20%) transition color background-color 0.15s + display flex + align-items center .header-toggleButton .header-info .header-addFolderButton - color $ui-button-default-color + color #1EC38B .header-toggleButton navButtonColor() @@ -37,23 +41,24 @@ navButtonColor() display block width 100% - height 25px - padding-left 23px - padding-right 10px + height 36px + padding-left 25px + padding-right 15px line-height 22px cursor pointer - font-size 13px + font-size 14px border none overflow ellipsis text-align left + font-weight 600; background-color transparent &:hover - color $ui-button-default-color + color #1EC38B background-color alpha($ui-button-default--active-backgroundColor, 20%) transition background-color 0.15s &:active, &:active:hover - color $ui-button-default-color - background-color $ui-button-default--active-backgroundColor + color #1EC38B + background-color alpha($ui-button-default--active-backgroundColor, 20%) .header-info-path font-size 10px @@ -62,12 +67,11 @@ .header-addFolderButton navButtonColor() position absolute - right 0 + right 10px width 25px height 25px padding 0 border none - margin-right 5px border-radius 50% &:hover transition 0.2s diff --git a/browser/main/SideNav/index.js b/browser/main/SideNav/index.js index b1dad96c..3680fa87 100644 --- a/browser/main/SideNav/index.js +++ b/browser/main/SideNav/index.js @@ -161,15 +161,26 @@ class SideNav extends React.Component { >
- - + +
diff --git a/browser/main/StatusBar/StatusBar.styl b/browser/main/StatusBar/StatusBar.styl index 519950f8..77b3f1c2 100644 --- a/browser/main/StatusBar/StatusBar.styl +++ b/browser/main/StatusBar/StatusBar.styl @@ -21,8 +21,12 @@ .zoom navButtonColor() - height 24px - + height 30px + display flex + align-items center + span + margin-left 5px + .update navButtonColor() height 24px diff --git a/browser/main/StatusBar/index.js b/browser/main/StatusBar/index.js index c1ec0e71..2b625c0e 100644 --- a/browser/main/StatusBar/index.js +++ b/browser/main/StatusBar/index.js @@ -55,8 +55,8 @@ class StatusBar extends React.Component { {status.updateReady diff --git a/browser/main/TopBar/TopBar.styl b/browser/main/TopBar/TopBar.styl index 5ef7e363..3e5a7275 100644 --- a/browser/main/TopBar/TopBar.styl +++ b/browser/main/TopBar/TopBar.styl @@ -36,7 +36,7 @@ $control-height = 34px outline none border none color $ui-text-color - font-size 16px + font-size 18px padding-bottom 2px background-color $ui-noteList-backgroundColor diff --git a/browser/main/global.styl b/browser/main/global.styl index 9da7a596..fe52a1c7 100644 --- a/browser/main/global.styl +++ b/browser/main/global.styl @@ -12,6 +12,7 @@ body color textColor font-size fontSize font-weight 200 + -webkit-font-smoothing antialiased button, input, select, textarea font-family DEFAULT_FONTS diff --git a/browser/styles/index.styl b/browser/styles/index.styl index dd572191..fd98a3b8 100644 --- a/browser/styles/index.styl +++ b/browser/styles/index.styl @@ -129,15 +129,11 @@ SideNavFilter() .menu-button-label color $ui-button-default-color &:hover - background-color alpha($ui-button-default--hover-backgroundColor, 50%) - color $ui-button-default-color - .menu-button-label - color $ui-button-default-color + background-color alpha($ui-button-default--hover-backgroundColor, 20%) &:active, &:active:hover - background-color alpha($ui-button-default--hover-backgroundColor, 50%) - color $ui-button-default-color + background-color alpha($ui-button-default--hover-backgroundColor, 20%) .menu-button-label - color $ui-button-default-color + color #1EC38B /** * Nav diff --git a/resources/icon/icon-all-active.svg b/resources/icon/icon-all-active.svg new file mode 100644 index 00000000..3e3ade1c --- /dev/null +++ b/resources/icon/icon-all-active.svg @@ -0,0 +1,18 @@ + + + + icon-all + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-all.svg b/resources/icon/icon-all.svg new file mode 100644 index 00000000..1db75a98 --- /dev/null +++ b/resources/icon/icon-all.svg @@ -0,0 +1,18 @@ + + + + icon-all + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-column-list.svg b/resources/icon/icon-column-list.svg new file mode 100644 index 00000000..e8f04dad --- /dev/null +++ b/resources/icon/icon-column-list.svg @@ -0,0 +1,20 @@ + + + + icon-column-list + Created with Sketch. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-column.svg b/resources/icon/icon-column.svg new file mode 100644 index 00000000..fa5f46a7 --- /dev/null +++ b/resources/icon/icon-column.svg @@ -0,0 +1,18 @@ + + + + icon-column + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-down.svg b/resources/icon/icon-down.svg new file mode 100644 index 00000000..2914499c --- /dev/null +++ b/resources/icon/icon-down.svg @@ -0,0 +1,17 @@ + + + + icon-down + Created with Sketch. + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-info-24.svg b/resources/icon/icon-info-24.svg new file mode 100644 index 00000000..28b2afb5 --- /dev/null +++ b/resources/icon/icon-info-24.svg @@ -0,0 +1,19 @@ + + + + icon-info-24 + Created with Sketch. + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-info.svg b/resources/icon/icon-info.svg new file mode 100644 index 00000000..b7ac5bb1 --- /dev/null +++ b/resources/icon/icon-info.svg @@ -0,0 +1,19 @@ + + + + icon-info + Created with Sketch. + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-list-active.svg b/resources/icon/icon-list-active.svg new file mode 100644 index 00000000..5da16c7c --- /dev/null +++ b/resources/icon/icon-list-active.svg @@ -0,0 +1,20 @@ + + + + icon-list-active + Created with Sketch. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-list.svg b/resources/icon/icon-list.svg new file mode 100644 index 00000000..41ca8a4d --- /dev/null +++ b/resources/icon/icon-list.svg @@ -0,0 +1,20 @@ + + + + icon-list + Created with Sketch. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-lock.svg b/resources/icon/icon-lock.svg new file mode 100644 index 00000000..e4ff775f --- /dev/null +++ b/resources/icon/icon-lock.svg @@ -0,0 +1,18 @@ + + + + icon-lock + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-newnote.svg b/resources/icon/icon-newnote.svg new file mode 100644 index 00000000..2daac352 --- /dev/null +++ b/resources/icon/icon-newnote.svg @@ -0,0 +1,18 @@ + + + + icon-newnote3 + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-note-code.svg b/resources/icon/icon-note-code.svg new file mode 100644 index 00000000..4dd832e7 --- /dev/null +++ b/resources/icon/icon-note-code.svg @@ -0,0 +1,20 @@ + + + + icon-note-code + Created with Sketch. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-note-text.svg b/resources/icon/icon-note-text.svg new file mode 100644 index 00000000..3fb972b1 --- /dev/null +++ b/resources/icon/icon-note-text.svg @@ -0,0 +1,21 @@ + + + + icon-note-text + Created with Sketch. + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-plus.svg b/resources/icon/icon-plus.svg new file mode 100644 index 00000000..062fac29 --- /dev/null +++ b/resources/icon/icon-plus.svg @@ -0,0 +1,18 @@ + + + + icon-plus + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-right.svg b/resources/icon/icon-right.svg new file mode 100644 index 00000000..448ff6b4 --- /dev/null +++ b/resources/icon/icon-right.svg @@ -0,0 +1,17 @@ + + + + icon-right + Created with Sketch. + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-setting.svg b/resources/icon/icon-setting.svg new file mode 100644 index 00000000..75a842e5 --- /dev/null +++ b/resources/icon/icon-setting.svg @@ -0,0 +1,19 @@ + + + + icon-setting + Created with Sketch. + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-sidebar-24.svg b/resources/icon/icon-sidebar-24.svg new file mode 100644 index 00000000..efdc3ebb --- /dev/null +++ b/resources/icon/icon-sidebar-24.svg @@ -0,0 +1,18 @@ + + + + icon-sidebar-24 + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-sidebar.svg b/resources/icon/icon-sidebar.svg new file mode 100644 index 00000000..26f2be2a --- /dev/null +++ b/resources/icon/icon-sidebar.svg @@ -0,0 +1,18 @@ + + + + icon-sidebar + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-star-24.svg b/resources/icon/icon-star-24.svg new file mode 100644 index 00000000..40b9bf45 --- /dev/null +++ b/resources/icon/icon-star-24.svg @@ -0,0 +1,18 @@ + + + + icon-star-24 + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-star-active.svg b/resources/icon/icon-star-active.svg new file mode 100644 index 00000000..c87b883d --- /dev/null +++ b/resources/icon/icon-star-active.svg @@ -0,0 +1,22 @@ + + + + icon-star-active + Created with Sketch. + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-star.svg b/resources/icon/icon-star.svg new file mode 100644 index 00000000..c9a6d84b --- /dev/null +++ b/resources/icon/icon-star.svg @@ -0,0 +1,22 @@ + + + + icon-star + Created with Sketch. + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-starred-24.svg b/resources/icon/icon-starred-24.svg new file mode 100644 index 00000000..3e44a3e2 --- /dev/null +++ b/resources/icon/icon-starred-24.svg @@ -0,0 +1,18 @@ + + + + icon-starred-24 + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-starred.svg b/resources/icon/icon-starred.svg new file mode 100644 index 00000000..68eb6f07 --- /dev/null +++ b/resources/icon/icon-starred.svg @@ -0,0 +1,20 @@ + + + + icon-starred + Created with Sketch. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-tag-active.svg b/resources/icon/icon-tag-active.svg new file mode 100644 index 00000000..887e7344 --- /dev/null +++ b/resources/icon/icon-tag-active.svg @@ -0,0 +1,17 @@ + + + + icon-tag-active + Created with Sketch. + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-tag.svg b/resources/icon/icon-tag.svg new file mode 100644 index 00000000..ee23dcfc --- /dev/null +++ b/resources/icon/icon-tag.svg @@ -0,0 +1,17 @@ + + + + icon-tag + Created with Sketch. + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-trash-24.svg b/resources/icon/icon-trash-24.svg new file mode 100644 index 00000000..a72ff7da --- /dev/null +++ b/resources/icon/icon-trash-24.svg @@ -0,0 +1,18 @@ + + + + icon-trash-24 + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-trash-active.svg b/resources/icon/icon-trash-active.svg new file mode 100644 index 00000000..593098fc --- /dev/null +++ b/resources/icon/icon-trash-active.svg @@ -0,0 +1,18 @@ + + + + icon-trash-active + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-trash.svg b/resources/icon/icon-trash.svg new file mode 100644 index 00000000..431972bd --- /dev/null +++ b/resources/icon/icon-trash.svg @@ -0,0 +1,18 @@ + + + + icon-trash + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-unlock.svg b/resources/icon/icon-unlock.svg new file mode 100644 index 00000000..75503cfb --- /dev/null +++ b/resources/icon/icon-unlock.svg @@ -0,0 +1,18 @@ + + + + icon-unlock + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/icon-zoom.svg b/resources/icon/icon-zoom.svg new file mode 100644 index 00000000..f45e7da0 --- /dev/null +++ b/resources/icon/icon-zoom.svg @@ -0,0 +1,20 @@ + + + + icon-zoom + Created with Sketch. + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/icon/info.svg b/resources/icon/info.svg new file mode 100644 index 00000000..d724468b --- /dev/null +++ b/resources/icon/info.svg @@ -0,0 +1,18 @@ + + + + info + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file