Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion geonode/base/templates/base/menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

{% if menu_items|length > 0 %}

<li>
<li class="inactive">

<a href="" class="dropdown-toggle" data-toggle="dropdown"
role="button" aria-haspopup="true">
Expand Down
3 changes: 3 additions & 0 deletions geonode/static/geonode/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -8248,3 +8248,6 @@ form-inline {
.iso-categories .row a:hover span {
background-color: black;
}
.inactive a {
background-color: inherit !important;
}
3 changes: 3 additions & 0 deletions geonode/static/geonode/less/base.less
Original file line number Diff line number Diff line change
Expand Up @@ -1776,3 +1776,6 @@ form-inline {
background-color: black;
}
}
.inactive a {
background-color: inherit !important;
}
5 changes: 4 additions & 1 deletion geonode/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,10 @@ <h4 class="modal-title" id="myModalLabel">{% trans "Sign in" %}</h4>
<script type="text/javascript" src="{% url "javascript-catalog" %}"></script>
{% block extra_script %}{% endblock extra_script %}
<script type="text/javascript">

window.addEventListener("load", function(){
$(".inactive").removeClass("active");
$(".inactive").removeClass("inactive");
});
// Autocomplete instance for the search found in the header.
$(document).ready(function() {
window.autocomplete2 = new Autocomplete({
Expand Down