UX: Fix reply where modal layout (#11990)
This commit is contained in:
parent
2695f7dae8
commit
13dba16e7b
|
@ -689,7 +689,8 @@ export default Controller.extend({
|
||||||
}
|
}
|
||||||
|
|
||||||
if (currentTopic.id !== composer.get("topic.id")) {
|
if (currentTopic.id !== composer.get("topic.id")) {
|
||||||
const message = I18n.t("composer.posting_not_on_topic");
|
const message =
|
||||||
|
"<h1>" + I18n.t("composer.posting_not_on_topic") + "</h1>";
|
||||||
|
|
||||||
let buttons = [
|
let buttons = [
|
||||||
{
|
{
|
||||||
|
|
|
@ -294,25 +294,35 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.reply-where-modal {
|
.reply-where-modal {
|
||||||
.modal-footer {
|
max-width: 400px;
|
||||||
a {
|
|
||||||
display: block;
|
h1 {
|
||||||
}
|
margin: 0;
|
||||||
.d-modal-cancel {
|
|
||||||
margin: 1em 0 0.5em;
|
|
||||||
}
|
|
||||||
.btn {
|
|
||||||
text-align: left;
|
|
||||||
font-size: $font-up-2;
|
font-size: $font-up-2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.d-modal-cancel {
|
||||||
|
width: 100%;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
display: block;
|
||||||
|
text-align: left;
|
||||||
|
font-size: $font-up-1;
|
||||||
line-height: $line-height-medium;
|
line-height: $line-height-medium;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 0.75em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
overflow: hidden;
|
||||||
|
width: 100%;
|
||||||
|
&:first-of-type {
|
||||||
|
margin-top: 0.25em;
|
||||||
|
}
|
||||||
.topic-title {
|
.topic-title {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.d-modal-cancel {
|
.d-modal-cancel {
|
||||||
margin-left: 1em;
|
margin-left: 1em;
|
||||||
|
|
Loading…
Reference in New Issue