1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-05 12:12:35 +00:00
TiddlyWiki5/plugins/tiddlywiki/codemirror/styles.tid
Jeremy Ruston cfa68dade5 Update CodeMirror plugin to latest version and the new widget framework
Now the CodeMirror plugin modifies the behaviour of the core edit-text
widget.
2013-10-25 09:48:57 +01:00

15 lines
247 B
Plaintext

title: $:/plugins/tiddlywiki/codemirror/styles
tags: [[$:/tags/stylesheet]]
/* Make the editor resize to fit its content */
.CodeMirror {
height: auto;
border: 1px solid #ddd;
}
.CodeMirror-scroll {
overflow-x: auto;
overflow-y: hidden;
}