diff options
| author | Fredrik Ekdahl <fekdahl@gmail.com> | 2024-10-23 17:55:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-23 16:55:41 +0100 |
| commit | 774eb6bada09fdd46a086fd31e84fd157a6351c4 (patch) | |
| tree | 2672ab5d0218a657fa32802e71873b7212028555 /resources/views | |
| parent | 3ee4c7ef16663dd8419c69876f7c40ed549d5490 (diff) | |
| download | webtrees-774eb6bada09fdd46a086fd31e84fd157a6351c4.tar.gz webtrees-774eb6bada09fdd46a086fd31e84fd157a6351c4.tar.bz2 webtrees-774eb6bada09fdd46a086fd31e84fd157a6351c4.zip | |
Fixes #5043 (#5047)
Diffstat (limited to 'resources/views')
| -rw-r--r-- | resources/views/modals/media-file-fields.phtml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/resources/views/modals/media-file-fields.phtml b/resources/views/modals/media-file-fields.phtml index c4d9aa6ef6..0090c8c353 100644 --- a/resources/views/modals/media-file-fields.phtml +++ b/resources/views/modals/media-file-fields.phtml @@ -18,7 +18,7 @@ use Fisharebest\Webtrees\Tree; ?> -<div class="row <?= $media_file instanceof MediaFile ? 'd-none' : '' ?>"> +<div class="row mb-3 <?= $media_file instanceof MediaFile ? 'd-none' : '' ?>"> <label class="col-form-label col-sm-2" for="file-location"> <?= I18N::translate('Media file') ?> </label> @@ -39,7 +39,7 @@ use Fisharebest\Webtrees\Tree; </div> </div> -<div class="row file-location file-location-upload <?= $media_file instanceof MediaFile ? 'd-none' : '' ?>"> +<div class="row file-location file-location-upload mb-3 <?= $media_file instanceof MediaFile ? 'd-none' : '' ?>"> <label class="col-form-label col-sm-2" for="file"> <?= I18N::translate('A file on your computer') ?> </label> @@ -52,7 +52,7 @@ use Fisharebest\Webtrees\Tree; </div> </div> -<div class="row file-location file-location-upload <?= $media_file instanceof MediaFile && $media_file->isExternal() ? 'd-none' : '' ?>"> +<div class="row file-location file-location-upload mb-3 <?= $media_file instanceof MediaFile && $media_file->isExternal() ? 'd-none' : '' ?>"> <label class="col-form-label col-sm-2" for="folder"> <?= I18N::translate('Filename on server') ?> </label> @@ -83,7 +83,7 @@ use Fisharebest\Webtrees\Tree; </div> </div> -<div class="row file-location file-location-unused d-none"> +<div class="row file-location file-location-unused mb-3 d-none"> <label class="col-form-label col-sm-2" for="unused"> <?= I18N::translate('A file on the server') ?> </label> @@ -94,7 +94,7 @@ use Fisharebest\Webtrees\Tree; </div> </div> -<div class="row file-location file-location-url <?= $media_file && $media_file->isExternal() ? '' : 'd-none' ?>"> +<div class="row file-location file-location-url mb-3 <?= $media_file && $media_file->isExternal() ? '' : 'd-none' ?>"> <label class="col-form-label col-sm-2" for="remote"> <?= I18N::translate('URL') ?> </label> |
