mirror of
https://github.com/flarum/framework.git
synced 2024-12-05 00:43:39 +08:00
38 lines
591 B
Plaintext
38 lines
591 B
Plaintext
|
// ------------------------------------
|
||
|
// Sidebar
|
||
|
|
||
|
@media @desktop-up {
|
||
|
.IndexPage-nav .item-newDiscussion .Button {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ------------------------------------
|
||
|
// Results
|
||
|
|
||
|
.IndexPage-toolbar {
|
||
|
margin-bottom: 15px;
|
||
|
}
|
||
|
.IndexPage-toolbar-view, .IndexPage-toolbar-action {
|
||
|
display: inline-block;
|
||
|
margin: 0;
|
||
|
list-style: none;
|
||
|
padding: 0;
|
||
|
|
||
|
> li {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
}
|
||
|
.IndexPage-toolbar-view > li {
|
||
|
margin-right: 5px;
|
||
|
}
|
||
|
.IndexPage-toolbar-action {
|
||
|
float: right;
|
||
|
|
||
|
> li {
|
||
|
margin-left: 5px;
|
||
|
}
|
||
|
}
|