Highlighting differences of lines in the diff view.

This commit is contained in:
Andrey Nering 2016-01-03 19:26:46 -02:00
parent 0cb7396840
commit 73474c043b
6 changed files with 137 additions and 3 deletions

View file

@ -2764,6 +2764,12 @@ footer .container .links > *:first-child {
#delete-repo-modal .ui.message {
width: 100%!important;
}
.removed-code {
background-color: #ff9999;
}
.added-code {
background-color: #99ff99;
}
.organization {
padding-top: 15px;
padding-bottom: 80px;

View file

@ -1217,3 +1217,11 @@
width: 100%!important;
}
}
.removed-code {
background-color: #ff9999;
}
.added-code {
background-color: #99ff99;
}