mirror of
https://gitlab.com/openlp/web-remote.git
synced 2024-12-22 03:22:48 +00:00
Prevent that the delete service item button is blocking the service item title.
This commit is contained in:
parent
c768d02904
commit
a396df09ff
@ -1,10 +1,13 @@
|
||||
<mat-card
|
||||
class="service-item no-select"
|
||||
[class.selected]="selected">
|
||||
<mat-card-content (click)="onItemSelected(item)">
|
||||
<mat-icon class="service-item-icon">{{ getIcon(item) }}</mat-icon> {{ item.title }}
|
||||
<mat-card-content
|
||||
class="card-content"
|
||||
(click)="onItemSelected(item)">
|
||||
<mat-icon class="service-item-icon">{{ getIcon(item) }}</mat-icon> {{ item.title }}
|
||||
</mat-card-content>
|
||||
@if (useDeleteServiceItemFromOpenlp) {
|
||||
<mat-card-actions>
|
||||
<button
|
||||
mat-icon-button
|
||||
class="delete-service-item-button no-select"
|
||||
@ -13,5 +16,6 @@
|
||||
(click)="deleteFromService(item)">
|
||||
<mat-icon>delete_outline</mat-icon>
|
||||
</button>
|
||||
</mat-card-actions>
|
||||
}
|
||||
</mat-card>
|
||||
|
@ -1,10 +1,20 @@
|
||||
.service-item {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
/* Align icons with text */
|
||||
.service-item-icon {
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.card-content {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.delete-service-item-button {
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
right: 20px;
|
||||
right: 5px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user