undue footer change for bootstrap 3, switch to dvh heights, deal with small screens

This commit is contained in:
El RIDO 2024-09-15 10:57:42 +02:00
parent 57080eb7cc
commit cc16dd0165
No known key found for this signature in database
GPG Key ID: 0F5C940A6BD81F92
4 changed files with 16 additions and 4 deletions

View File

@ -2,7 +2,7 @@
## 1.7.5 (not yet released)
* ADDED: Allow non persistent SQL connections, if configured (#1394)
* CHANGED: Tweaked page footer of the `bootstrap` & `bootstrap5` templates (#1392)
* CHANGED: Tweaked page footer of the `bootstrap5` template (#1392)
* CHANGED: Simpler PostgreSQL table lookup query (#1361)
* CHANGED: SRI hashes are now configurable, no longer hardcoded in templates (#1365)
* CHANGED: Upgrading libraries to: DOMpurify 3.1.6

View File

@ -88,7 +88,13 @@ body.loading {
}
#message {
height: 70vh;
height: 70dvh;
}
@media ((max-width: 450px) and (max-height: 950px)) {
#message {
height: 55dvh;
}
}
#message, .replymessage {

View File

@ -33,7 +33,13 @@
}
#message {
height: 70vh;
height: 70dvh;
}
@media ((max-width: 450px) and (max-height: 950px)) {
#message {
height: 55dvh;
}
}
#message, .replymessage {

View File

@ -592,7 +592,7 @@ endif;
<span class="small"><?php echo I18n::_('In case this message never disappears please have a look at <a href="%s">this FAQ for information to troubleshoot</a>.', 'https://github.com/PrivateBin/PrivateBin/wiki/FAQ#why-does-the-loading-message-not-go-away'); ?></span>
</div>
</section>
<footer class="container navbar-fixed-bottom">
<footer class="container">
<div class="row">
<h4 class="col-md-5 col-xs-8"><?php echo I18n::_($NAME); ?> <small>- <?php echo I18n::_('Because ignorance is bliss'); ?></small></h4>
<p class="col-md-1 col-xs-4 text-center"><?php echo $VERSION; ?></p>