1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-17 03:31:52 +00:00

Merge pull request #1164 from BoostIO/fix-ci-error

Fix ci error
This commit is contained in:
Kazz Yokomizo
2017-11-24 12:53:10 +09:00
committed by GitHub
5 changed files with 7 additions and 9 deletions

View File

@@ -92,7 +92,6 @@ h2 {
body p { body p {
white-space: normal; white-space: normal;
color: rgba(0,0,0,.84);
} }
` `
} }

View File

@@ -261,7 +261,7 @@ class FolderSelect extends React.Component {
</div> </div>
: <div styleName='idle' style={{color: currentOption.folder.color}}> : <div styleName='idle' style={{color: currentOption.folder.color}}>
<div styleName='idle-label'> <div styleName='idle-label'>
<i className='fa fa-folder'></i> <i className='fa fa-folder' />
<span styleName='idle-label-name'> <span styleName='idle-label-name'>
{currentOption.folder.name} {currentOption.folder.name}
</span> </span>

View File

@@ -55,8 +55,7 @@
.override .override
absolute bottom left absolute bottom left
bottom 5px bottom 1px
height 18px
left 60px left 60px
z-index 101 z-index 101
button button

View File

@@ -113,7 +113,7 @@ class TagSelect extends React.Component {
<button styleName='tag-removeButton' <button styleName='tag-removeButton'
onClick={(e) => this.handleTagRemoveButtonClick(tag)(e)} onClick={(e) => this.handleTagRemoveButtonClick(tag)(e)}
> >
<img className='tag-removeButton-icon' src='../resources/icon/icon-x.svg' width='8px'/> <img className='tag-removeButton-icon' src='../resources/icon/icon-x.svg' width='8px' />
</button> </button>
</span> </span>
) )

View File

@@ -5,7 +5,6 @@
bottom 10px bottom 10px
right 10px right 10px
z-index 100 z-index 100
background-color $ui-noteDetail-backgroundColor
display flex display flex
.blank .blank
@@ -28,6 +27,7 @@
display flex display flex
padding 0 padding 0
align-items center align-items center
background-color transparent
&:hover &:hover
color $ui-active-color color $ui-active-color
&:active &:active
@@ -49,14 +49,14 @@
body[data-theme="dark"] body[data-theme="dark"]
.root .root
background-color $ui-dark-noteDetail-backgroundColor
border-color $ui-dark-borderColor border-color $ui-dark-borderColor
box-shadow none box-shadow none
.zoom .zoom
border-color $ui-dark-borderColor border-color $ui-dark-borderColor
background-color transparent
color #f9f9f9
&:hover &:hover
background-color alpha($ui-dark-button--active-backgroundColor, 20%)
transition 0.15s transition 0.15s
color $ui-dark-text-color color $ui-dark-text-color