This commit is contained in:
Simon Vieille 2022-09-27 20:30:16 +02:00
parent f16fa35515
commit 313ebbd685
Signed by: deblan
GPG key ID: 579388D585F70417
2 changed files with 10 additions and 5 deletions

View file

@ -124,13 +124,18 @@ pre[class*="language-"] {
// border-radius: 10px; // border-radius: 10px;
// } // }
// //
.captcha_image {
margin-bottom: 5px;
}
.captcha_reload { .captcha_reload {
width: 50px !important; width: 50px !important;
padding-left: 50px; padding-left: 50px;
height: 50px; height: 50px;
overflow: hidden; overflow: hidden;
display: inline-block; display: inline-block;
margin-bottom: -19px; margin-bottom: -19px;i
&:active, &:focus { &:active, &:focus {
background: none; background: none;

View file

@ -14,13 +14,13 @@
</h2> </h2>
<ul class="md:flex md:gap-3 pl-0"> <ul class="md:flex md:gap-3 pl-0">
<li class="pl-0 mt-0 sm:mb-0"> <li class="pl-0 mt-0 sm:inline">
<time datetime="{{ post.publishedAt|date("Y-m-d") }}" title="{{ post.publishedAt|date("r") }}"> <time datetime="{{ post.publishedAt|date("Y-m-d") }}" title="{{ post.publishedAt|date("r") }}">
{{- 'Le ' ~ post.publishedAt|date("d/m/Y à H\\hi") -}} {{- 'Le ' ~ post.publishedAt|date("d/m/Y à H\\hi") -}}
</time> </time>
</li> </li>
{% for category in post.categories %} {% for category in post.categories %}
<li class="pl-0 mt-0 sm:mb-0"> <li class="pl-0 mt-0 sm:inline">
<a href="{{ safe_path('blog_menu_category', {category: category.id, slug: category.slug, _domain: _domain}) }}"> <a href="{{ safe_path('blog_menu_category', {category: category.id, slug: category.slug, _domain: _domain}) }}">
{{- category.title -}} {{- category.title -}}
</a> </a>
@ -28,7 +28,7 @@
{% endfor %} {% endfor %}
{% for tag in post.tags %} {% for tag in post.tags %}
<li class="pl-0 mt-0 sm:mb-0"> <li class="pl-0 mt-0 sm:inline">
<a href="{{ safe_path('blog_menu_search', {tag: tag.label, _domain: _domain}) }}"> <a href="{{ safe_path('blog_menu_search', {tag: tag.label, _domain: _domain}) }}">
{{- '#' ~ tag.label -}} {{- '#' ~ tag.label -}}
</a> </a>
@ -169,7 +169,7 @@
</div> </div>
</div> </div>
<div class="col-span-2"> <div class="col-span-2">
<div class="flex justify-start gap-3"> <div class="md:flex justify-start gap-3">
{{ form_label(form.captcha, null, {label_attr: {class: 'label'}}) }} {{ form_label(form.captcha, null, {label_attr: {class: 'label'}}) }}
{{ form_widget(form.captcha, {attr: {class: 'input input-bordered'}}) }} {{ form_widget(form.captcha, {attr: {class: 'input input-bordered'}}) }}
</div> </div>