mirror of https://github.com/vector-im/riot-web
Merge pull request #3790 from justin-sleep/fix-dark-diff-highlighting
Fix inverted diff line highlighting in dark themepull/21833/head
commit
92fb6fcdc2
|
@ -246,3 +246,13 @@ $user-tile-hover-bg-color: $header-panel-bg-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// diff highlight colors
|
||||||
|
// intentionally swapped to avoid inversion
|
||||||
|
.hljs-addition {
|
||||||
|
background: #fdd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-deletion {
|
||||||
|
background: #dfd;
|
||||||
|
}
|
||||||
|
|
|
@ -341,3 +341,12 @@ $user-tile-hover-bg-color: $header-panel-bg-color;
|
||||||
color: $accent-color;
|
color: $accent-color;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// diff highlight colors
|
||||||
|
.hljs-addition {
|
||||||
|
background: #dfd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-deletion {
|
||||||
|
background: #fdd;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue