diff --git a/app/assets/javascripts/discourse/templates/full-page-search.hbs b/app/assets/javascripts/discourse/templates/full-page-search.hbs index 7c0248d3f..b869f0a72 100644 --- a/app/assets/javascripts/discourse/templates/full-page-search.hbs +++ b/app/assets/javascripts/discourse/templates/full-page-search.hbs @@ -60,16 +60,20 @@ {{#each model.posts as |result|}}
-
- {{avatar result imageSize="large"}} -
+
+ {{avatar result imageSize="large"}} +
+ +
{{#if bulkSelectEnabled}} {{track-selected selectedList=selected selectedId=result.topic}} {{/if}} + {{topic-status topic=result.topic disableActions=true}}{{#highlight-text highlight=q}}{{{unbound result.topic.fancyTitle}}}{{/highlight-text}} +
{{category-link result.topic.category}} {{#each result.topic.tags as |tag|}} @@ -78,26 +82,30 @@ {{plugin-outlet "full-page-search-category"}}
+
- {{format-age result.created_at}} - {{#if result.blurb}} - - - {{/if}} + {{format-age result.created_at}} + {{#if result.blurb}} + - + {{/if}} + {{#if result.blurb}} {{#highlight-text highlight=q}} {{{unbound result.blurb}}} {{/highlight-text}} {{/if}}
+ {{#if showLikeCount}} - {{#if result.like_count}} - - {{/if}} + {{#if result.like_count}} + + {{/if}} {{/if}} +
{{/each}} diff --git a/app/assets/stylesheets/common/base/search.scss b/app/assets/stylesheets/common/base/search.scss index 3b49da70c..3eaee928a 100644 --- a/app/assets/stylesheets/common/base/search.scss +++ b/app/assets/stylesheets/common/base/search.scss @@ -1,7 +1,8 @@ .fps-result { .author { - float: left; + display: inline-block; + vertical-align: top; } .like-count { @@ -14,7 +15,6 @@ } .search-category { - float:right; padding-top:3px; } @@ -46,7 +46,6 @@ .blurb { font-size: 1.0em; line-height: 20px; - margin-left: 60px; word-wrap: break-word; max-width: 640px; color: dark-light-choose(scale-color($primary, $lightness: 40%), scale-color($secondary, $lightness: 60%)); @@ -64,6 +63,10 @@ } } +.fps-topic { + display: inline-block; +} + .fps-select { margin-top: -15px; margin-bottom: 15px; diff --git a/app/assets/stylesheets/mobile/search.scss b/app/assets/stylesheets/mobile/search.scss index 0438c41c0..b55afefc4 100644 --- a/app/assets/stylesheets/mobile/search.scss +++ b/app/assets/stylesheets/mobile/search.scss @@ -14,3 +14,7 @@ .fps-search-context { margin-bottom: 15px; } + +.fps-topic { + max-width: 75%; +}