Merge pull request #12290 from MrPetovan/bug/frio-contact-follow

[frio] Add page wrapper to contact follow page
This commit is contained in:
Michael Vogel 2022-11-29 19:59:10 +01:00 committed by GitHub
commit dddf17b5c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 32 deletions

View File

@ -3605,6 +3605,11 @@ section .profile-match-wrapper {
font-size: 13px;
}
.generic-page-wrapper.contact-follow-wrapper {
min-height: auto;
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
.mod-home.is-not-singleuser #content,

View File

@ -1,15 +1,16 @@
<h1>{{$header}}</h1>
<div class="generic-page-wrapper contact-follow-wrapper">
<h2>{{$header}}</h2>
{{if !$myaddr}}
<p id="dfrn-request-intro">
<p id="dfrn-request-intro">
{{$page_desc nofilter}}
</p>
<p>
</p>
<p>
{{$invite_desc nofilter}}
</p>
</p>
{{/if}}
<form action="{{$action}}" method="post">
<form action="{{$action}}" method="post">
{{if $url}}
<dl>
<dt>{{$url_label}}</dt>
@ -40,4 +41,5 @@
{{/if}}
<input class="btn btn-default" type="submit" name="cancel" id="dfrn-request-cancel-button" value="{{$cancel}}">
</div>
</form>
</form>
</div>