wrap code blocks on Activies and Todos page
This commit is contained in:
parent
98cede7ebe
commit
9a5b2e94d6
3 changed files with 9 additions and 0 deletions
|
@ -31,6 +31,7 @@ v 8.9.0 (unreleased)
|
|||
- Implement a fair usage of shared runners
|
||||
- Remove project notification settings associated with deleted projects
|
||||
- Fix 404 page when viewing TODOs that contain milestones or labels in different projects
|
||||
- Wrap code blocks on Activies and Todos page !4783 (winniehell)
|
||||
- Add a metric for the number of new Redis connections created by a transaction
|
||||
- Fix Error 500 when viewing a blob with binary characters after the 1024-byte mark
|
||||
- Redesign navigation for project pages
|
||||
|
|
|
@ -54,6 +54,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
code {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
pre {
|
||||
border: none;
|
||||
background: #f9f9f9;
|
||||
|
|
|
@ -62,6 +62,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
code {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
pre {
|
||||
border: none;
|
||||
background: #f9f9f9;
|
||||
|
|
Loading…
Reference in a new issue