mirror of
https://github.com/mempool/mempool.git
synced 2025-04-12 05:49:21 +02:00
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">
|
||||
<div class="hidden-content">{{ text }}</div>
|
||||
<ng-container *ngIf="link">
|
||||
<a [routerLink]="link" class="truncate-link">
|
||||
<ng-container *ngIf="rtl; then rtlTruncated; else ltrTruncated;"></ng-container>
|
||||
@ -12,10 +11,11 @@
|
||||
</span>
|
||||
|
||||
<ng-template #ltrTruncated>
|
||||
|
||||
<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 #rtlTruncated>
|
||||
<span class="first">{{text.slice(lastChars)}}</span><span class="last-four">{{text.slice(0,lastChars)}}</span>
|
||||
<div class="hidden-content">{{ text }}</div>
|
||||
</ng-template>
|
@ -39,6 +39,6 @@
|
||||
|
||||
@media (max-width: 567px) {
|
||||
.hidden-content {
|
||||
max-width: 150px;
|
||||
max-width: 150px !important;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user