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 c39b45b3e6..98a835864f 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 @@ -1841,3 +1841,27 @@ table .group-actions .item-action-wrapper .panel-body > p:last-child{ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px lighten($state-danger-border, 10); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px lighten($state-danger-border, 10); } + +@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