Skip to content
Merged
Show file tree
Hide file tree
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
@@ -0,0 +1,6 @@
Bugfix: Set md-editor code block header to have z-index of 0

We have fixed an issue where the code block header in the markdown editor was cutting off other elements on the page. This has been resolved by setting the z-index of the code block header to 0.

https://kiteworks.atlassian.net/browse/OCISDEV-307
https://github.com/owncloud/web/pull/13075
3 changes: 3 additions & 0 deletions packages/web-pkg/src/components/TextEditor/TextEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,9 @@ config({
#text-editor-component-html-wrapper {
margin-left: var(--oc-space-xsmall);
}
.md-editor-code-head {
z-index: 0;
}
}

.toastui-editor-tabs {
Expand Down