0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Content filter style updates

This commit is contained in:
John O'Nolan 2017-03-13 12:48:21 +02:00
parent e39a31656e
commit b9c391333e
2 changed files with 29 additions and 7 deletions

View file

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

View file

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