mirror of https://github.com/vector-im/riot-web
Fix inverted diff line highlighting in dark theme
Signed-off-by: Justin Sleep <justin@midnightmechanism.com>pull/21833/head
parent
6ef6b5909f
commit
d0b8565f54
|
@ -243,3 +243,12 @@ $breadcrumb-placeholder-bg-color: #272c35;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fixes diff color inversion by swapping add / del colors
|
||||||
|
.hljs-addition {
|
||||||
|
background: #fdd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-deletion {
|
||||||
|
background: #dfd;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue