mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 01:56:01 -05:00
Merge pull request #2601 from awesomerobot/master
tiger striping on mobile categories
This commit is contained in:
commit
7bc4ac3e61
2 changed files with 6 additions and 4 deletions
|
@ -14,9 +14,9 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{#each topics}}
|
{{#each topics}}
|
||||||
<tr {{bind-attr class="archived"}}>
|
<tr class="category-topic-link" {{bind-attr class="archived"}}>
|
||||||
<td class='main-link'>
|
<td class='main-link'>
|
||||||
<div class='topic-inset'>
|
<div class='topic-inset'>
|
||||||
{{topic-status topic=this}}
|
{{topic-status topic=this}}
|
||||||
|
@ -48,8 +48,8 @@
|
||||||
<td class='num posts'>{{number posts_count}}</td>
|
<td class='num posts'>{{number posts_count}}</td>
|
||||||
<td class='num age'><span class="{{cold-age-class created_at}}" title='{{raw-date created_at}}'>{{{age created_at}}}</span></td>
|
<td class='num age'><span class="{{cold-age-class created_at}}" title='{{raw-date created_at}}'>{{{age created_at}}}</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/each}}
|
|
||||||
|
|
||||||
|
{{/each}}
|
||||||
{{#if subcategories}}
|
{{#if subcategories}}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
|
|
|
@ -81,7 +81,9 @@
|
||||||
// Category list
|
// Category list
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
|
tr.category-topic-link:nth-of-type(odd) {
|
||||||
|
background-color: darken($secondary, 3%) !important;
|
||||||
|
}
|
||||||
|
|
||||||
#topic-list.categories {
|
#topic-list.categories {
|
||||||
td.latest {
|
td.latest {
|
||||||
|
|
Loading…
Reference in a new issue