Hover over App Bar for dropdown

Hi Team

Is it possible to setup the App Bar so that when you hover over an individual app, the options automatically dropdown (vs. having to click)?

Please let me know if I can provide any additional details that might be helpful.

Thanks,
Zach

This is a simple CSS hack. here is the code.

.navbar-pf .navbar-primary .dropdown:hover .dropdown-menu {
display: block !important;
overflow: hidden !important;
}

Thanks for this! Is there any code I need to add in the app settings window to enable this new class?

no need. just add this to your custom css file and it will work.