N°938 - Improve print of portal object page and portal dashboard page (#537)

N°938 - Improve print of portal object page and portal dashboard page
This commit is contained in:
Anne-Catherine
2023-11-24 15:17:42 +01:00
committed by GitHub
parent 3b2da39469
commit c9b73a7fe2

View File

@@ -1463,3 +1463,27 @@ table .group-actions .item-action-wrapper .panel-body > p:last-child{
.wiki_broken_link {
text-decoration: line-through;
}
@media print {
/* Prevent URLs from being displayed */
a[href], img[src] {
&::after {
content: none !important;
}
}
/* Force modals to be displayed one after another instead of stacked */
.modal {
&.in {
position: relative;
top: unset;
z-index: unset;
overflow-y: unset;
}
}
#drag_overlay {
display: none;
}
}