mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-03 04:15:29 +00:00
Increase bottom margin for modal windows to work around Safari issue
cc: #899
This commit is contained in:
parent
5d99c544ee
commit
633e612b59
3 changed files with 5 additions and 2 deletions
|
@ -17,6 +17,7 @@ version is 3.10.
|
|||
- Add an "Account closed." confirmation message after closing an account
|
||||
- Add monthly uptime percentage display in Check Details page (#773)
|
||||
- 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
|
||||
- Fix "senddeletionnotices" to recognize "Supporter" subscriptions
|
||||
|
|
2
static/css/bootstrap.css
vendored
2
static/css/bootstrap.css
vendored
|
@ -4310,7 +4310,7 @@ button.close {
|
|||
.modal-dialog {
|
||||
position: relative;
|
||||
width: auto;
|
||||
margin: 10px;
|
||||
margin: 10px 10px 60px 10px;
|
||||
}
|
||||
.modal-content {
|
||||
position: relative;
|
||||
|
|
|
@ -44,7 +44,9 @@
|
|||
.modal-dialog {
|
||||
position: relative;
|
||||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue