0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Fixed post editor items getting cut off on iOS (#16765)

This commit is contained in:
Jonathan Browne 2023-06-14 02:45:17 -05:00 committed by GitHub
parent 5bfbaec262
commit d34b9b021a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 4 deletions

View file

@ -1,4 +1,4 @@
<div class="gh-koenig-editor relative w-100 vh-100 overflow-x-hidden overflow-y-auto z-0" {{did-insert this.registerElement}} ...attributes>
<div class="gh-koenig-editor relative w-100 overflow-x-hidden z-0" {{did-insert this.registerElement}} ...attributes>
{{!-- full height content pane --}}
{{!-- template-lint-disable no-invalid-interactive no-passed-in-event-handlers --}}
<div

View file

@ -5,7 +5,7 @@
/* ---------------------------------------------------------- */
.settings-menu-toggle {
position: absolute;
position: fixed;
top: 30px;
right: 24px;
z-index: 9999;
@ -76,6 +76,13 @@
}
}
@media (max-width: 500px) {
.settings-menu-container {
width: 100vw;
min-width: 100vw;
}
}
.settings-menu-container .settings-menu-pane {
position: absolute;
top: 0;
@ -102,6 +109,13 @@
height: 100vh;
}
@media (max-width: 500px) {
.settings-menu-container .settings-menu-pane {
width: 100vw;
min-width: 100vw;
}
}
/* Header
/* ---------------------------------------------------------- */

View file

@ -305,7 +305,7 @@
}
.gh-editor-header {
position: absolute;
position: fixed;
top: 0;
right: 0;
left: 0;
@ -361,7 +361,7 @@
}
.gh-editor-wordcount-container {
position: absolute;
position: fixed;
right: 30px;
bottom: 30px;
display: flex;