010101 Or, if on mobile, the post box was scrollable? Some way to push the top part out of the way so that you can get to the content of the post.
Just quoting myself real quick to say, I tested this and it is another option. Although, I also like @[deleted]'s CSS to get certain things on one row. So, one could use that, plus...
@media (max-width: 767px) {
.Composer {
overflow-y: scroll;
overflow-x: hidden;
}
}
I haven't tested this in particular, but I'm thinking, this would make the mason extension usable on mobile. If you have extra fields, now you can scroll the post box to get to them. But, if someone tests this further and sees an issue, please share.
...and slight tweak. I'm not sure why this extra margin space exists. But, by making this margin 0, it horizontally aligns better.
.DiscussionComposer-changeTags {
/* margin-right: 15px; */ <-- change to 0 (and you have to add !important)
vertical-align: 2px;
}
It just looks a tiny bit better:
Full CSS to plug into your custom CSS box:
@media (max-width: 767px) {
li.item-polls {
clear: right;
}
li.item-tags,
li.item-recipients,
li.item-save-draft {
float: left;
}
li.item-save-draft {
padding: 2px 0px 0px 15px;
}
.DiscussionComposer-changeTags {
margin-right: 0px !important;
vertical-align: 2px;
}
}
again, optionally, add in the...
.Composer {
overflow-y: scroll;
overflow-x: hidden;
}