diff options
author | Phil Hughes <me@iamphill.com> | 2016-08-19 14:16:07 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-08-19 16:37:46 +0100 |
commit | 888c04818c1b0eeaa29dd9ef2e9f2600bd8cc1a1 (patch) | |
tree | 26fcbbf7e95034361558ef231bc545596d2d36c1 /app/views/projects/boards | |
parent | 206375c84fef349c4dce8abcc7bbadfd27be0df8 (diff) | |
download | gitlab-ce-888c04818c1b0eeaa29dd9ef2e9f2600bd8cc1a1.tar.gz |
Improvements to issue boards on mobile
Diffstat (limited to 'app/views/projects/boards')
-rw-r--r-- | app/views/projects/boards/components/_board.html.haml | 1 | ||||
-rw-r--r-- | app/views/projects/boards/components/_card.html.haml | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/app/views/projects/boards/components/_board.html.haml b/app/views/projects/boards/components/_board.html.haml index f8ebf397ee2..de53a298f84 100644 --- a/app/views/projects/boards/components/_board.html.haml +++ b/app/views/projects/boards/components/_board.html.haml @@ -11,7 +11,6 @@ .board-inner %header.board-header{ ":class" => "{ 'has-border': list.label }", ":style" => "{ borderTopColor: (list.label ? list.label.color : null) }" } %h3.board-title.js-board-handle{ ":class" => "{ 'user-can-drag': (!disabled && !list.preset) }" } - = icon("align-justify", class: "board-mobile-handle js-board-drag-handle", "v-if" => "(!disabled && !list.preset)") {{ list.title }} %span.pull-right{ "v-if" => "list.type !== 'blank'" } {{ list.issues.length }} diff --git a/app/views/projects/boards/components/_card.html.haml b/app/views/projects/boards/components/_card.html.haml index b20c23f6b8e..e8b60b54d80 100644 --- a/app/views/projects/boards/components/_card.html.haml +++ b/app/views/projects/boards/components/_card.html.haml @@ -9,7 +9,6 @@ "track-by" => "id" } %li.card{ ":class" => "{ 'user-can-drag': !disabled }", ":index" => "index" } - = icon("align-justify", class: "board-mobile-handle js-card-drag-handle", "v-if" => "!disabled") %h4.card-title = icon("eye-slash", class: "confidential-icon", "v-if" => "issue.confidential") %a{ ":href" => "issueLinkBase + '/' + issue.id", |