More CSS cleanup
This commit is contained in:
parent
c1faacb095
commit
20b3e2ef58
|
@ -15,7 +15,6 @@ html.composer-open.not-mobile-device {
|
|||
left: 0;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
box-sizing: border-box;
|
||||
max-width: $reply-area-max-width;
|
||||
width: 100%;
|
||||
|
||||
|
@ -70,6 +69,7 @@ html.composer-open.not-mobile-device {
|
|||
}
|
||||
|
||||
&.open {
|
||||
box-sizing: border-box;
|
||||
height: var(--composer-height);
|
||||
--min-height: 255px;
|
||||
min-height: var(--min-height);
|
||||
|
@ -105,19 +105,12 @@ html.composer-open.not-mobile-device {
|
|||
}
|
||||
}
|
||||
|
||||
.touch &.draft,
|
||||
.touch &.saving {
|
||||
top: auto;
|
||||
z-index: z("ipad-header-nav") + 1;
|
||||
padding-bottom: env(safe-area-inset-bottom);
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
&.draft {
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
.draft-text {
|
||||
display: block;
|
||||
@include ellipsis;
|
||||
}
|
||||
.grippie,
|
||||
.saving-text {
|
||||
|
@ -672,6 +665,15 @@ div.ac-wrap {
|
|||
max-height: unset;
|
||||
}
|
||||
|
||||
&.draft,
|
||||
&.saving {
|
||||
top: auto;
|
||||
z-index: z("ipad-header-nav") + 1;
|
||||
padding-bottom: env(safe-area-inset-bottom);
|
||||
min-height: unset;
|
||||
max-height: unset;
|
||||
}
|
||||
|
||||
.grippie,
|
||||
.toggle-fullscreen {
|
||||
display: none;
|
||||
|
|
|
@ -59,10 +59,6 @@
|
|||
.toggle-minimize {
|
||||
top: 6px;
|
||||
}
|
||||
.draft-text {
|
||||
width: calc(100% - 40px);
|
||||
@include ellipsis;
|
||||
}
|
||||
}
|
||||
|
||||
#reply-title {
|
||||
|
|
Loading…
Reference in New Issue