Projet

Général

Profil

0002-rochefort-use-footer-post-instead-of-footer-bottom-4.patch

Thomas Jund, 09 juillet 2020 16:40

Télécharger (1,34 ko)

Voir les différences:

Subject: [PATCH 2/2] rochefort: use footer-post instead of footer-bottom
 (#44616)

 static/rochefort/_custom.scss           | 4 ++--
 templates/variants/rochefort/theme.html | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)
static/rochefort/_custom.scss
162 162
	font-weight: normal;
163 163
}
164 164

  
165
div#footer-bottom-wrapper {
165
div#footer-post-wrapper {
166 166
	background: #0086CE;
167 167
	padding: 1.5ex 0;
168
	div#footer-bottom {
168
	div#footer-post {
169 169
		max-width: $width;
170 170
		margin: 0 auto;
171 171
		text-align: right;
templates/variants/rochefort/theme.html
16 16
</div>
17 17
{% endblock %}
18 18

  
19
{% block footer-bottom %}
20
<div id="footer-bottom-wrapper">
21
  <div id="footer-bottom">
19
{% block footer-post %}
20
<div id="footer-post-wrapper">
21
  <div id="footer-post">
22 22
    <a href="{{siteweb_url}}mentions-legales">Mentions légales</a>
23 23
  </div>
24 24
</div>
25
-