Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -186,4 +186,13 @@ export default {
}
}
}
// Hide the empty modal header which prevents from accessing the close button
// Cannot use display:none because there's a `display: flex !important` in the
// Ncmodal component which would override it. This works because the
// `.modal-header` element has `position: absolute`.
// TODO: Add prop to NcModal to hide the header
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this is a dialog then it should use NcDialog and not NcModal which also would fix this issue.

:deep(.modal-header) {
visibility: hidden;
}

</style>
Loading