19 lines
331 B
SCSS
19 lines
331 B
SCSS
|
@import '../framework/variables';
|
||
|
|
||
|
@mixin diff-background($background, $idiff, $border) {
|
||
|
background: $background;
|
||
|
|
||
|
&.line_content span.idiff {
|
||
|
background: $idiff;
|
||
|
}
|
||
|
|
||
|
&.diff-line-num {
|
||
|
border-color: $border;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@mixin dark-diff-match-line {
|
||
|
color: $dark-diff-match-bg;
|
||
|
background: $dark-diff-match-color;
|
||
|
}
|