Skip to content

Commit

Permalink
Add responsiveness to select2 boxes closes #114
Browse files Browse the repository at this point in the history
  • Loading branch information
erinspace committed Jan 14, 2016
1 parent f8e3640 commit 365f7f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/bills/all.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h2>{{ current_session }}</h2>
<form action="" method="get" role="form">
<div class="form-group selectFix"> Filter by {{ sorter_type }}

<select multiple name="bill_sorters" class="form-control prefs-multiple">
<select multiple name="bill_sorters" class="form-control prefs-multiple" style="width: 100%">
{% for sorter in sorters %}
{% if sorter.selected %}
<option value="{{ sorter.item }}" selected="True">{{ sorter.item }}</option>
Expand Down
2 changes: 1 addition & 1 deletion templates/bills/current_session.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h2>{{ current_session }}</h2>
<form action="" method="get" role="form">
<div class="form-group">
<label>Filter by Subject</label>
<select multiple name="subjects" class="prefs-multiple form-control">
<select multiple name="subjects" class="prefs-multiple form-control" style="width: 100%">
{% for subject in subjects %}
{% if subject.selected %}
<option value="{{ subject.item }}" selected="True">{{ subject.item }}</option>
Expand Down

0 comments on commit 365f7f7

Please sign in to comment.