mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 01:35:49 +03:00
Fix wrongly wrapping code blocks, breaking line numbers (#7507)
This commit is contained in:
parent
81257933ef
commit
f8871969fd
1 changed files with 11 additions and 6 deletions
|
@ -483,8 +483,17 @@ $left-gutter: 64px;
|
|||
background-color: $codeblock-background-color;
|
||||
}
|
||||
|
||||
pre code > * {
|
||||
display: inline;
|
||||
// this selector wrongly applies to code blocks too but we will unset it in the next one
|
||||
code {
|
||||
white-space: pre-wrap; // don't collapse spaces in inline code blocks
|
||||
}
|
||||
|
||||
pre code {
|
||||
white-space: pre; // we want code blocks to be scrollable and not wrap
|
||||
|
||||
> * {
|
||||
display: inline;
|
||||
}
|
||||
}
|
||||
|
||||
pre {
|
||||
|
@ -498,10 +507,6 @@ $left-gutter: 64px;
|
|||
background: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
code {
|
||||
white-space: pre-wrap; // don't collapse spaces in inline code blocks
|
||||
}
|
||||
}
|
||||
|
||||
.mx_EventTile_lineNumbers {
|
||||
|
|
Loading…
Reference in a new issue