mirror of https://github.com/vector-im/riot-web
Explicitly define diff colors in light theme
Signed-off-by: Justin Sleep <justin@midnightmechanism.com>pull/21833/head
parent
d0b8565f54
commit
dcdf68d7e1
|
@ -244,7 +244,7 @@ $breadcrumb-placeholder-bg-color: #272c35;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fixes diff color inversion by swapping add / del colors
|
// diff highlight colors
|
||||||
.hljs-addition {
|
.hljs-addition {
|
||||||
background: #fdd;
|
background: #fdd;
|
||||||
}
|
}
|
||||||
|
|
|
@ -338,3 +338,12 @@ $breadcrumb-placeholder-bg-color: #e8eef5;
|
||||||
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