markdown code blocks not preserving line breaks, removed a bootstrap over-ride which fixes this, but also changed the style to pre-wrap to wrap the text rather than the default horizontal scroll
This commit is contained in:
parent
41e0d5f664
commit
23e774db8e
4
view/css/bootstrap-red.css
vendored
4
view/css/bootstrap-red.css
vendored
@ -71,10 +71,6 @@ nav .dropdown-menu {
|
|||||||
min-width: auto;
|
min-width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
|
||||||
white-space: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
label {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
/* jot */
|
/* jot */
|
||||||
|
|
||||||
.jothidden input[type="text"] {
|
.jothidden input[type="text"] {
|
||||||
@ -302,3 +303,12 @@ img.smiley.emoji:hover {
|
|||||||
#filer_save {
|
#filer_save {
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* general over-rides */
|
||||||
|
|
||||||
|
/* prevent horizontal scrollbars in code blocks */
|
||||||
|
code {
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user