Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. // style the background color of the tree view
  2. .tree-view {
  3. // background-color: whitesmoke;
  4. }
  5.  
  6. // style the background and foreground colors on the atom-text-editor-element itself
  7. atom-text-editor {
  8. background-color: #0e1726;
  9. }
  10.  
  11. .item-views {
  12. background: #0e1726 !important;
  13. }
  14.  
  15. atom-text-editor,
  16. atom-text-editor.editor {
  17. .line-numbers {
  18. text-indent: 999em;
  19. width: 23px;
  20. overflow: hidden;
  21. position: relative;
  22.  
  23. .icon-right {
  24. position: absolute;
  25. left: 0;
  26. text-indent: 0;
  27. }
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement