mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-11 04:11:18 +01:00
Remove unnecessary inline style for tab-size (#31224)
Move the rule to the parent node. `tab-size` is inherited so will work just as before. (cherry picked from commit 0f0db6a14fd10a493ba73f211e2e627c3884d114)
This commit is contained in:
parent
90753a2c11
commit
b62fa72ceb
2 changed files with 2 additions and 1 deletions
|
@ -158,7 +158,7 @@ func GetContentHistoryDetail(ctx *context.Context) {
|
||||||
|
|
||||||
// use chroma to render the diff html
|
// use chroma to render the diff html
|
||||||
diffHTMLBuf := bytes.Buffer{}
|
diffHTMLBuf := bytes.Buffer{}
|
||||||
diffHTMLBuf.WriteString("<pre class='chroma' style='tab-size: 4'>")
|
diffHTMLBuf.WriteString("<pre class='chroma'>")
|
||||||
for _, it := range diff {
|
for _, it := range diff {
|
||||||
if it.Type == diffmatchpatch.DiffInsert {
|
if it.Type == diffmatchpatch.DiffInsert {
|
||||||
diffHTMLBuf.WriteString("<span class='gi'>")
|
diffHTMLBuf.WriteString("<span class='gi'>")
|
||||||
|
|
|
@ -2489,6 +2489,7 @@ tbody.commit-list {
|
||||||
min-height: 12em;
|
min-height: 12em;
|
||||||
max-height: calc(100vh - 10.5rem);
|
max-height: calc(100vh - 10.5rem);
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
tab-size: 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.comment-diff-data pre {
|
.comment-diff-data pre {
|
||||||
|
|
Loading…
Reference in a new issue