Merge pull request #5830 from nextcloud/fix/editor/three-dot

fix(editor): bring back the three-dot menu
This commit is contained in:
Richard Steinmetz 2024-03-06 17:14:56 +01:00 committed by GitHub
commit a3e11c9d4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 6 deletions

View File

@ -37,9 +37,16 @@
}
}
// We use our custom header layout for the sidebar editor
.app-sidebar-header__info {
display: none !important;
.app-sidebar-header__desc {
// We use our custom header layout for the sidebar editor
height: 0 !important;
padding: 0 !important;
margin: 0 !important;
// But keep the three-dot menu in the front
.app-sidebar-header__menu {
z-index: 1;
}
}
.app-sidebar-header__description {

View File

@ -689,9 +689,6 @@ export default {
::v-deep .app-sidebar-header__description {
flex-direction: column;
}
:deep(.app-sidebar-header__info) {
display: none !important;
}
.property-location {
margin-top: 10px;
}