mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-10 20:09:57 +00:00
Fix unwrapped oveflowed code blocks not showing scroll bars when setting "Wrap long lines in code blocks" to "No" in "Theme tweaks" (#8413)
* Fix unwrapped oveflowed code blocks not showing scroll bars
* Inline code should not follow "Wrap long lines in code blocks" option
* Revert "Inline code should not follow "Wrap long lines in code blocks" option"
This reverts commit 4615a04e59
.
* Inline code should not obey "Wrap long lines in code blocks" option
Fix problem described in #8549
This commit is contained in:
parent
6d05afebc4
commit
6264aa22d0
@ -157,7 +157,7 @@ code {
|
||||
color: <<colour code-foreground>>;
|
||||
background-color: <<colour code-background>>;
|
||||
border: 1px solid <<colour code-border>>;
|
||||
white-space: {{$:/themes/tiddlywiki/vanilla/options/codewrapping}};
|
||||
white-space: pre-wrap;
|
||||
padding: 0 3px 2px;
|
||||
border-radius: 3px;
|
||||
font-family: {{$:/themes/tiddlywiki/vanilla/settings/codefontfamily}};
|
||||
@ -293,10 +293,13 @@ form.tc-form-inline {
|
||||
Markdown likes putting code elements inside pre elements
|
||||
*/
|
||||
pre > code {
|
||||
padding: 0;
|
||||
display: block;
|
||||
padding: 0.5em;
|
||||
border: none;
|
||||
white-space: {{$:/themes/tiddlywiki/vanilla/options/codewrapping}};
|
||||
background-color: inherit;
|
||||
color: inherit;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user