mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 20:03:12 +03:00
Content filter style updates
This commit is contained in:
parent
e39a31656e
commit
b9c391333e
@ -8,11 +8,29 @@
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin: 2vw 0 1vw;
|
||||
padding: 0;
|
||||
padding: 10px 0 0 0;
|
||||
border-top: color(var(--lightgrey)) 1px solid;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.gh-contentfilter-left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.gh-contentfilter-left .gh-contentfilter-menu {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.gh-contentfilter-right {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.gh-contentfilter-right .gh-contentfilter-menu {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.gh-contentfilter li {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
|
@ -13,6 +13,7 @@
|
||||
searchField="name"
|
||||
onchange=(action "changeType")
|
||||
tagName="div"
|
||||
classNames="gh-contentfilter-menu gh-contentfilter-type"
|
||||
data-test-type-select=true
|
||||
as |type|
|
||||
}}
|
||||
@ -26,6 +27,7 @@
|
||||
searchField="name"
|
||||
onchange=(action "changeAuthor")
|
||||
tagName="div"
|
||||
classNames="gh-contentfilter-menu gh-contentfilter-author"
|
||||
data-test-author-select=true
|
||||
as |author|
|
||||
}}
|
||||
@ -39,6 +41,7 @@
|
||||
searchField="name"
|
||||
onchange=(action "changeTag")
|
||||
tagName="div"
|
||||
classNames="gh-contentfilter-menu gh-contentfilter-tag"
|
||||
data-test-tag-select=true
|
||||
as |tag|
|
||||
}}
|
||||
@ -54,6 +57,7 @@
|
||||
searchEnabled=false
|
||||
onchange=(action "changeOrder")
|
||||
tagName="div"
|
||||
classNames="gh-contentfilter-menu gh-contentfilter-sort"
|
||||
data-test-order-select=true
|
||||
as |order|
|
||||
}}
|
||||
@ -93,12 +97,12 @@
|
||||
|
||||
{{#if showDeletePostModal}}
|
||||
{{gh-fullscreen-modal "delete-post"
|
||||
model=(hash
|
||||
post=selectedPost
|
||||
onSuccess=(route-action 'onPostDeletion')
|
||||
)
|
||||
close=(action "toggleDeletePostModal")
|
||||
modifier="action wide"}}
|
||||
model=(hash
|
||||
post=selectedPost
|
||||
onSuccess=(route-action 'onPostDeletion')
|
||||
)
|
||||
close=(action "toggleDeletePostModal")
|
||||
modifier="action wide"}}
|
||||
{{/if}}
|
||||
|
||||
{{outlet}}
|
||||
|
Loading…
Reference in New Issue
Block a user