Skip to content
This repository was archived by the owner on Jul 14, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{#unless skipHeader}}
<thead class="topic-list-header">
<thead class="topic-list-header assigned-topic-list-header">
{{raw "topic-list-header"
canBulkSelect=canBulkSelect
canDoBulkActions=canDoBulkActions
Expand All @@ -17,7 +17,7 @@
</thead>
{{/unless}}

<tbody class="topic-list-body">
<tbody class="topic-list-body assigned-topic-list-body">
{{#each filteredTopics as |topic|}}
{{assigned-topic-list-item
topic=topic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
{{/if}}

{{#if topics}}
<table class="topic-list">
<tbody class="topic-list-body">
<table class="topic-list assigned-topic-list">
<tbody class="topic-list-body assigned-topic-list-body">
{{#each topics as |t|}}
{{assigned-topic-list-item
topic=t
Expand Down
2 changes: 1 addition & 1 deletion assets/stylesheets/assigns.scss
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
color: var(--primary-medium);
}

.topic-list-header .topic-list-data.num:last-of-type {
.assigned-topic-list-header .topic-list-data.num:last-of-type {
margin-right: 50px; // account for button in topic-list-items in topic-list-refactor
}

Expand Down
7 changes: 7 additions & 0 deletions assets/stylesheets/mobile/assigns.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
grid-template-areas:
"left-top right-top"
"left-bottom right-bottom";
grid-column-start: 1;
grid-column-end: 3;
.discourse-tags {
grid-area: left-top;
max-width: unset;
Expand All @@ -34,6 +36,11 @@
}
}

.assigned-topic-list-item .topic-list-data {
display: grid;
grid-template-columns: 1fr 37px; // 37px is size of button
}

.select-kit-row[data-value="unassign-mobile-header"] {
background: rgba(var(--primary-low-rgb), 0.5);
pointer-events: none;
Expand Down