Merge pull request #1075 from keepassxreboot/feature/hide_banner_when_printing

Remove Credential Banner when printing
This commit is contained in:
Sami Vänttinen 2020-10-31 15:42:47 +02:00 committed by GitHub
commit 6eced38d62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -159,3 +159,9 @@ div.kpxc-banner-dialog .list-group-item:hover {
color: var(--kpxc-text-color) !important;
}
}
@media print {
div.kpxc-banner {
visibility: hidden;
}
}