summaryrefslogtreecommitdiff
path: root/app/views/shared/_labels_row.html.haml
blob: dce492352ac6189543ed450268a6a39c507177df (plain)
1
2
3
4
5
6
7
8
9
- labels.each do |label|
  %span.label-row.btn-group{ role: "group", aria: { label: label.name }, style: "color: #{text_color_for_bg(label.color)}" }
    = link_to label.name, label_filter_path(@project, label, type: controller.controller_name),
      class: "btn btn-transparent has-tooltip",
      style: "background-color: #{label.color};",
      title: escape_once(label.description),
      data: { container: "body" }
    %button.btn.btn-transparent.label-remove.js-label-filter-remove{ type: "button", style: "background-color: #{label.color};", data: { label: label.title } }
      = icon("times")