mirror of
https://github.com/discourse/discourse.git
synced 2025-06-10 07:38:03 +08:00
UX: convert embedded topic list HTML structure from table to div
This commit is contained in:
@ -178,16 +178,22 @@ div.lightbox-wrapper {
|
|||||||
|
|
||||||
.topics-list {
|
.topics-list {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
.topic-list-item {
|
|
||||||
td {
|
|
||||||
padding: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-link a {
|
.topic-list-item {
|
||||||
color: $primary;
|
clear: both;
|
||||||
}
|
|
||||||
.main-link a:visited {
|
.main-link {
|
||||||
color: $primary-medium;
|
border-bottom: 1px solid #e9e9e9;
|
||||||
|
padding: 0.5rem;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $primary;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: $primary-medium;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
<%- if @list && @list.topics.present? %>
|
<%- if @list && @list.topics.present? %>
|
||||||
<table class='topics-list' data-embed-state='loaded' <%- if @embed_id %>data-embed-id="<%= @embed_id %>"<%- end %>>
|
<div class='topics-list' data-embed-state='loaded' <%- if @embed_id %>data-embed-id="<%= @embed_id %>"<%- end %>>
|
||||||
<%- @list.topics.each do |t| %>
|
<%- @list.topics.each do |t| %>
|
||||||
<tr class='topic-list-item'>
|
<div class='topic-list-item'>
|
||||||
<td class='main-link'>
|
<div class='main-link'>
|
||||||
<a target="_parent" href="<%= t.url %>" class="title raw-link raw-topic-link" data-topic-id="<%= t.id %>"><%= t.title %></a>
|
<a target="_parent" href="<%= t.url %>" class="title raw-link raw-topic-link" data-topic-id="<%= t.id %>"><%= t.title %></a>
|
||||||
</td>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<%- end %>
|
<%- end %>
|
||||||
</table>
|
</div>
|
||||||
<%- end %>
|
<%- end %>
|
||||||
|
Reference in New Issue
Block a user