Skip to content

Instantly share code, notes, and snippets.

@tfausak
Last active August 27, 2016 13:19
Show Gist options
  • Save tfausak/7575715f329552918c657316f04dfffa to your computer and use it in GitHub Desktop.
Save tfausak/7575715f329552918c657316f04dfffa to your computer and use it in GitHub Desktop.
Make Haskell module specifiers less important in Atom. https://twitter.com/taylorfausak/status/769312949353652228
// the reasonable option
::shadow .haskell .entity .module,
::shadow .haskell .identifier .module {
opacity: 0.5;
}
// the nuclear option
::shadow .line:not(.cursor-line) .haskell .entity .module,
::shadow .line:not(.cursor-line) .haskell .identifier .module {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment