diff options
author | Phil Hughes <me@iamphill.com> | 2016-08-08 09:58:05 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-08-17 17:12:47 +0100 |
commit | 1de6467571c53778a448e10793e4aa17b2f18e5b (patch) | |
tree | 83454dcee61665954c662c9611976027c2cc468f /app/views/projects/boards | |
parent | 5f7eff340a9a91c6c40c3de9d9bfddca71f020f2 (diff) | |
download | gitlab-ce-1de6467571c53778a448e10793e4aa17b2f18e5b.tar.gz |
Fixed cursor not changing when over the header
Diffstat (limited to 'app/views/projects/boards')
-rw-r--r-- | app/views/projects/boards/components/_board.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/boards/components/_board.html.haml b/app/views/projects/boards/components/_board.html.haml index 1a02a921557..c1172dce269 100644 --- a/app/views/projects/boards/components/_board.html.haml +++ b/app/views/projects/boards/components/_board.html.haml @@ -5,7 +5,7 @@ ":disabled" => "#{current_user.nil?}" } .board{ ":class" => "{ 'is-draggable': !isPreset }" } .board-inner - %header.board-inner-container.board-header{ ":class" => "{ 'has-border': board.label }", ":style" => "{ borderTopColor: (board.label ? board.label.color : null) }" } + %header.board-header{ ":class" => "{ 'has-border': board.label }", ":style" => "{ borderTopColor: (board.label ? board.label.color : null) }" } %h3.board-title.js-board-handle{ ":class" => "{ 'user-can-drag': !disabled }" } {{ board.title }} %span.pull-right{ "v-if" => "board.type !== 'blank'" } |