-
Notifications
You must be signed in to change notification settings - Fork 364
Stop Git Highlighting #657
Comments
@spyropress you can edit your stylesheet, see the discussion here: For Atom 1.2.3, I tested using the following (slightly different from the last suggestion in the discussion): .tree-view li.list-nested-item[class*='status-'] > .list-item {
color: #fff !important;
}
.icon-file-text {
color:#fff !important;
} |
Using the stylesheet to modify the colors to not differentiate the various states is the standard way of doing this. Let us know if @glangford's solution doesn't work for you. |
This style seems to overwrite the text-color of specific style, howere icons and folders are still in status colors. Since i have no experience with LESS i don't know if it's even supposed to do that, but now it looks like something half way cooked. Using Atom version 1.3.2! |
@simurai Could you take a look at this and maybe update the README with info on a quick snippet to drop into your |
@YourPsychiatrist I retested again using 1.4.0, and it still works fine in my environment. After updating and saving styles.less, icons and folders are not in status colors. Not sure about 1.3.2. |
Hmmm, it seems reasonable to to me to add a setting for |
How about this: // remove Git colors from tree-view
.tree-view {
.status-modified,
.status-added,
.status-renamed,
.status-removed {
color: inherit !important; // remove diff color
&.directory > .list-item {
color: inherit !important; // remove diff color
}
&.directory.selected > .list-item {
color: @text-color-selected !important; // add selected color
}
}
} it |
@lee-dohm Could you please take a look here. |
Since this issue hasn't seen any progress in quite a while, I'm going to close it. The maintainer team isn't going to be working on adding this feature anytime soon but we would be open to a well-crafted PR to implement this. Thanks everyone for your feedback! |
The code posted in here didn't remove everything and had issues with the atom-material theme so i came up with this.
} .tree-view:focus li.directory.selected.status-added > .list-item::after { .tree-view:focus li:not(.list-nested-item).selected.status-added::before, tree-view:focus li.list-nested-item > .list-item.selected.status-added::before { status-bar .git-view { |
Hi, I want to disable the GIT highlighting in the treeview. Is that possible.
Thanks in Advance
The text was updated successfully, but these errors were encountered: