diff --git a/app/assets/javascripts/discourse/templates/components/group-post.hbs b/app/assets/javascripts/discourse/templates/components/group-post.hbs index 66386d75ae9..7521788ec35 100644 --- a/app/assets/javascripts/discourse/templates/components/group-post.hbs +++ b/app/assets/javascripts/discourse/templates/components/group-post.hbs @@ -1,19 +1,28 @@ -
{{!-- DEPRECATED: 'item' class --}} -
-
{{avatar post.user imageSize="large" extraClasses="actor" ignoreTitle="true"}}
- {{format-date post.created_at leaveAgo="true"}} - {{expand-post item=post}} - - {{{post.topic.fancyTitle}}} - - {{category-link post.category}} -
+
+
+ + {{avatar post.user imageSize="large" extraClasses="actor" ignoreTitle="true"}} + +
+ -

- {{{post.excerpt}}} -

+
+
+ {{{post.excerpt}}}
diff --git a/app/assets/javascripts/discourse/templates/group-activity-posts.hbs b/app/assets/javascripts/discourse/templates/group-activity-posts.hbs index 298edaff831..061160d1ed1 100644 --- a/app/assets/javascripts/discourse/templates/group-activity-posts.hbs +++ b/app/assets/javascripts/discourse/templates/group-activity-posts.hbs @@ -1,7 +1,7 @@ -{{#load-more selector=".user-stream .user-stream-item" action=(action "loadMore")}} -
+{{#load-more selector=".group-post" action=(action "loadMore")}} +
{{#each model as |post|}} - {{group-post post=post}} + {{group-post post=post class="group-post"}} {{else}}
{{i18n emptyText}}
{{/each}} diff --git a/app/assets/stylesheets/common/base/group.scss b/app/assets/stylesheets/common/base/group.scss index c476e892da6..4b8f48d08bb 100644 --- a/app/assets/stylesheets/common/base/group.scss +++ b/app/assets/stylesheets/common/base/group.scss @@ -4,6 +4,43 @@ margin-bottom: 15px; } +.group-post { + .group-post-header { + display: flex; + + .group-post-avatar { + margin-right: 0.5em; + } + + .time, + .delete-info { + color: lighten($primary, 40%); + font-size: 0.8em; + } + + .group-member-info { + display: flex; + color: lighten($primary, 40%); + } + } + + .group-post-info { + display: flex; + width: 100%; + justify-content: space-between; + } + + .group-post-excerpt { + margin: 1em 0; + font-size: 0.929em; + word-wrap: break-word; + color: $primary; + } + + padding: 1em 0; + border-bottom: 1px solid $primary-low; +} + .group-info { width: 100%; diff --git a/app/assets/stylesheets/common/components/user-stream-item.scss b/app/assets/stylesheets/common/components/user-stream-item.scss index fbdcc97e668..078d5fd2e4f 100644 --- a/app/assets/stylesheets/common/components/user-stream-item.scss +++ b/app/assets/stylesheets/common/components/user-stream-item.scss @@ -111,20 +111,6 @@ word-wrap: break-word; color: $primary; } - - .group-member-info { - .name { - display: inline-block; - margin-top: 5px; - color: dark-light-choose($primary-medium,$secondary-medium); - } - - .title { - display: inline-block; - margin-top: 5px; - color: dark-light-choose($primary-medium, $secondary-medium); - } - } } .user-stream .child-actions, // DEPRECATED: '.user-stream .child-actions' selector diff --git a/app/assets/stylesheets/desktop/group.scss b/app/assets/stylesheets/desktop/group.scss index e287be2cb0e..ea1378fd1e2 100644 --- a/app/assets/stylesheets/desktop/group.scss +++ b/app/assets/stylesheets/desktop/group.scss @@ -1,3 +1,4 @@ + .group-nav { li { float: left;