I wanted to use this extension, but it hides some things I use on a regular basis and can't seem to find an option to add back
for example, I use the "repos you contribute to" section pretty frequently to quickly navigate to repos I don't own.
is there a way to add that back with the current settings?
thanks
@Thatkookooguy github created a great tool for that!! The best is you don't even need an extention!
Its called...... The search tool.
Search the repo and you will see that you can add your own custom CSS to add it back
In the options, paste this CSS:
.dashboard-sidebar > .boxed-group[role="navigation"] {
display: block !important;
}
It turns out it wasn't possible because our CSS was injected before Chrome injects our stylesheet, so our !important was coming after the user's. I short we should avoid !important even more now.
@yakov116 I don't know why you need to use that tone of voice. Here, I'll give you a few scenarios:
now let's look at the different routes for each case
Search the repo and you will see that you can add your own custom CSS to add it back
Well... here's @bfred-it comment which might shed some light on this:
It turns out it wasn't possible because our CSS was injected before Chrome injects our stylesheet, so our !important was coming after the user's. I short we should avoid !important even more now.
@yakov116 you can use whatever you want in your workflow. I don't see a reason to make any of these conversations unpleasant.
Thanks everybody for the information! and thanks @bfred-it for the quick fix. I can add it back now :-)