UX: Mobile - fix editor button space, divider, extra upload icon
This commit is contained in:
parent
307499e48b
commit
8e9d0ceb67
|
@ -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",
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
$breakpoints: (
|
||||
mobile-small: 320px,
|
||||
mobile-medium: 350px,
|
||||
mobile: 550px,
|
||||
tablet: 768px,
|
||||
medium: 850px,
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue