_labels_row.html.haml 637 Bytes
Newer Older
Arinde Eniola's avatar
Arinde Eniola committed
1
- labels.each do |label|
Phil Hughes's avatar
Phil Hughes committed
2 3 4 5 6 7 8 9
  %span.label-row.btn-group{ role: "group", aria: { label: escape_once(label.name) }, style: "color: #{text_color_for_bg(label.color)}" }
    = link_to namespace_project_label_path(@project.namespace, @project, label),
      class: "btn btn-transparent has-tooltip",
      style: "background-color: #{label.color};",
      title: escape_once(label.description),
      data: { container: "body" } do
      = escape_once label.name
    %button.btn.btn-transparent.label-remove.js-label-filter-remove{ type: "button", style: "background-color: #{label.color};", data: { label: label.title } }
10
      = icon("times")