Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. The highlighting on Atom is pretty bad and hard to see when using find replace. Change it by 'Atom -> Styleshee' and adding:
  2. atom-text-editor::shadow .highlight {
  3. &.find-result .region,
  4. &.current-result .region,
  5. &.current-result ~ .highlight.selection .region {
  6. z-index: -1;
  7. }
  8.  
  9. &.find-result .region {
  10. background: yellow;
  11. }
  12.  
  13. &.current-result .region,
  14. &.current-result ~ .highlight.selection .region {
  15. background: orange;
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement