-
-
Save Keda87/118f19c78286ca845d4d 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; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment