Skip to content
Snippets Groups Projects

Allow collapsing all issue boards

Merged Martin Hanzel requested to merge mh/collapsible-boards-ee into master
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
@@ -7,16 +7,16 @@
@@ -7,16 +7,16 @@
-# We need two caret elements because they have different texts and Bootstrap tooltips aren't reactive in Vue
-# We need two caret elements because they have different texts and Bootstrap tooltips aren't reactive in Vue
.board-title-collapse.no-drag.mr-2.has-tooltip{ "v-if": "list.isExpandable && list.isExpanded",
.board-title-collapse.no-drag.mr-2.has-tooltip{ "v-if": "list.isExpandable && list.isExpanded",
"aria-hidden": "true",
"aria-hidden": "true",
"aria-label": "Collapse",
"aria-label": _("Collapse"),
title: "Collapse",
title: _("Collapse"),
key: "collapse",
key: "collapse",
data: { placement: "bottom" },
data: { placement: "bottom" },
"@click": "toggleExpanded" }
"@click": "toggleExpanded" }
= icon("caret-right", { class: "fa-fw" })
= icon("caret-right", { class: "fa-fw" })
.board-title-expand.no-drag.has-tooltip{ "v-if": "list.isExpandable && !list.isExpanded",
.board-title-expand.no-drag.has-tooltip{ "v-if": "list.isExpandable && !list.isExpanded",
"aria-hidden": "true",
"aria-hidden": "true",
"aria-label": "Expand",
"aria-label": _("Expand"),
title: "Expand",
title: _("Expand"),
key: "expand",
key: "expand",
data: { placement: "bottom" },
data: { placement: "bottom" },
"@click": "toggleExpanded" }
"@click": "toggleExpanded" }
Loading