Merge pull request #2956 from mempool/mononaut/fix-missing-clipboard
Fix missing clipboard buttons
This commit is contained in:
commit
92b0b23765
@ -25,7 +25,6 @@
|
|||||||
align-items: baseline;
|
align-items: baseline;
|
||||||
width: 0;
|
width: 0;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
overflow: hidden;
|
|
||||||
margin-right: 0px;
|
margin-right: 0px;
|
||||||
margin-bottom: 0px;
|
margin-bottom: 0px;
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
|
@ -1,12 +1,9 @@
|
|||||||
<span class="truncate" [style.max-width]="maxWidth ? maxWidth + 'px' : null">
|
<span class="truncate" [style.max-width]="maxWidth ? maxWidth + 'px' : null">
|
||||||
<ng-container *ngIf="!rtl">
|
<ng-container *ngIf="!rtl">
|
||||||
<span class="first">{{text.slice(0,-lastChars)}}</span>
|
<span class="first">{{text.slice(0,-lastChars)}}</span><span class="last-four">{{text.slice(-lastChars)}}</span>
|
||||||
<span class="last-four">{{text.slice(-lastChars)}}</span>
|
|
||||||
<ng-content></ng-content>
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
<ng-container *ngIf="rtl">
|
<ng-container *ngIf="rtl">
|
||||||
<span class="first">{{text.slice(lastChars)}}</span>
|
<span class="first">{{text.slice(lastChars)}}</span><span class="last-four">{{text.slice(0,lastChars)}}</span>
|
||||||
<span class="last-four">{{text.slice(0,lastChars)}}</span>
|
|
||||||
<ng-content></ng-content>
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
<ng-content></ng-content>
|
||||||
</span>
|
</span>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user