Compare commits

...

1 Commits

Author SHA1 Message Date
Thomas MONCHICOURT 0dfc9af863 Feat : modification couleur cookie bar 2018-08-22 16:48:40 +02:00
4 changed files with 19 additions and 12 deletions
@@ -9,13 +9,20 @@
{% set text_accept_button = fairlane_cookie_consent.twig.text_accept_button %}
{% endif %}
<div id="fairlane-cookie-consent" {% if fairlane_cookie_consent.useBootstrap == true %}class="navbar navbar-fixed-top"{% endif %}>
<p>
{{ text_info }}
{% if fairlane_cookie_consent.twig.url_additional_info| length > 1 and text_additional_info_link | length > 1 %}
<a href="{{ fairlane_cookie_consent.twig.url_additional_info }}" target="_blank">{{ text_additional_info_link }}</a>
{% endif %}
</p>
<button class="btn btn-default">{{ text_accept_button }}</button>
<div class="container">
<div class="row">
<div class="col s8">
<p>{{ text_info }}
{% if fairlane_cookie_consent.twig.url_additional_info| length > 1 and text_additional_info_link | length > 1 %}
<a href="{{ fairlane_cookie_consent.twig.url_additional_info }}" target="_blank">{{ text_additional_info_link }}</a>
{% endif %}
</p>
</div>
<div class="col s4">
<button class="btn btn-default">{{ text_accept_button }}</button>
</div>
</div>
</div>
</div>
{% if fairlane_cookie_consent.useJquery %}
<script type="text/javascript">
+2 -2
View File
@@ -13307,8 +13307,8 @@ a.link-white-underline {
position: fixed;
bottom: 0;
width: 100%;
background: rgba(255, 255, 255, 0.8);
text-align: center;
background: rgba(0, 0, 0, 0.8);
color: #FFF;
padding: 20px;
font-size: 12px; }
File diff suppressed because one or more lines are too long
@@ -272,8 +272,8 @@
position: fixed;
bottom: 0;
width: 100%;
background: rgba(255,255,255,0.8);
text-align: center;
background: rgba(0,0,0,0.8);
color: #FFF;
padding: 20px;
font-size:12px;
}