Last active
April 3, 2017 10:09
-
-
Save geddski/0b0b0a25e9987eaa5255 to your computer and use it in GitHub Desktop.
improve Atom editor git gutter
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
atom-text-editor::shadow { | |
.line-numbers{ | |
padding-left: 4px !important; | |
} | |
.git-line-modified, .git-line-added{ | |
margin-left: -4px; | |
padding-left: 2px !important; | |
opacity: .5 | |
} | |
.git-line-added{ | |
border-left: 2px solid limegreen !important; | |
} | |
.git-line-modified{ | |
border-left: 2px solid #ff8300 !important; | |
} | |
.git-line-removed{ | |
margin-left: -4px; | |
padding-left: 4px !important; | |
} | |
} |
updated to pierce shadow DOM, and slightly thicker lines.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
makes it look like this: