0
Fork 0
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:
Elena Baidakova 2022-11-28 16:47:50 +04:00 committed by GitHub
parent d9b4057fe1
commit fbf761b0ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View file

@ -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}}

View file

@ -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;
}

View file

@ -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;