Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. // tree view git colors //
  2.  
  3. //status added
  4. .list-tree li:not(.list-nested-item):not(.tabBlender).status-added,
  5. .list-group li:not(.list-nested-item):not(.tabBlender).status-added,
  6. .list-tree li.list-nested-item > .list-item.status-added, .list-group li.list-nested-item > .list-item.status-added,
  7. .list-tree li.list-nested-item.status-added:not(.selected) > .list-item,
  8. .list-group li.list-nested-item.status-added:not(.selected) > .list-item {
  9. color: #c092ce;
  10. }
  11. .tree-view:focus li:not(.list-nested-item).selected.status-added::before,
  12. .tree-view:focus li.list-nested-item > .list-item.selected.status-added::before,
  13. .tree-view:focus li.directory.selected.status-added > .list-item:after {
  14. background-color: #c092ce;
  15. }
  16.  
  17. //status modified
  18. .list-tree li:not(.list-nested-item):not(.tabBlender).status-modified,
  19. .list-group li:not(.list-nested-item):not(.tabBlender).status-modified,
  20. .list-tree li.list-nested-item > .list-item.status-modified, .list-group li.list-nested-item > .list-item.status-modified,
  21. .list-tree li.list-nested-item.status-modified:not(.selected) > .list-item,
  22. .list-group li.list-nested-item.status-modified:not(.selected) > .list-item {
  23. color: #fe7272;
  24. }
  25. .tree-view:focus li:not(.list-nested-item).selected.status-modified::before,
  26. .tree-view:focus li.list-nested-item > .list-item.selected.status-modified::before,
  27. .tree-view:focus li.directory.selected.status-modified > .list-item:after {
  28. background-color: #fe7272;
  29. }
  30.  
  31. //status renamed
  32. .list-tree li:not(.list-nested-item):not(.tabBlender).status-renamed,
  33. .list-group li:not(.list-nested-item):not(.tabBlender).status-renamed,
  34. .list-tree li.list-nested-item > .list-item.status-renamed, .list-group li.list-nested-item > .list-item.status-renamed,
  35. .list-tree li.list-nested-item.status-renamed:not(.selected) > .list-item,
  36. .list-group li.list-nested-item.status-renamed:not(.selected) > .list-item {
  37. color: #ea88b9;
  38. }
  39. .tree-view:focus li:not(.list-nested-item).selected.status-renamed::before,
  40. .tree-view:focus li.list-nested-item > .list-item.selected.status-renamed::before,
  41. .tree-view:focus li.directory.selected.status-renamed > .list-item:after {
  42. background-color: #ea88b9;
  43. }
  44.  
  45. //status removed
  46. .list-tree li:not(.list-nested-item):not(.tabBlender).status-removed,
  47. .list-group li:not(.list-nested-item):not(.tabBlender).status-removed,
  48. .list-tree li.list-nested-item > .list-item.status-removed,
  49. .list-group li.list-nested-item > .list-item.status-removed,
  50. .list-tree li.list-nested-item.status-removed:not(.selected) > .list-item,
  51. .list-group li.list-nested-item.status-removed:not(.selected) > .list-item {
  52. color: #f04841;
  53. }
  54. .tree-view:focus li:not(.list-nested-item).selected.status-removed::before,
  55. .tree-view:focus li.list-nested-item > .list-item.selected.status-removed::before,
  56. .tree-view:focus li.directory.selected.status-removed > .list-item:after {
  57. background-color: #f04841;
  58. }
  59.  
  60. // selected
  61. .tree-view:focus li.selected,
  62. .tree-view:focus li.selected > * {
  63. color: #efeef1 !important;
  64. }
  65.  
  66. // linter highlight status //
  67. .linter-highlight.status-success {
  68. color: #c092ce;
  69. }
  70. .linter-highlight.status-error {
  71. color: #f04841;
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement