Last active
January 13, 2017 11:47
-
-
Save royteusink/43c0be6a3ee0c4262324dea2661c9fbf to your computer and use it in GitHub Desktop.
Atom.io personal stylesheet
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
// Makes the scrollbar a little bit better to see. | |
atom-text-editor.editor ::-webkit-scrollbar-thumb { | |
background: #666 !important; | |
} | |
// Bidirectional text is broken, so let's pretend it doesn't exist. | |
atom-text-editor.editor .line { | |
unicode-bidi: bidi-override; | |
} | |
// Removes indent guides left border. | |
atom-text-editor.editor .indent-guide { | |
box-shadow: none; | |
} | |
// Highlight current active line. | |
atom-text-editor.editor .cursor-line { | |
background-color: #33353A; | |
} | |
// Highlight trailing en leading whitespaces in red, requires showInvisibles to be configured. | |
atom-text-editor.editor .trailing-whitespace, | |
atom-text-editor.editor .trailing-whitespace.hard-tab, | |
atom-text-editor.editor .leading-whitespace { | |
background: rgba(255,0,0,0.2); | |
color: red; | |
} | |
// Highlight leading hard-tab with a soft gray tone. | |
atom-text-editor.editor .hard-tab, | |
atom-text-editor.editor .leading-whitespace.hard-tab { | |
background-color: rgba(150,150,150,0.05); | |
color: #444; | |
} | |
// Makes the wrap guide less visible, requires atom/wrapguide to be configured. | |
atom-text-editor.editor .wrap-guide { | |
width: 1px; | |
background-color: rgba(255,255,255,0.05); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment