diff --git a/datamodels/2.x/itop-portal-base/portal/public/css/portal.scss b/datamodels/2.x/itop-portal-base/portal/public/css/portal.scss index dcf5c0cc1..fec61051f 100644 --- a/datamodels/2.x/itop-portal-base/portal/public/css/portal.scss +++ b/datamodels/2.x/itop-portal-base/portal/public/css/portal.scss @@ -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; + } +} \ No newline at end of file