mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
Merge branch 'fix-1575' of git://github.com/james-geiger/BookStack into james-geiger-fix-1575
This commit is contained in:
commit
e91ef54cc9
@ -102,6 +102,7 @@ function highlightElem(elem) {
|
||||
value: content,
|
||||
mode: mode,
|
||||
lineNumbers: true,
|
||||
lineWrapping: true,
|
||||
theme: getTheme(),
|
||||
readOnly: true
|
||||
});
|
||||
@ -188,6 +189,7 @@ function wysiwygView(elem) {
|
||||
value: content,
|
||||
mode: getMode(lang),
|
||||
lineNumbers: true,
|
||||
lineWrapping: true,
|
||||
theme: getTheme(),
|
||||
readOnly: true
|
||||
});
|
||||
@ -213,8 +215,8 @@ function popupEditor(elem, modeSuggestion) {
|
||||
value: content,
|
||||
mode: getMode(modeSuggestion),
|
||||
lineNumbers: true,
|
||||
theme: getTheme(),
|
||||
lineWrapping: true
|
||||
lineWrapping: true,
|
||||
theme: getTheme()
|
||||
});
|
||||
}
|
||||
|
||||
@ -250,8 +252,8 @@ function markdownEditor(elem) {
|
||||
value: content,
|
||||
mode: "markdown",
|
||||
lineNumbers: true,
|
||||
theme: getTheme(),
|
||||
lineWrapping: true,
|
||||
theme: getTheme(),
|
||||
scrollPastEnd: true,
|
||||
};
|
||||
|
||||
|
@ -224,7 +224,7 @@ code {
|
||||
@extend .code-base;
|
||||
display: inline;
|
||||
padding: 1px 3px;
|
||||
white-space:pre;
|
||||
white-space:pre-wrap;
|
||||
line-height: 1.2em;
|
||||
margin-bottom: 1.2em;
|
||||
}
|
||||
@ -369,4 +369,3 @@ span.sep {
|
||||
margin-right: $-xs;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user