FIX: Adjust mobile list for recent topic list changes (#257)
This commit is contained in:
parent
a5120b7574
commit
a9a427150e
|
@ -2,5 +2,6 @@ import TopicListItem from "discourse/components/topic-list-item";
|
||||||
import { equal } from "@ember/object/computed";
|
import { equal } from "@ember/object/computed";
|
||||||
|
|
||||||
export default TopicListItem.extend({
|
export default TopicListItem.extend({
|
||||||
|
classNames: ["assigned-topic-list-item"],
|
||||||
isPrivateMessage: equal("topic.archetype", "private_message"),
|
isPrivateMessage: equal("topic.archetype", "private_message"),
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<td>
|
<td class="topic-list-data">
|
||||||
<div class="main-link">
|
<div class="main-link">
|
||||||
{{topic-status topic=topic}}
|
{{topic-status topic=topic}}
|
||||||
{{~#if isPrivateMessage}}
|
{{~#if isPrivateMessage}}
|
||||||
|
|
|
@ -5,6 +5,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.assigned-topic-list-item {
|
||||||
|
.pull-right .num.activity {
|
||||||
|
margin-right: 0.5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.select-kit-row[data-value="unassign-mobile-header"] {
|
.select-kit-row[data-value="unassign-mobile-header"] {
|
||||||
background: rgba(var(--primary-low-rgb), 0.5);
|
background: rgba(var(--primary-low-rgb), 0.5);
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
|
|
Loading…
Reference in New Issue