1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00

Fix at InfoPanel in trash

This commit is contained in:
Kazu Yokomizo
2017-11-06 15:57:00 +09:00
parent 706b5d253f
commit 123a73a5e6
2 changed files with 29 additions and 28 deletions

View File

@@ -79,6 +79,18 @@
height 25px height 25px
margin-bottom 6px margin-bottom 6px
.infoPanel-trash
color #EA4447
font-weight 600
font-size 14px
width 70px
background-color rgba(226,33,113,0.1)
border none
outline none
border-radius 2px
margin-right 5px
padding 2px 5px
[id=export-wrap] [id=export-wrap]
height 90px height 90px
display flex display flex

View File

@@ -6,37 +6,26 @@ const InfoPanelTrashed = ({
storageName, folderName, updatedAt, createdAt, exportAsMd, exportAsTxt storageName, folderName, updatedAt, createdAt, exportAsMd, exportAsTxt
}) => ( }) => (
<div className='infoPanel' styleName='control-infoButton-panel-trash' style={{display: 'none'}}> <div className='infoPanel' styleName='control-infoButton-panel-trash' style={{display: 'none'}}>
<div styleName='group-section'> <div>
<div styleName='group-section-label'> <p styleName='modification-date'>{updatedAt}</p>
Storage <p styleName='modification-date-desc'>MODIFICATION DATE</p>
</div>
<div styleName='group-section-control'>
{storageName}
</div>
</div> </div>
<div styleName='group-section'>
<div styleName='group-section-label'> <hr />
Folder
</div> <div>
<div styleName='group-section-control'> <p styleName='infoPanel-default'>{storageName}</p>
<text>Trash</text>{folderName} <p styleName='infoPanel-sub'>STORAGE</p>
</div>
</div> </div>
<div styleName='group-section'>
<div styleName='group-section-label'> <div>
Created <p styleName='infoPanel-default'><text styleName='infoPanel-trash'>Trash</text>{folderName}</p>
</div> <p styleName='infoPanel-sub'>FOLDER</p>
<div styleName='group-section-control'>
{createdAt}
</div>
</div> </div>
<div styleName='group-section'>
<div styleName='group-section-label'> <div>
Updated <p styleName='infoPanel-default'>{createdAt}</p>
</div> <p styleName='infoPanel-sub'>CREATION DATE</p>
<div styleName='group-section-control'>
{updatedAt}
</div>
</div> </div>
<div id='export-wrap'> <div id='export-wrap'>