Remove poorly contrasted "dark style" heading in Room Preview Bar
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
9d6bf366a9
commit
992d7215c7
2 changed files with 0 additions and 8 deletions
|
@ -58,11 +58,6 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomPreviewBar_dark {
|
|
||||||
background-color: $tagpanel-bg-color;
|
|
||||||
color: $accent-fg-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mx_RoomPreviewBar_actions {
|
.mx_RoomPreviewBar_actions {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
|
@ -288,7 +288,6 @@ export default createReactClass({
|
||||||
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
||||||
|
|
||||||
let showSpinner = false;
|
let showSpinner = false;
|
||||||
let darkStyle = false;
|
|
||||||
let title;
|
let title;
|
||||||
let subTitle;
|
let subTitle;
|
||||||
let primaryActionHandler;
|
let primaryActionHandler;
|
||||||
|
@ -316,7 +315,6 @@ export default createReactClass({
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case MessageCase.NotLoggedIn: {
|
case MessageCase.NotLoggedIn: {
|
||||||
darkStyle = true;
|
|
||||||
title = _t("Join the conversation with an account");
|
title = _t("Join the conversation with an account");
|
||||||
primaryActionLabel = _t("Sign Up");
|
primaryActionLabel = _t("Sign Up");
|
||||||
primaryActionHandler = this.onRegisterClick;
|
primaryActionHandler = this.onRegisterClick;
|
||||||
|
@ -557,7 +555,6 @@ export default createReactClass({
|
||||||
const classes = classNames("mx_RoomPreviewBar", "dark-panel", `mx_RoomPreviewBar_${messageCase}`, {
|
const classes = classNames("mx_RoomPreviewBar", "dark-panel", `mx_RoomPreviewBar_${messageCase}`, {
|
||||||
"mx_RoomPreviewBar_panel": this.props.canPreview,
|
"mx_RoomPreviewBar_panel": this.props.canPreview,
|
||||||
"mx_RoomPreviewBar_dialog": !this.props.canPreview,
|
"mx_RoomPreviewBar_dialog": !this.props.canPreview,
|
||||||
"mx_RoomPreviewBar_dark": darkStyle,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in a new issue