diff --git a/app/assets/javascripts/discourse/templates/mobile/discovery/categories.js.handlebars b/app/assets/javascripts/discourse/templates/mobile/discovery/categories.js.handlebars index 191bf3fab8e..fb4038a4420 100644 --- a/app/assets/javascripts/discourse/templates/mobile/discovery/categories.js.handlebars +++ b/app/assets/javascripts/discourse/templates/mobile/discovery/categories.js.handlebars @@ -4,12 +4,6 @@ {{category-link this allowUncategorized=true}} - -
- {{#each featured_users}} - {{avatar this imageSize="small"}} - {{/each}} -
{{i18n posts}} {{i18n age}} diff --git a/app/assets/stylesheets/common/base/_topic-list.scss b/app/assets/stylesheets/common/base/_topic-list.scss index cfb6d1115dd..331573b6c1f 100644 --- a/app/assets/stylesheets/common/base/_topic-list.scss +++ b/app/assets/stylesheets/common/base/_topic-list.scss @@ -123,39 +123,6 @@ } -.category-list-item { - margin-bottom: 10px; - #topic-list tbody tr:nth-child(even) { - background-color: darken($secondary, 3%); - } - th .badge-category { - float: left; - margin: 1px 4px 0 0; - } - .posters { - float: left; - } - > footer { - border-top: 0; - padding: 7px 10px; - figure { - float: left; - margin: 3px 7px 0 0; - color: scale-color($primary, $lightness: 10%); - font-weight: bold; - font-size: 12px; - } - figcaption { - display: inline; - font-weight: normal; - } - .btn { - float: right; - margin-left: 7px; - } - } -} - .loading #topic-list { border: 0; @include box-shadow(none); diff --git a/app/assets/stylesheets/desktop/topic-list.scss b/app/assets/stylesheets/desktop/topic-list.scss index 8710f5ceb90..9cdc40ab583 100644 --- a/app/assets/stylesheets/desktop/topic-list.scss +++ b/app/assets/stylesheets/desktop/topic-list.scss @@ -232,19 +232,6 @@ } } -// Category list -// -------------------------------------------------- - -.category-list-item { - th .badge-category { - float: left; - } - .posters { - display: block; - width: 165px; - } -} - #topic-list-bottom { margin: 20px 0; } diff --git a/app/assets/stylesheets/mobile/topic-list.scss b/app/assets/stylesheets/mobile/topic-list.scss index e168b90c195..bf3546b43d9 100644 --- a/app/assets/stylesheets/mobile/topic-list.scss +++ b/app/assets/stylesheets/mobile/topic-list.scss @@ -134,11 +134,39 @@ } .category-list-item { + margin-bottom: 10px; + #topic-list tbody tr:nth-child(even) { + background-color: darken($secondary, 3%); + } + th .badge-category { + float: left; + margin: 1px 4px 0 0; + } .posters { - display: none; + float: left; + } + > footer { + border-top: 0; + padding: 7px 10px; + figure { + float: left; + margin: 3px 7px 0 0; + color: scale-color($primary, $lightness: 10%); + font-weight: bold; + font-size: 12px; + } + figcaption { + display: inline; + font-weight: normal; + } + .btn { + float: right; + margin-left: 7px; + } } } + #topic-list-bottom { margin: 20px 12px 0 12px; }