mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
differentiate style based on preview or not
This commit is contained in:
parent
16ed06cebb
commit
01e9de9a3a
@ -28,6 +28,10 @@ limitations under the License.
|
||||
-webkit-align-items: center;
|
||||
}
|
||||
|
||||
.mx_RoomPreviewBar_dialog {
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.mx_RoomPreviewBar_join_text {
|
||||
color: $warning-color;
|
||||
}
|
||||
|
@ -21,6 +21,7 @@ const React = require('react');
|
||||
import PropTypes from 'prop-types';
|
||||
const sdk = require('../../../index');
|
||||
const MatrixClientPeg = require('../../../MatrixClientPeg');
|
||||
import classNames from 'classnames';
|
||||
|
||||
import { _t } from '../../../languageHandler';
|
||||
|
||||
@ -234,8 +235,13 @@ module.exports = React.createClass({
|
||||
);
|
||||
}
|
||||
|
||||
const classes = classNames("mx_RoomPreviewBar", "dark-panel", {
|
||||
"mx_RoomPreviewBar_panel": this.props.canPreview,
|
||||
"mx_RoomPreviewBar_dialog": !this.props.canPreview,
|
||||
});
|
||||
|
||||
return (
|
||||
<div className="mx_RoomPreviewBar dark-panel">
|
||||
<div className={classes}>
|
||||
<div className="mx_RoomPreviewBar_wrapper">
|
||||
{ joinBlock }
|
||||
{ previewBlock }
|
||||
|
Loading…
Reference in New Issue
Block a user