##// END OF EJS Templates
[#9489] use class instead of redundant id for label "no-css"...
Toshi MARUYAMA -
r7581:86ba8491a58f
parent child
Show More
@@ -82,8 +82,13 when "IssueCustomField" %>
82
82
83 <fieldset><legend><%=l(:label_tracker_plural)%></legend>
83 <fieldset><legend><%=l(:label_tracker_plural)%></legend>
84 <% for tracker in @trackers %>
84 <% for tracker in @trackers %>
85 <%= check_box_tag "custom_field[tracker_ids][]", tracker.id, (@custom_field.trackers.include? tracker),
85 <%= check_box_tag "custom_field[tracker_ids][]",
86 :id => "custom_field_tracker_ids_#{tracker.id}" %><label id="no-css" for="custom_field_tracker_ids_<%=tracker.id%>"><%= h(tracker.name) %></label>
86 tracker.id,
87 (@custom_field.trackers.include? tracker),
88 :id => "custom_field_tracker_ids_#{tracker.id}" %>
89 <label class="no-css" for="custom_field_tracker_ids_<%=tracker.id%>">
90 <%= h(tracker.name) %>
91 </label>
87 <% end %>
92 <% end %>
88 <%= hidden_field_tag "custom_field[tracker_ids][]", '' %>
93 <%= hidden_field_tag "custom_field[tracker_ids][]", '' %>
89 </fieldset>
94 </fieldset>
@@ -431,7 +431,7 margin-left: 5px !important;
431 width: auto;
431 width: auto;
432 }
432 }
433
433
434 label#no-css {
434 label.no-css {
435 font-weight: inherit;
435 font-weight: inherit;
436 float:none;
436 float:none;
437 text-align:left;
437 text-align:left;
General Comments 0
You need to be logged in to leave comments. Login now