Skip to content

Commit 74b3134

Browse files
authored
[Fixes: GeoNode#6640] Style Tag outside of html (GeoNode#6657)
1 parent 70c2035 commit 74b3134

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

geonode/layers/templates/layers/layer_list.html

-7
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,5 @@
33
{% load client_lib_tags %}
44

55
{% block head %}
6-
7-
<style>
8-
#paneltbar {
9-
margin-top: 90px !important;
10-
}
11-
</style>
12-
136
{% get_layer_list %}
147
{% endblock %}

geonode/layers/templates/layers/layer_list_default.html

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@
55
{% block title %} {% trans "Explore Layers" %} - {{ block.super }} {% endblock %}
66

77
{% block body_class %}{% trans "layers explore" %}{% endblock %}
8-
8+
{% block extra_head %}
9+
<style>
10+
#paneltbar {
11+
margin-top: 90px !important;
12+
}
13+
</style>
14+
{% endblock %}
915
{% block body %}
1016
<div class="page-header">
1117
{% if not READ_ONLY_MODE %}

0 commit comments

Comments
 (0)