jothepro / doxygen-awesome-css

Custom CSS theme for doxygen html-documentation with lots of customization parameters.
https://jothepro.github.io/doxygen-awesome-css/
MIT License
1.02k stars 118 forks source link

Sidebar gets lost (unreachable) when reduced to minimum size #115

Closed manzerbredes closed 1 year ago

manzerbredes commented 1 year ago

Hello, here is the problem: ezgif com-crop At some point, by mistake, I resized the sidebar to its minimum size. Problem is, I am not having access to the sidebar anymore with the mouse pointer. Even after refreshing the web page (due to the web browser cache I believe). Maybe having a minimum size for the sidebar can solve the problem? Thank you for the great work.

narendra8088 commented 1 year ago

Are you used code boostrap or CSS any other language framework library add?

jothepro commented 1 year ago

I agree, this should not happen. Afaik in the original Doxygen the sidebar handle would have some width, so it cannot get stuck. A minimum sidebar width would be a good workaround :+1:.

This should fix it for now:

#side-nav {
  min-width: 45px;
}

I'll try to provide an official fix soon.