Merge pull request #4404 from mempool/simon/truncate-text-link-fix
Fixes truncated links
This commit is contained in:
commit
108d1762d6
@ -1,5 +1,4 @@
|
|||||||
<span class="truncate" [style.max-width]="maxWidth ? maxWidth + 'px' : null" [style.justify-content]="textAlign" [class.inline]="inline">
|
<span class="truncate" [style.max-width]="maxWidth ? maxWidth + 'px' : null" [style.justify-content]="textAlign" [class.inline]="inline">
|
||||||
<div class="hidden-content">{{ text }}</div>
|
|
||||||
<ng-container *ngIf="link">
|
<ng-container *ngIf="link">
|
||||||
<a [routerLink]="link" class="truncate-link">
|
<a [routerLink]="link" class="truncate-link">
|
||||||
<ng-container *ngIf="rtl; then rtlTruncated; else ltrTruncated;"></ng-container>
|
<ng-container *ngIf="rtl; then rtlTruncated; else ltrTruncated;"></ng-container>
|
||||||
@ -12,10 +11,11 @@
|
|||||||
</span>
|
</span>
|
||||||
|
|
||||||
<ng-template #ltrTruncated>
|
<ng-template #ltrTruncated>
|
||||||
|
|
||||||
<span class="first">{{text.slice(0,-lastChars)}}</span><span class="last-four">{{text.slice(-lastChars)}}</span>
|
<span class="first">{{text.slice(0,-lastChars)}}</span><span class="last-four">{{text.slice(-lastChars)}}</span>
|
||||||
|
<div class="hidden-content">{{ text }}</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
|
||||||
<ng-template #rtlTruncated>
|
<ng-template #rtlTruncated>
|
||||||
<span class="first">{{text.slice(lastChars)}}</span><span class="last-four">{{text.slice(0,lastChars)}}</span>
|
<span class="first">{{text.slice(lastChars)}}</span><span class="last-four">{{text.slice(0,lastChars)}}</span>
|
||||||
|
<div class="hidden-content">{{ text }}</div>
|
||||||
</ng-template>
|
</ng-template>
|
@ -39,6 +39,6 @@
|
|||||||
|
|
||||||
@media (max-width: 567px) {
|
@media (max-width: 567px) {
|
||||||
.hidden-content {
|
.hidden-content {
|
||||||
max-width: 150px;
|
max-width: 150px !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user