mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-17 07:21:05 +00:00
fix margin for modal alerts on upload
This commit is contained in:
parent
156f646613
commit
7e31851949
2 changed files with 8 additions and 4 deletions
|
@ -354,10 +354,9 @@ script(type='text/ng-template', id='newFolderModalTemplate')
|
|||
script(type="text/ng-template", id="uploadFileModalTemplate")
|
||||
.modal-header
|
||||
h3 #{translate("upload_files")}
|
||||
span
|
||||
.alert.alert-warning.small(ng-if="tooManyFiles") #{translate("maximum_files_uploaded_together", {max:"{{max_files}}"})}
|
||||
.alert.alert-warning.small(ng-if="rateLimitHit") #{translate("too_many_files_uploaded_throttled_short_period")}
|
||||
.alert.alert-warning.small(ng-if="notLoggedIn") #{translate("session_expired_redirecting_to_login", {seconds:"{{secondsToRedirect}}"})}
|
||||
.alert.alert-warning.small.modal-alert(ng-if="tooManyFiles") #{translate("maximum_files_uploaded_together", {max:"{{max_files}}"})}
|
||||
.alert.alert-warning.small.modal-alert(ng-if="rateLimitHit") #{translate("too_many_files_uploaded_throttled_short_period")}
|
||||
.alert.alert-warning.small.modal-alert(ng-if="notLoggedIn") #{translate("session_expired_redirecting_to_login", {seconds:"{{secondsToRedirect}}"})}
|
||||
|
||||
.modal-body(
|
||||
fine-upload
|
||||
|
|
|
@ -237,3 +237,8 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.modal-alert {
|
||||
margin-top:10px;
|
||||
margin-bottom:0px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue