backports murph-skeleton

This commit is contained in:
Simon Vieille 2021-05-14 17:16:53 +02:00
parent 2883d23c7e
commit af4dbaa570
3 changed files with 16 additions and 3 deletions

View File

@ -258,6 +258,13 @@ th {
} }
} }
.bg-tiles {
background-color: #c1c1c1;
background-image: linear-gradient(45deg, #646464 25%, transparent 25%, transparent 75%, #646464 75%), linear-gradient(45deg, #646464 25%, transparent 25%, transparent 75%, #646464 75%);
background-size: 20px 20px;
background-position: 0 0, 10px 10px;
}
.tab-form { .tab-form {
padding: 15px; padding: 15px;
} }

View File

@ -42,7 +42,13 @@ class UserCreateCommand extends Command
$emailQuestion = new Question('E-mail: '); $emailQuestion = new Question('E-mail: ');
$emailQuestion->setValidator(function ($value) { $emailQuestion->setValidator(function ($value) {
return !empty($value); if (empty($value)) {
throw new \RuntimeException(
'The email must not be empty.'
);
}
return $value;
}); });
$passwordQuestion = new Question('Password (leave empty to generate a random password): '); $passwordQuestion = new Question('Password (leave empty to generate a random password): ');

View File

@ -6,9 +6,9 @@
{% set value = form.vars.data %} {% set value = form.vars.data %}
{% if value %} {% if value %}
{% if value and value.extension in ['jpeg', 'jpg', 'gif', 'png'] %} {% if value and value.extension in ['jpeg', 'jpg', 'gif', 'png', 'svg'] %}
<div class="card"> <div class="card">
<div class="card-img-top bg-dark text-center"> <div class="card-img-top bg-tiles text-center">
<a href="{{ asset(value.pathname) }}" target="_blank"> <a href="{{ asset(value.pathname) }}" target="_blank">
<img src="{{ asset(value.pathname) }}" class="img-fluid"> <img src="{{ asset(value.pathname) }}" class="img-fluid">
</a> </a>