Fix select options ellipsis
This commit is contained in:
parent
348161da6e
commit
7395c90f7e
|
@ -82,12 +82,6 @@ p-calendar {
|
|||
.p-calendar {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.p-inputtext {
|
||||
color: #000;
|
||||
|
||||
@include peertube-input-text(100%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -98,6 +92,11 @@ p-calendar {
|
|||
grid-gap: 30px;
|
||||
}
|
||||
|
||||
.col-video-edit {
|
||||
max-width: 100%;
|
||||
min-width: 1px;
|
||||
}
|
||||
|
||||
.hide-chapter-label {
|
||||
height: 0;
|
||||
opacity: 0;
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
<div class="d-flex align-items-center item-label">
|
||||
<img *ngIf="item.imageUrl" alt="" class="me-2" [src]="item.imageUrl" />
|
||||
|
||||
<span [ngClass]="item.classes">{{ item.label }}</span>
|
||||
<span class="ellipsis" [ngClass]="item.classes">{{ item.label }}</span>
|
||||
</div>
|
||||
|
||||
<span *ngIf="description" class="muted">{{ description }}</span>
|
||||
|
|
Loading…
Reference in New Issue