Hirse / brackets-outline-list

Extension for Brackets and Phoenix to display a list of the functions or definitions in the currently opened document.
MIT License
79 stars 30 forks source link

extension Colors++ causing conflict? #105

Open Taariqq opened 6 years ago

Taariqq commented 6 years ago

I had outline list open when I decided to move it to the right side of the editor. It ceased functioning. I could open/close it, scroll through it, but clicking a tag or portion of code would not move the cursor there (html). Plus I could not move it to the left either, or close it, or use the gear icon.

After trial and error it seems like the extension Colors++ is causing some kind of a conflict. I disabled it, moved the extension to the right, got it working the way it was supposed to and then re-enabled Colors++ Works as is not. Just wanted to report in case you are still maintaining it. And I seriously hope someone does maintain it.

As wonderful as VS Code is, it is nothing compared to Brackets, if only for the live preview. I hope they continue development and maintenance of Brackets on Linux for a long time to come.

Hirse commented 6 years ago

Thanks for reporting. I have looking into it for a bit and it looks like the Colors++ Options panel is blocking the Outline List on the right. You can fix the issue (while still keeping the functionality of Colors++) with the following CSS snippet:

#colors-plus-plus-options.hide {
    visibility: hidden;
    transition: visibility 0.1s 1s;
}

I am hesitant to add this fix to the code as it does not technically belong here.