Merge branch 'RED-9840' into 'master'

RED-9840: Allow to open global search results in a new browser tab

Closes RED-9840

See merge request redactmanager/red-ui!579
This commit is contained in:
Valentin-Gabriel Mihai 2024-09-23 14:53:11 +02:00
commit cbedb8370b
2 changed files with 62 additions and 55 deletions

View File

@ -1,3 +1,4 @@
<a [routerLink]="item.routerLink" class="item-link">
<div class="cell filename">
<div [matTooltip]="item.filename" class="table-item-title heading" matTooltipPosition="above">
<span
@ -40,8 +41,8 @@
color: item.status,
label: fileStatusTranslations[item.status] | translate,
length: 1,
cssClass: 'all-caps-label'
}
cssClass: 'all-caps-label',
},
]"
[small]="true"
></iqser-status-bar>
@ -60,3 +61,4 @@
{{ item.numberOfPages }}
</div>
</div>
</a>

View File

@ -7,3 +7,8 @@
background-color: var(--iqser-highlight-color);
}
}
a.item-link {
display: contents;
@include common-mixins.clear-a;
}