Skip to content

Instantly share code, notes, and snippets.

@geddski
Last active April 3, 2017 10:09
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save geddski/0b0b0a25e9987eaa5255 to your computer and use it in GitHub Desktop.
Save geddski/0b0b0a25e9987eaa5255 to your computer and use it in GitHub Desktop.
improve Atom editor git gutter
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;
}
}
@geddski
Copy link
Author

geddski commented Dec 31, 2014

makes it look like this:

screenshot

@geddski
Copy link
Author

geddski commented Feb 12, 2015

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