0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-06 13:55:27 +00:00

Increase bottom margin for modal windows to work around Safari issue

cc: 
This commit is contained in:
Pēteris Caune 2023-10-04 10:22:53 +03:00
parent 5d99c544ee
commit 633e612b59
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2
3 changed files with 5 additions and 2 deletions
CHANGELOG.md
static/css
stuff/bootstrap

View file

@ -17,6 +17,7 @@ version is 3.10.
- Add an "Account closed." confirmation message after closing an account - Add an "Account closed." confirmation message after closing an account
- Add monthly uptime percentage display in Check Details page (#773) - Add monthly uptime percentage display in Check Details page (#773)
- Increase the precision of calculated downtime duration in check's details and reports - Increase the precision of calculated downtime duration in check's details and reports
- Increase bottom margin for modal windows to work around Mobile Safari issue (#899)
### Bug Fixes ### Bug Fixes
- Fix "senddeletionnotices" to recognize "Supporter" subscriptions - Fix "senddeletionnotices" to recognize "Supporter" subscriptions

View file

@ -4310,7 +4310,7 @@ button.close {
.modal-dialog { .modal-dialog {
position: relative; position: relative;
width: auto; width: auto;
margin: 10px; margin: 10px 10px 60px 10px;
} }
.modal-content { .modal-content {
position: relative; position: relative;

View file

@ -44,7 +44,9 @@
.modal-dialog { .modal-dialog {
position: relative; position: relative;
width: auto; width: auto;
margin: 10px; // Use 60px bottom margin to prevent Mobile Safari's nav bar from interfering
// See: https://github.com/healthchecks/healthchecks/pull/899
margin: 10px 10px 60px 10px;
} }
// Actual modal // Actual modal