mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-27 19:06:23 +08:00
Fixed inline code overflowing off of page in issue #1575.
This commit is contained in:
parent
fccc112cc1
commit
c14611d14b
|
@ -102,6 +102,7 @@ function highlightElem(elem) {
|
||||||
value: content,
|
value: content,
|
||||||
mode: mode,
|
mode: mode,
|
||||||
lineNumbers: true,
|
lineNumbers: true,
|
||||||
|
lineWrapping: true,
|
||||||
theme: getTheme(),
|
theme: getTheme(),
|
||||||
readOnly: true
|
readOnly: true
|
||||||
});
|
});
|
||||||
|
@ -188,6 +189,7 @@ function wysiwygView(elem) {
|
||||||
value: content,
|
value: content,
|
||||||
mode: getMode(lang),
|
mode: getMode(lang),
|
||||||
lineNumbers: true,
|
lineNumbers: true,
|
||||||
|
lineWrapping: true,
|
||||||
theme: getTheme(),
|
theme: getTheme(),
|
||||||
readOnly: true
|
readOnly: true
|
||||||
});
|
});
|
||||||
|
@ -213,8 +215,8 @@ function popupEditor(elem, modeSuggestion) {
|
||||||
value: content,
|
value: content,
|
||||||
mode: getMode(modeSuggestion),
|
mode: getMode(modeSuggestion),
|
||||||
lineNumbers: true,
|
lineNumbers: true,
|
||||||
theme: getTheme(),
|
lineWrapping: true,
|
||||||
lineWrapping: true
|
theme: getTheme()
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -254,8 +256,8 @@ function markdownEditor(elem) {
|
||||||
value: content,
|
value: content,
|
||||||
mode: "markdown",
|
mode: "markdown",
|
||||||
lineNumbers: true,
|
lineNumbers: true,
|
||||||
theme: getTheme(),
|
|
||||||
lineWrapping: true,
|
lineWrapping: true,
|
||||||
|
theme: getTheme(),
|
||||||
scrollPastEnd: true,
|
scrollPastEnd: true,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -220,7 +220,7 @@ code {
|
||||||
@extend .code-base;
|
@extend .code-base;
|
||||||
display: inline;
|
display: inline;
|
||||||
padding: 1px 3px;
|
padding: 1px 3px;
|
||||||
white-space:pre;
|
white-space:pre-wrap;
|
||||||
line-height: 1.2em;
|
line-height: 1.2em;
|
||||||
margin-bottom: 1.2em;
|
margin-bottom: 1.2em;
|
||||||
}
|
}
|
||||||
|
@ -366,4 +366,3 @@ span.sep {
|
||||||
margin-right: $-xs;
|
margin-right: $-xs;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user