[Glitch] Fix emoji picker being always displayed

Port c402c291f4 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
Takeshi Umeda 2019-06-06 19:30:14 +09:00 committed by ThibG
parent a5398c3df8
commit 8f924eb961
2 changed files with 10 additions and 2 deletions

View File

@ -335,7 +335,7 @@ class ComposeForm extends ImmutablePureComponent {
/>
</div>
<div className='emoji-picker-wrapper'>
<div className={`emoji-picker-wrapper ${this.props.showSearch ? 'emoji-picker-wrapper--hidden' : ''}`}>
<EmojiPicker onPickEmoji={handleEmoji} />
</div>

View File

@ -289,12 +289,20 @@
}
}
.emoji-picker-wrapper,
.autosuggest-textarea__suggestions-wrapper {
position: relative;
height: 0;
}
.emoji-picker-wrapper {
position: relative;
height: 0;
&.emoji-picker-wrapper--hidden {
display: none;
}
}
.autosuggest-textarea__suggestions {
display: block;
position: absolute;