FIX: show button bar overflow on iPad & mobile (#17708)

This commit is contained in:
Kris 2022-07-28 09:26:06 -04:00 committed by GitHub
parent 010bb20f53
commit a23e934730
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions

View File

@ -299,7 +299,11 @@
border-bottom: 1px solid var(--primary-low);
width: 100%;
box-sizing: border-box;
overflow-x: auto;
html:not(.keyboard-visible) & {
overflow-x: auto; // hiding overflow breaks the cog menu on iPad and mobile
}
flex-shrink: 0;
.d-editor-spacer {

View File

@ -235,8 +235,3 @@
margin-right: 6px;
}
}
.d-editor-button-bar {
// can't hide overflow here because it hides the cog menu dropdown
overflow: unset;
}