-
Notifications
You must be signed in to change notification settings - Fork 416
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
optimize diff view, add background and line number
- Loading branch information
1 parent
6e9e05c
commit 562dc13
Showing
7 changed files
with
223 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
/** | ||
* Created by ThirtyDegreesRay on 2017/11/10 16:00:00 | ||
*/ | ||
|
||
body { | ||
font-size: 12px; | ||
line-height: 1.5; | ||
color:#EEEEEE; | ||
} | ||
|
||
.pre { | ||
display: table; | ||
min-width: 100%; | ||
padding-right: 8px; | ||
} | ||
|
||
.add { | ||
background:#33601E; | ||
} | ||
|
||
.remove { | ||
background:#801C1C; | ||
} | ||
|
||
.change { | ||
background:#282A2F; | ||
color:#9E9E9E; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
/** | ||
* Created by ThirtyDegreesRay on 2017/11/10 16:00:00 | ||
*/ | ||
|
||
body { | ||
font-size: 12px; | ||
line-height: 1.5; | ||
color:#212121; | ||
} | ||
|
||
.pre { | ||
display: table; | ||
min-width: 100%; | ||
padding-right: 8px; | ||
} | ||
|
||
.add { | ||
background:#ACF2BD; | ||
} | ||
|
||
.remove { | ||
background:#FDB8C0; | ||
} | ||
|
||
.change { | ||
background:#EAEAEA; | ||
color:#757575; | ||
} |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.