Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: inline items in subscription form out of place #489

Merged
merged 1 commit into from
Aug 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ class="one-third" value="<?= $settings['smtp_port'] ?>" />
</div>
<h3><?= translate('cronjobs', $i18n) ?></h3>
<div>
<div class="inline">
<div class="inline-row">
<input type="button" value="Check for Updates" class="button tiny mobile-grow" onclick="executeCronJob('checkforupdates')">
<input type="button" value="Send Notifications" class="button tiny mobile-grow" onclick="executeCronJob('sendnotifications')">
<input type="button" value="Send Cancellation Notifications" class="button tiny mobile-grow" onclick="executeCronJob('sendcancellationnotifications')">
Expand All @@ -363,7 +363,7 @@ class="one-third" value="<?= $settings['smtp_port'] ?>" />
<input type="button" value="Update Exchange Rates" class="button tiny mobile-grow" onclick="executeCronJob('updateexchange')">
<input type="button" value="Update Next Payments" class="button tiny mobile-grow" onclick="executeCronJob('updatenextpayment')">
</div>
<div class="inline">
<div class="inline-row">
<textarea id="cronjobResult" class="thin" readonly></textarea>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion includes/version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
$version = "v2.22.0";
$version = "v2.22.1";
?>
2 changes: 1 addition & 1 deletion styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ header #avatar {
flex-basis: 50%;
}

.inline {
.inline-row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
Expand Down