Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion app/views/challenge_assignments/_maintainer_index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<%= render "maintainer_index_fulfilled" %>
<% else %>
<%= form_tag update_multiple_collection_assignments_path(@collection), method: :put do %>
<fieldset>
<fieldset class="maintainer-assignments">
Comment thread
noahbravo marked this conversation as resolved.
Outdated

<% if !(params[:pinch_hit] || params[:unfulfilled] || params[:fulfilled]) %>
<%= render "maintainer_index_defaulted" %>
Expand Down
6 changes: 6 additions & 0 deletions public/stylesheets/site/2.0/07-interactions.css
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,12 @@ form li ul.autocomplete li.input {
margin-top: 0 !important;
}

/* Pinch hitter autocomplete dropdown must escape the assignments container.
Core form styles set fieldset/dl to overflow: hidden, which clips it. */
form fieldset.maintainer-assignments, form fieldset.maintainer-assignments dl.index {
overflow: visible;
Comment thread
noahbravo marked this conversation as resolved.
Outdated
}

.autocomplete li.added, .post .meta dd ul li.added {
display: inline-block;
}
Expand Down
Loading