MDL-81123 tiny_html: Make empty codemirror region clickable

This commit is contained in:
Andrew Nicols
2024-03-05 14:12:15 +08:00
parent 994a21d4ff
commit b89e60af09
3 changed files with 17 additions and 13 deletions
+15 -11
View File
@@ -27,15 +27,19 @@ export default {
component,
pluginName: `${component}/plugin`,
codeMirrorStyle: `
.modal-codemirror-container {
position: absolute;
top: 40px;
bottom: 50px;
left: 15px;
right: 15px;
overflow: scroll;
border: 1px solid #c7cace;
border-radius: 5px;
}
`
.modal-codemirror-container {
position: absolute;
top: 40px;
bottom: 50px;
left: 15px;
right: 15px;
overflow: scroll;
border: 1px solid #c7cace;
border-radius: 5px;
}
.modal-codemirror-container {
.cm-editor {
height: 100%;
}
`,
};