restyling

This commit is contained in:
Roland Gruber 2022-01-02 14:27:02 +01:00
parent 9396d532f8
commit 5e57ac978a
2 changed files with 10 additions and 1 deletions

View file

@ -107,7 +107,7 @@ function printHeader(string $headerPrefix): void {
<a href="https://www.ldap-account-manager.org/" target="new_window"> <a href="https://www.ldap-account-manager.org/" target="new_window">
<img class="align-middle" width="24" height="24" alt="help" src="<?php echo $headerPrefix; ?>/graphics/logo24.png"> <img class="align-middle" width="24" height="24" alt="help" src="<?php echo $headerPrefix; ?>/graphics/logo24.png">
<span class="hide-on-tablet">&nbsp;&nbsp;<?php echo $userName?></span> <span class="hide-on-tablet">&nbsp;&nbsp;<?php echo $userName?></span>
<span class="hide-on-mobile"> <span class="hide-on-mobile-and-tablet">
<?php <?php
echo getLAMVersionText(); echo getLAMVersionText();
?> ?>

View file

@ -330,6 +330,15 @@ div.account-types-popup div.columns:last-child {
} }
/* mobile and tablet */
@media only screen and (max-width: 64.0625em) {
.hide-on-mobile-and-tablet {
display: none !important;
}
}
/* tablet and bigger */ /* tablet and bigger */
@media only screen and (min-width: 40.0625em) { @media only screen and (min-width: 40.0625em) {