Put images behind CWs

This commit is contained in:
kibigo!
2017-06-27 17:01:46 -07:00
parent 2a9805b987
commit 54c1f56c9a
3 changed files with 31 additions and 20 deletions

View File

@@ -223,10 +223,12 @@ export default class Status extends ImmutablePureComponent {
</a> </a>
</div> </div>
<StatusContent status={status} onClick={this.handleClick} expanded={isExpanded} onExpandedToggle={this.handleExpandedToggle} onHeightUpdate={this.saveHeight} /> <StatusContent status={status} onClick={this.handleClick} expanded={isExpanded} onExpandedToggle={this.handleExpandedToggle} onHeightUpdate={this.saveHeight}>
{media} {media}
</StatusContent>
<StatusActionBar {...this.props} /> <StatusActionBar {...this.props} />
</div> </div>
); );

View File

@@ -19,6 +19,7 @@ export default class StatusContent extends React.PureComponent {
onExpandedToggle: PropTypes.func, onExpandedToggle: PropTypes.func,
onHeightUpdate: PropTypes.func, onHeightUpdate: PropTypes.func,
onClick: PropTypes.func, onClick: PropTypes.func,
children: PropTypes.element,
}; };
state = { state = {
@@ -107,7 +108,7 @@ export default class StatusContent extends React.PureComponent {
} }
render () { render () {
const { status } = this.props; const { status, children } = this.props;
const hidden = this.props.onExpandedToggle ? !this.props.expanded : this.state.hidden; const hidden = this.props.onExpandedToggle ? !this.props.expanded : this.state.hidden;
@@ -144,7 +145,13 @@ export default class StatusContent extends React.PureComponent {
{mentionsPlaceholder} {mentionsPlaceholder}
<div className={`status__content__text ${!hidden ? 'status__content__text--visible' : ''}`} style={directionStyle} dangerouslySetInnerHTML={content} /> <div className={`status__content__spoiler ${!hidden ? 'status__content__spoiler--visible' : ''}`}>
<div style={directionStyle} dangerouslySetInnerHTML={content} />
{children}
</div>
</div> </div>
); );
} else if (this.props.onClick) { } else if (this.props.onClick) {
@@ -155,8 +162,10 @@ export default class StatusContent extends React.PureComponent {
style={directionStyle} style={directionStyle}
onMouseDown={this.handleMouseDown} onMouseDown={this.handleMouseDown}
onMouseUp={this.handleMouseUp} onMouseUp={this.handleMouseUp}
dangerouslySetInnerHTML={content} >
/> <div dangerouslySetInnerHTML={content} />
{children}
</div>
); );
} else { } else {
return ( return (
@@ -165,7 +174,10 @@ export default class StatusContent extends React.PureComponent {
className='status__content' className='status__content'
style={directionStyle} style={directionStyle}
dangerouslySetInnerHTML={content} dangerouslySetInnerHTML={content}
/> >
<div dangerouslySetInnerHTML={content} />
{children}
</div>
); );
} }
} }

View File

@@ -427,7 +427,7 @@
line-height: 20px; line-height: 20px;
word-wrap: break-word; word-wrap: break-word;
font-weight: 400; font-weight: 400;
overflow: hidden; overflow: visible;
white-space: pre-wrap; white-space: pre-wrap;
.emojione { .emojione {
@@ -470,19 +470,10 @@
} }
} }
.status__content__spoiler-link { .status__content__spoiler {
background: lighten($ui-base-color, 30%);
&:hover {
background: lighten($ui-base-color, 33%);
text-decoration: none;
}
}
.status__content__text {
display: none; display: none;
&.status__content__text--visible { &.status__content__spoiler--visible {
display: block; display: block;
} }
} }
@@ -491,7 +482,7 @@
.status__content__spoiler-link { .status__content__spoiler-link {
display: inline-block; display: inline-block;
border-radius: 2px; border-radius: 2px;
background: transparent; background: lighten($ui-base-color, 30%);
border: 0; border: 0;
color: lighten($ui-base-color, 8%); color: lighten($ui-base-color, 8%);
font-weight: 500; font-weight: 500;
@@ -500,6 +491,12 @@
text-transform: uppercase; text-transform: uppercase;
line-height: inherit; line-height: inherit;
cursor: pointer; cursor: pointer;
vertical-align: bottom;
&:hover {
background: lighten($ui-base-color, 33%);
text-decoration: none;
}
} }
.status__prepend-icon-wrapper { .status__prepend-icon-wrapper {