better responsive layout for new topic btn
This commit is contained in:
parent
b7e6620109
commit
bfd892bbbc
|
@ -4,6 +4,6 @@
|
||||||
{{navigation-bar navItems=navItems filterMode=filterMode}}
|
{{navigation-bar navItems=navItems filterMode=filterMode}}
|
||||||
|
|
||||||
{{#if canCreateTopic}}
|
{{#if canCreateTopic}}
|
||||||
<button id="create-topic" class='btn btn-default' {{action "createTopic"}}><i class='fa fa-plus'></i>{{i18n 'topic.create'}}</button>
|
<button id="create-topic" class='btn btn-default' {{action "createTopic"}}><i class='fa fa-plus'></i><span>{{i18n 'topic.create'}}</span></button>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/d-section}}
|
{{/d-section}}
|
||||||
|
|
|
@ -313,10 +313,20 @@ and (max-width : 850px) {
|
||||||
.nav-pills {
|
.nav-pills {
|
||||||
> li > a {
|
> li > a {
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
padding: 5px 10px ;
|
padding: 5px 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// new topic just a "+" no text
|
||||||
|
button#create-topic {
|
||||||
|
span {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
i {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.topic-list {
|
.topic-list {
|
||||||
|
|
||||||
// tighter table header spacing
|
// tighter table header spacing
|
||||||
|
|
Loading…
Reference in New Issue