Fix button border color of LeaveSpaceDialog (#8010)
parent
7b71a9fb65
commit
93bde40568
|
@ -19,8 +19,6 @@ limitations under the License.
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding: 24px 32px;
|
padding: 24px 32px;
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.mx_LeaveSpaceDialog {
|
.mx_LeaveSpaceDialog {
|
||||||
width: 440px;
|
width: 440px;
|
||||||
|
@ -64,13 +62,6 @@ limitations under the License.
|
||||||
color: $primary-content;
|
color: $primary-content;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_Dialog_buttons {
|
|
||||||
margin-top: 20px;
|
|
||||||
|
|
||||||
.mx_Dialog_primary {
|
|
||||||
background-color: $alert !important; // override default colour
|
|
||||||
border-color: $alert;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -105,6 +105,7 @@ const LeaveSpaceDialog: React.FC<IProps> = ({ space, onFinished }) => {
|
||||||
</div>
|
</div>
|
||||||
<DialogButtons
|
<DialogButtons
|
||||||
primaryButton={_t("Leave space")}
|
primaryButton={_t("Leave space")}
|
||||||
|
primaryButtonClass="danger"
|
||||||
onPrimaryButtonClick={() => onFinished(true, roomsToLeave)}
|
onPrimaryButtonClick={() => onFinished(true, roomsToLeave)}
|
||||||
hasCancel={true}
|
hasCancel={true}
|
||||||
onCancel={() => onFinished(false)}
|
onCancel={() => onFinished(false)}
|
||||||
|
|
Loading…
Reference in New Issue