1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

modify: add icon for NoteItemSimple component

This commit is contained in:
sota1235
2016-12-29 19:08:29 +09:00
parent cc3bd41df2
commit c1df311e86
2 changed files with 17 additions and 0 deletions

View File

@@ -22,6 +22,10 @@ const NoteItemSimple = ({ isActive, note, handleNoteClick, handleNoteContextMenu
onContextMenu={e => handleNoteContextMenu(e, `${note.storage}-${note.key}`)}
>
<div styleName='item-simple-title'>
{note.type === 'SNIPPET_NOTE'
? <i styleName='item-simple-title-icon' className='fa fa-fw fa-code' />
: <i styleName='item-simple-title-icon' className='fa fa-fw fa-file-text-o' />
}
{note.title.trim().length > 0
? note.title
: <span styleName='item-simple-title-empty'>Empty</span>
@@ -35,6 +39,7 @@ NoteItemSimple.propTypes = {
note: PropTypes.shape({
storage: PropTypes.string.isRequired,
key: PropTypes.string.isRequired,
type: PropTypes.string.isRequired,
title: PropTypes.string.isrequired,
}),
handleNoteClick: PropTypes.func.isRequired,

View File

@@ -17,11 +17,15 @@ $control-height = 30px
&:active
background-color $ui-active-color
color white
.item-simple-title-icon
color white
.item-simple--active
@extend .item-simple
background-color $ui-active-color
color white
.item-simple-title-icon
color white
&:hover
background-color $ui-active-color
@@ -35,6 +39,11 @@ $control-height = 30px
color $ui-text-color
border-bottom $ui-border
.item-simple-title-icon
font-size 12px
color $ui-inactive-text-color
padding-right 6px
.item-simple-title-empty
font-weight normal
color $ui-inactive-text-color
@@ -65,5 +74,8 @@ body[data-theme="dark"]
color $ui-dark-text-color
border-color $ui-dark-borderColor
.item-simple-title-icon
color $ui-darkinactive-text-color
.item-simple-title-empty
color $ui-dark-inactive-text-color