mirror of
https://github.com/go-gitea/gitea
synced 2025-07-16 07:18:37 +00:00
Merge pull request #2528 from andreynering/diff-sintax-highlight-733
Enable syntax highlighting on diff view
This commit is contained in:
@@ -12,10 +12,12 @@ body {
|
||||
img {
|
||||
border-radius: 3px;
|
||||
}
|
||||
pre {
|
||||
pre,
|
||||
code {
|
||||
font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
||||
}
|
||||
pre.raw {
|
||||
pre.raw,
|
||||
code.raw {
|
||||
padding: 7px 12px;
|
||||
margin: 10px 0;
|
||||
background-color: #f8f8f8;
|
||||
@@ -25,7 +27,8 @@ pre.raw {
|
||||
line-height: 1.5;
|
||||
overflow: auto;
|
||||
}
|
||||
pre.wrap {
|
||||
pre.wrap,
|
||||
code.wrap {
|
||||
white-space: pre-wrap;
|
||||
/* CSS 3 */
|
||||
word-break: break-word;
|
||||
@@ -387,6 +390,11 @@ footer .container .links > *:first-child {
|
||||
width: 95%;
|
||||
}
|
||||
}
|
||||
/* Overrides some styles of the Highlight.js plugin */
|
||||
.hljs {
|
||||
background: inherit !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
.markdown {
|
||||
overflow: hidden;
|
||||
font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
|
||||
|
Reference in New Issue
Block a user