Fix: fix long tag visual wrapping (#8833)

This commit is contained in:
shamoon 2025-01-20 07:43:39 -08:00 committed by GitHub
parent e00dd46b22
commit 475c231c6f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@
(change)="onChange(value)"> (change)="onChange(value)">
<ng-template ng-label-tmp let-item="item"> <ng-template ng-label-tmp let-item="item">
<button class="tag-wrap btn p-0" (click)="removeTag($event, item.id)" title="Remove tag" i18n-title> <button class="tag-wrap btn p-0 d-flex align-items-center" (click)="removeTag($event, item.id)" title="Remove tag" i18n-title>
<i-bs name="x" style="margin-inline-end: 1px;"></i-bs> <i-bs name="x" style="margin-inline-end: 1px;"></i-bs>
@if (item.id && tags) { @if (item.id && tags) {
<pngx-tag style="background-color: none;" [tag]="getTag(item.id)"></pngx-tag> <pngx-tag style="background-color: none;" [tag]="getTag(item.id)"></pngx-tag>

View File

@ -1,8 +1,8 @@
a { a, span {
cursor: pointer; cursor: pointer;
white-space: normal; white-space: normal;
word-break: break-word; word-break: break-word;
text-align: end; text-align: start;
} }
.private { .private {