diff --git a/Backers.md b/Backers.md index 9257e320..582f06c2 100644 --- a/Backers.md +++ b/Backers.md @@ -37,3 +37,7 @@ Adam - $5 Steve - $5 evmin - $5 + +[@yeojoy](https://twitter.com/yeojoy) - $5 + +Scotia Draven - $5 diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md index a4db373b..be4b7e4f 100644 --- a/ISSUE_TEMPLATE.md +++ b/ISSUE_TEMPLATE.md @@ -1,3 +1,10 @@ + + + diff --git a/browser/components/NoteItem.styl b/browser/components/NoteItem.styl index bda90407..542eb6e1 100644 --- a/browser/components/NoteItem.styl +++ b/browser/components/NoteItem.styl @@ -59,7 +59,15 @@ $control-height = 30px .item-star color $ui-favorite-star-button-color &:hover - background-color $ui-button--active-backgroundColor + background-color alpha($ui-button--active-backgroundColor, 50%) + color #e74c3c + .menu-button-label + color $ui-text-color + &:active, &:active:hover + background-color alpha($ui-button--active-backgroundColor, 50%) + color #e74c3c + .menu-button-label + color $ui-text-color .item-title-icon position relative @@ -111,7 +119,7 @@ $control-height = 30px .item-bottom-time color $ui-inactive-text-color - font-size 11px + font-size 13px padding-left 2px padding-bottom 2px @@ -148,6 +156,7 @@ body[data-theme="dark"] &:hover transition 0.15s background-color alpha($ui-dark-button--active-backgroundColor, 20%) + color $ui-dark-text-color .item-title .item-title-icon .item-bottom-time @@ -155,11 +164,12 @@ body[data-theme="dark"] color $ui-dark-text-color .item-bottom-tagList-item transition 0.15s - background-color alpha($ui-dark-button--active-backgroundColor, 40%) + background-color alpha(#fff, 20%) color $ui-dark-text-color &:active transition 0.15s background-color $ui-dark-button--active-backgroundColor + color $ui-dark-text-color .item-title .item-title-icon .item-bottom-time @@ -185,6 +195,11 @@ body[data-theme="dark"] .item-bottom-tagList-item background-color alpha(white, 10%) color $ui-dark-text-color + &:hover + background-color alpha($ui-dark-button--active-backgroundColor, 50%) + color #c0392b + .item-bottom-tagList-item + background-color alpha(#fff, 20%) .item-title color $ui-inactive-text-color diff --git a/browser/components/NoteItemSimple.styl b/browser/components/NoteItemSimple.styl index 2333353e..aa01d4ab 100644 --- a/browser/components/NoteItemSimple.styl +++ b/browser/components/NoteItemSimple.styl @@ -37,7 +37,15 @@ $control-height = 30px .item-simple-title-icon color $ui-text-color &:hover - background-color $ui-button--active-backgroundColor + background-color alpha($ui-button--active-backgroundColor, 50%) + color #e74c3c + .menu-button-label + color $ui-text-color + &:active, &:active:hover + background-color alpha($ui-button--active-backgroundColor, 50%) + color #e74c3c + .menu-button-label + color $ui-text-color .item-simple-title font-size 13px @@ -67,33 +75,50 @@ body[data-theme="dark"] .item-simple border-color $ui-dark-borderColor background-color $ui-dark-noteList-backgroundColor - &:active - background-color $ui-dark-button--active-backgroundColor - .item-simple-title - .item-simple-title-icon - .item-simple-bottom-time - .item-simple-bottom-tagList-item - transition 0.15s - color $ui-dark-text-color &:hover + transition 0.15s background-color alpha($ui-dark-button--active-backgroundColor, 20%) + color $ui-dark-text-color .item-simple-title .item-simple-title-icon .item-simple-bottom-time - .item-simple-bottom-tagList-item transition 0.15s color $ui-dark-text-color + .item-simple-bottom-tagList-item + transition 0.15s + background-color alpha(#fff, 20%) + color $ui-dark-text-color + &:active + transition 0.15s + background-color $ui-dark-button--active-backgroundColor + color $ui-dark-text-color + .item-simple-title + .item-simple-title-icon + .item-simple-bottom-time + transition 0.15s + color $ui-dark-text-color + .item-simple-bottom-tagList-item + transition 0.15s + background-color alpha(white, 10%) + color $ui-dark-text-color .item-simple--active border-color $ui-dark-borderColor background-color $ui-dark-button--active-backgroundColor + .item-simple-wrapper + border-color transparent .item-simple-title .item-simple-title-icon .item-simple-bottom-time color $ui-dark-text-color .item-simple-bottom-tagList-item - background-color transparent + background-color alpha(white, 10%) color $ui-dark-text-color + &:hover + background-color alpha($ui-dark-button--active-backgroundColor, 50%) + color #c0392b + .item-simple-bottom-tagList-item + background-color alpha(#fff, 20%) .item-simple-title color $ui-inactive-text-color diff --git a/browser/components/RealtimeNotification.js b/browser/components/RealtimeNotification.js index 3a6bcc27..6904b362 100644 --- a/browser/components/RealtimeNotification.js +++ b/browser/components/RealtimeNotification.js @@ -40,7 +40,7 @@ class RealtimeNotification extends React.Component { ? this.handleLinkClick(e)} > - {notifications[0].text} + Info: {notifications[0].text} : '' diff --git a/browser/components/RealtimeNotification.styl b/browser/components/RealtimeNotification.styl index a49de536..7eeebb37 100644 --- a/browser/components/RealtimeNotification.styl +++ b/browser/components/RealtimeNotification.styl @@ -2,20 +2,20 @@ z-index 1000 font-size 12px position absolute - bottom 0px - right 0px - background-color #EBEBEB + bottom 20px + width 100% + float left height 30px + background-color none .notification-link position absolute - right 5px - top 5px text-decoration none color #282A36 + font-size 14px border 1px solid #6FA8E6 background-color alpha(#6FA8E6, 0.2) - padding 3px 9px + padding 5px 12px border-radius 2px transition 0.2s &:hover @@ -23,7 +23,7 @@ body[data-theme="dark"] .notification-area - background-color #1E2124 + background-color none .notification-link color #fff diff --git a/browser/components/SideNavFilter.styl b/browser/components/SideNavFilter.styl index b7fd7dc6..3c1e2185 100644 --- a/browser/components/SideNavFilter.styl +++ b/browser/components/SideNavFilter.styl @@ -5,7 +5,7 @@ navButtonColor() height 32px padding 0 15px - font-size 12px + font-size 13px width 100% text-align left overflow ellipsis @@ -71,7 +71,7 @@ border-bottom-right-radius 2px pointer-events none opacity 0 - font-size 12px + font-size 13px body[data-theme="dark"] .menu-button diff --git a/browser/components/StorageItem.js b/browser/components/StorageItem.js index ab2616fb..b01bb920 100644 --- a/browser/components/StorageItem.js +++ b/browser/components/StorageItem.js @@ -35,10 +35,8 @@ const StorageItem = ({ > - {isFolded ? folderName.substring(0, 1) : folderName} + }> + {isActive ? : }{isFolded ? folderName.substring(0, 1) : folderName} {(!isFolded && isNumber(noteCount)) && {noteCount} diff --git a/browser/components/StorageItem.styl b/browser/components/StorageItem.styl index e6aabd34..e5eb1e1f 100644 --- a/browser/components/StorageItem.styl +++ b/browser/components/StorageItem.styl @@ -13,7 +13,7 @@ text-align left border none overflow ellipsis - font-size 12px + font-size 13px &:first-child margin-top 0 &:hover @@ -35,7 +35,7 @@ .folderList-item-name display block flex 1 - padding 0 25px + padding 0 12px height 26px line-height 26px border-width 0 0 0 2px @@ -48,7 +48,7 @@ float right line-height 26px padding-right 15px - font-size 12px + font-size 13px .folderList-item-tooltip tooltip() diff --git a/browser/components/TagListItem.styl b/browser/components/TagListItem.styl index ea135a96..006b879b 100644 --- a/browser/components/TagListItem.styl +++ b/browser/components/TagListItem.styl @@ -9,7 +9,7 @@ text-align left border none overflow ellipsis - font-size 12px + font-size 13px &:first-child margin-top 0 &:hover @@ -30,7 +30,7 @@ text-align left border none overflow ellipsis - font-size 12px + font-size 13px &:hover background-color alpha($ui-button--active-backgroundColor, 60%) transition 0.2s @@ -38,7 +38,7 @@ .tagList-item-name display block flex 1 - padding 0 25px + padding 0 15px height 26px line-height 26px border-width 0 0 0 2px diff --git a/browser/main/Detail/InfoPanel.js b/browser/main/Detail/InfoPanel.js index 4eaa695f..b271e306 100644 --- a/browser/main/Detail/InfoPanel.js +++ b/browser/main/Detail/InfoPanel.js @@ -6,68 +6,54 @@ const InfoPanel = ({ storageName, folderName, noteLink, updatedAt, createdAt, exportAsMd, exportAsTxt, wordCount, letterCount, type, print }) => (
-
-
- Storage -
-
- {storageName} -
-
-
-
- Folder -
-
- {folderName} -
-
-
-
- Created -
-
- {createdAt} -
-
-
-
- Updated -
-
- {updatedAt} -
-
-
-
- Note Link -
-
- { e.target.select() }} /> -
+
+

{updatedAt}

+

MODIFICATION DATE

+ +
+ {type === 'SNIPPET_NOTE' ? '' - :
-
-
- Words -
-
- {wordCount} -
+ :
+
+

{wordCount}

+

Words

-
-
- Letters -
-
- {letterCount} -
+
+

{letterCount}

+

Letters

} + {type === 'SNIPPET_NOTE' + ? '' + :
+ } + +
+

{storageName}

+

STORAGE

+
+ +
+

{folderName}

+

FOLDER

+
+ +
+

{createdAt}

+

CREATION DATE

+
+ +
+ { e.target.select() }} /> +

NOTE LINK

+
+ +
+
- + +
+
) } diff --git a/browser/styles/index.styl b/browser/styles/index.styl index 50cd8f7e..e2b4ff3d 100644 --- a/browser/styles/index.styl +++ b/browser/styles/index.styl @@ -5,7 +5,7 @@ $danger-color = #c9302c $danger-lighten-color = lighten(#c9302c, 5%) // Layouts -$statusBar-height = 36px +$statusBar-height = 0px $sideNav-width = 200px $sideNav--folded-width = 44px $topBar-height = 60px