Created
May 27, 2017 21:56
-
-
Save DawnPaladin/889f9610a6e2918ea2191c377a4000c1 to your computer and use it in GitHub Desktop.
Atom styles
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
/* | |
* Your Stylesheet | |
* | |
* This stylesheet is loaded when Atom starts up and is reloaded automatically | |
* when it is changed and saved. | |
* | |
* Add your own CSS or Less to fully customize Atom. | |
* If you are unfamiliar with Less, you can read more about it here: | |
* http://lesscss.org | |
*/ | |
atom-text-editor .gutter div.line-number.git-line-modified { | |
border-left: 2px solid cyan; | |
} | |
atom-text-editor .minimap .line .git-line-modified { | |
background: hsl(180, 50%, 50%); | |
} | |
atom-text-editor.editor atom-text-editor-minimap .minimap-visible-area::after { | |
background-image: linear-gradient(to right, rgba(255,255,255,.25), rgba(255,255,255,0)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment