[PATCH] style: fix the CSS selector referring to the notification box

Andrew Shadura andrew at shadura.me
Wed Jan 11 17:10:34 UTC 2017


# HG changeset patch
# User Andrew Shadura <andrew at shadura.me>
# Date 1484154619 -3600
#      Wed Jan 11 18:10:19 2017 +0100
# Node ID 555c69e38194c708415f36410d40e5fb9c6a506b
# Parent  c419161d7812f6edf3c6a962a7233e08c3b9b3b5
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 {


More information about the kallithea-general mailing list