mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
Fixed post title in the filter dropdown on the Members page (#15884)
closes TryGhost/Team#2265
This commit is contained in:
parent
d9b4057fe1
commit
fbf761b0ac
3 changed files with 9 additions and 2 deletions
|
@ -43,7 +43,7 @@
|
|||
</div>
|
||||
|
||||
{{else if this.isResourceFilter }}
|
||||
<div class="relative">
|
||||
<div class="relative gh-members-resource-filter">
|
||||
<GhResourceSelect
|
||||
@onChange={{fn this.setResourceFilterValue @filter}}
|
||||
@type={{this.resourceFilterType}}
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
.gh-filter-builder .gh-filter-inputgroup {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 146px 1fr 18px;
|
||||
grid-template-columns: 1fr 146px minmax(0, 1fr) 18px;
|
||||
grid-column-gap: 8px;
|
||||
}
|
||||
|
||||
|
|
|
@ -2496,6 +2496,13 @@ p.gh-members-import-errordetail:first-of-type {
|
|||
margin-top: -16px;
|
||||
}
|
||||
|
||||
.gh-members-resource-filter .ember-power-select-selected-item {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
.gh-members-filter-builder {
|
||||
width: 780px;
|
||||
margin-top: 8px;
|
||||
|
|
Loading…
Add table
Reference in a new issue