Merge "ResizingDragBar: force CodeMirror to have 100% height"

This commit is contained in:
jenkins-bot 2024-03-13 23:35:36 +00:00 committed by Gerrit Code Review
commit daf81ae37a

View file

@ -45,3 +45,10 @@
width: @affordance-width;
border-width: 0 @border-width-base;
}
// This is needed to make the CodeMirror editor height constrained to .wikiEditor-ui-text
// This only is needed when the ResizingDragBar is enabled.
.cm-editor {
// stylelint-disable-next-line declaration-no-important
height: 100% !important;
}