UX: Mobile - fix editor button space, divider, extra upload icon

This commit is contained in:
Kris 2019-04-09 13:15:31 -04:00
parent 307499e48b
commit 8e9d0ceb67
6 changed files with 13 additions and 8 deletions

View File

@ -963,7 +963,11 @@ export default Ember.Component.extend({
unshift: true
});
if (this.get("allowUpload") && this.get("uploadIcon")) {
if (
this.get("allowUpload") &&
this.get("uploadIcon") &&
!this.site.mobileView
) {
toolbar.addButton({
id: "upload",
group: "insertions",

View File

@ -699,7 +699,7 @@
}
}
@media screen and (max-width: 350px) {
@include breakpoint(mobile-medium) {
table.grid tr {
grid-template-columns: repeat(2, 1fr);
td.controls {

View File

@ -285,7 +285,7 @@ div.menu-links-header {
overflow: hidden;
text-overflow: ellipsis;
margin: -0.5em 0;
@media screen and (max-width: 350px) {
@include breakpoint(mobile-medium) {
max-width: 125px;
}
}

View File

@ -106,11 +106,10 @@
}
.d-editor-spacer {
width: 1px;
height: 20px;
height: 16px;
margin: 0 5px;
background-color: $primary-low;
display: inline-block;
border-left: 1px solid $primary-low-mid;
}
.d-editor-preview-wrapper {

View File

@ -7,6 +7,7 @@
$breakpoints: (
mobile-small: 320px,
mobile-medium: 350px,
mobile: 550px,
tablet: 768px,
medium: 850px,

View File

@ -134,8 +134,9 @@
0
); // Hack: Reduces composer icon jitter while scrolling in Safari on iOS12
}
@media all and (max-width: 350px) {
padding: 2px 4px;
@include breakpoint(mobile-medium) {
padding: 4px;
font-size: 0.96em;
}
&.preview {
margin: 0;