-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible to always show the foldout triangle in side bar? #24
Comments
This is one of the first things I wanted to fix with my theme. You need to create an override for the opacity of the ".arrow" class (which is the triangle). Like this:
Normally this is set to 0 when you're not hovering over it. If you force the entire class to be opaque all the time that gets solved. I did this in a second CSS file that contains all my extra styles that deviate from the base theme from here. I would suggest creating a @jothepro |
This is definitely one of the more controversial design decisions I made. I decided to hide them by default to give the navigation a cleaner look similar to vuepress, which was my design inspiration. I agree that it makes sense to make this a parameter so you don't have to override the CSS style manually. 👍 |
I also added some CSS to change the nav arrows. I liked being able to see the arrows at all times, but I didn't want them to grab a lot of attention. Therefore, I made them smaller and kept a small opacity value: /--- NAV TREE ---/ .arrow:hover { .arrow { See my documentation here: https://rapidcode.roboticsys.com/ |
Thanks for all the responses! Worked like a charm! |
FYI: I have added the new variables Pls let me know if that helps you to reduce your manual overrides. This will be included in a new release in the next days. :) |
Unlike the default Doxygen theme, Awesome only shows the foldout triangles if you hover over that particular element. Is there a quick way to change that behavior to always show?
Thanks,
The text was updated successfully, but these errors were encountered: