mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-16 23:04:50 +00:00
cfa68dade5
Now the CodeMirror plugin modifies the behaviour of the core edit-text widget.
15 lines
247 B
Plaintext
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;
|
|
}
|