Skip to content

Commit a94e2a8

Browse files
authoredSep 14, 2021
fixing overflow issue on long powertag names (#10131)
1 parent 032edf8 commit a94e2a8

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed
 

‎app/views/tag/_miniCard.html.erb

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<div class="card" style="clear:left; <% if local_assigns[:grey] %>background:#eee;<% end %>">
22
<div class="card-body">
33

4+
<a class="ellipsis pull-right" data-toggle="dropdown" style="cursor:pointer"><i class="fa fa-ellipsis-h" style="color:#666;font-size:18px;margin-right:10px;"></i></a>
45
<% if tag.name.include? ':' %>
5-
<a href="https://publiclab.org/wiki/power-tags">
6-
<span class="fa fa-question-circle" style="margin-left:140px;"></span>
6+
<a href="https://publiclab.org/wiki/power-tags" class="pull-right" style="margin:0px 12px;">
7+
<span class="fa fa-question-circle"></span>
78
</a>
89
<% end %>
9-
<a class="ellipsis pull-right" data-toggle="dropdown" style="cursor:pointer"><i class="fa fa-ellipsis-h" style="color:#666;font-size:18px;margin-right:10px;"></i></a>
1010
<div class="dropdown-menu" style = "font-size:13px;">
1111
<div class="dropdown-item"><a href='/tag/<%= tag.name %>' style="color:black; text-decoration: underline;"><%= Tag.tagged_node_count(tag.name) || 0 %> notes</a></div>
1212
<div class="dropdown-item">created by <a href='/profile/<%= tag.try(:author).try(:username) %>' style="color:black; text-decoration: underline;"><%= tag.try(:author).try(:username) %></a> <%= time_ago_in_words(Time.at(tag.date)) %> ago</div>
@@ -27,11 +27,7 @@
2727
</div>
2828

2929
<a href="/tag/<%= tag.name%>">
30-
<% if !tag.name.include? ':' %>
31-
<h5 style="text-decoration:underline;color:black;"><%= tag.name %></h5>
32-
<% else %>
33-
<h5 style="text-decoration:underline;color:black;margin-top:-25px;"><%= tag.name %></h5>
34-
<% end %>
30+
<h5 style="text-decoration:underline;color:black;"><%= tag.name %></h5>
3531
</a>
3632
<% if !tag.name.include? ':' %>
3733
<p style="font-size:15px;">

0 commit comments

Comments
 (0)
Please sign in to comment.