[MNT-25478] Fix info button display (#5099)

* [MNT-25478] Fix info button display

* [MNT-25478] CR fix
This commit is contained in:
Michal Kinas
2026-03-16 16:17:17 +01:00
committed by GitHub
parent 884bb185e4
commit 73fd3085b8
3 changed files with 5 additions and 3 deletions
@@ -8,7 +8,7 @@
[innerHTML]="displayText | async | translate"> [innerHTML]="displayText | async | translate">
</a> </a>
} @else { } @else {
<div> <div class="aca-location-link-unknown">
<span <span
class="adf-datatable-cell-value" class="adf-datatable-cell-value"
[title]="'APP.BROWSE.SEARCH.UNKNOWN_LOCATION' | translate"> [title]="'APP.BROWSE.SEARCH.UNKNOWN_LOCATION' | translate">
@@ -2,7 +2,6 @@
&-unknown { &-unknown {
display: flex; display: flex;
align-items: center; align-items: center;
font-size: 12px;
.adf-datatable-cell-value:hover { .adf-datatable-cell-value:hover {
color: var(--theme-foreground-text-color); color: var(--theme-foreground-text-color);
@@ -5,6 +5,10 @@
padding: 10px 0; padding: 10px 0;
width: inherit; width: inherit;
.aca-search-results-text {
min-width: 0;
}
.aca-highlight { .aca-highlight {
background: var(--theme-search-highlight-background-color); background: var(--theme-search-highlight-background-color);
} }
@@ -15,7 +19,6 @@
} }
.aca-result-location { .aca-result-location {
height: 15px;
padding-top: 3px; padding-top: 3px;
} }