1
0
mirror of https://github.com/flarum/core.git synced 2025-07-20 16:21:18 +02:00

Restyle posts to be more compact, relocate controls

This commit is contained in:
Toby Zerner
2015-09-08 10:29:00 +09:30
parent ca53a63fd8
commit 26d1cb7e9f
3 changed files with 42 additions and 28 deletions

View File

@@ -10,6 +10,8 @@ import Composer from 'flarum/components/Composer';
import ItemList from 'flarum/utils/ItemList'; import ItemList from 'flarum/utils/ItemList';
import listItems from 'flarum/helpers/listItems'; import listItems from 'flarum/helpers/listItems';
import Button from 'flarum/components/Button'; import Button from 'flarum/components/Button';
import Dropdown from 'flarum/components/Dropdown';
import PostControls from 'flarum/utils/PostControls';
/** /**
* The `CommentPost` component displays a standard `comment`-typed post. This * The `CommentPost` component displays a standard `comment`-typed post. This
@@ -42,6 +44,8 @@ export default class CommentPost extends Post {
} }
content() { content() {
const controls = PostControls.controls(this.props.post, this).toArray();
return [ return [
<header className="Post-header"><ul>{listItems(this.headerItems().toArray())}</ul></header>, <header className="Post-header"><ul>{listItems(this.headerItems().toArray())}</ul></header>,
<div className="Post-body"> <div className="Post-body">
@@ -49,8 +53,17 @@ export default class CommentPost extends Post {
? <div className="Post-preview" config={this.configPreview.bind(this)}/> ? <div className="Post-preview" config={this.configPreview.bind(this)}/>
: m.trust(this.props.post.contentHtml())} : m.trust(this.props.post.contentHtml())}
</div>, </div>,
<footer className="Post-footer"><ul>{listItems(this.footerItems().toArray())}</ul></footer>, <aside className="Post-actions"><ul>
<aside className="Post-actions"><ul>{listItems(this.actionItems().toArray())}</ul></aside> {controls.length ? Dropdown.component({
children: controls,
className: 'Post-controls',
buttonClassName: 'Button Button--icon Button--flat',
menuClassName: 'Dropdown-menu--right',
icon: 'ellipsis-h'
}) : ''}
{listItems(this.actionItems().toArray())}
</ul></aside>,
<footer className="Post-footer"><ul>{listItems(this.footerItems().toArray())}</ul></footer>
]; ];
} }

View File

@@ -45,13 +45,7 @@ export default class Post extends Component {
return ( return (
<div> <div>
{controls.length ? Dropdown.component({
children: controls,
className: 'Post-controls',
buttonClassName: 'Button Button--icon Button--flat',
menuClassName: 'Dropdown-menu--right',
icon: 'ellipsis-v'
}) : ''}
{this.content()} {this.content()}
</div> </div>

View File

@@ -2,12 +2,13 @@
// Posts // Posts
.Post { .Post {
padding: 30px 20px; padding: 20px 20px 25px;
margin: -1px -20px; margin: -1px -20px;
transition: 0.2s box-shadow, top 0.2s, opacity 0.2s; transition: 0.2s box-shadow, top 0.2s, opacity 0.2s;
position: relative; position: relative;
top: 0; top: 0;
border-radius: @border-radius; border-radius: @border-radius;
.clearfix();
&.editing { &.editing {
top: 5px; top: 5px;
@@ -16,12 +17,12 @@
} }
.Post-controls { .Post-controls {
float: right; float: right;
margin-top: -8px; // margin-top: -8px;
margin-left: 10px; // margin-left: 10px;
} }
.Post-header { .Post-header {
margin-bottom: 10px; margin-bottom: 15px;
color: @muted-color; color: @muted-color;
&, a { &, a {
@@ -50,7 +51,7 @@
h3, h3 a { h3, h3 a {
color: @heading-color; color: @heading-color;
font-weight: bold; font-weight: bold;
font-size: 15px; font-size: 14px;
} }
.UserCard { .UserCard {
@@ -234,6 +235,8 @@
} }
} }
.Post-footer { .Post-footer {
margin-top: 20px;
> ul { > ul {
> li { > li {
margin-bottom: 5px; margin-bottom: 5px;
@@ -245,17 +248,19 @@
} }
} }
.Post-actions { .Post-actions {
margin-top: 10px; float: right;
margin-top: -3px;
.transition(opacity 0.2s); .transition(opacity 0.2s);
@media @tablet-up { @media @tablet-up {
margin-bottom: -10px; margin-bottom: -10px;
opacity: 0; opacity: 0.5;
} }
> ul { > ul {
> li { > li {
margin-right: 10px; margin-right: 0;
margin-left: -5px;
display: inline-block; display: inline-block;
} }
} }
@@ -328,33 +333,35 @@
} }
} }
@avatar-column-width: 85px;
@media @tablet-up { @media @tablet-up {
.Post { .Post {
padding-left: 20px + 90px; padding-left: 20px + @avatar-column-width;
.Post-controls { // .Post-controls {
opacity: 0; // opacity: 0.5;
transition: opacity 0.2s; // transition: opacity 0.2s;
} // }
&:hover .Post-controls, .Post-controls.open { // &:hover .Post-controls, .Post-controls.open {
opacity: 1; // opacity: 1;
} // }
} }
.PostUser-avatar { .PostUser-avatar {
margin-left: -90px; margin-left: -@avatar-column-width;
float: left; float: left;
.Avatar--size(64px); .Avatar--size(64px);
} }
.PostUser-badges { .PostUser-badges {
float: left; float: left;
position: relative; position: relative;
margin-left: -85px; margin-left: -@avatar-column-width + 5px;
margin-top: -3px; margin-top: -3px;
width: 64px; width: 64px;
} }
.EventPost-icon { .EventPost-icon {
text-align: right; text-align: right;
margin-left: -90px; margin-left: -@avatar-column-width;
width: 64px; width: 64px;
font-size: 22px; font-size: 22px;
} }