# HG changeset patch # User Andrew Shadura # Date 2017-01-11 18:10:19 # Node ID d94e87f92a476109c210edfdd645103115574f9b # Parent 8bd7a637cea00de25ab9c4b305a713b2cb2feceb style: fix the CSS selector referring to the notification box The notification box is shown by a CSS rule with this selector: .dropdown.open .dropdown-menu However, since 8bd7a63, the selector :nav.navbar #quick li #quick_login" no longer refers to the same element. To make the notification box work correctly, refer to it using its class name, .dropdown-menu. diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css --- a/kallithea/public/css/style.css +++ b/kallithea/public/css/style.css @@ -3127,7 +3127,7 @@ div#legend_data, div#legend_container, d float: left; } -nav.navbar #quick li #quick_login, +nav.navbar #quick li .dropdown-menu, #content #left #menu ul.closed, #content #left #menu li ul.collapsed, .yui-tt-shadow {