diff options
author | Oswaldo Ferreira <oswaldo@gitlab.com> | 2018-05-07 14:05:48 -0300 |
---|---|---|
committer | Oswaldo Ferreira <oswaldo@gitlab.com> | 2018-05-07 14:15:44 -0300 |
commit | f08f55093b906f98089ebf4af320a37e37101972 (patch) | |
tree | 17b37e42f3bdc0971f1594e7c82d384cd8f4d954 /app/views/shared/boards | |
parent | e8b116ab94828b1354cf50934f49f37f3b012da2 (diff) | |
download | gitlab-ce-f08f55093b906f98089ebf4af320a37e37101972.tar.gz |
Adjust issue boards list header label text color
Diffstat (limited to 'app/views/shared/boards')
-rw-r--r-- | app/views/shared/boards/components/_board.html.haml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/shared/boards/components/_board.html.haml b/app/views/shared/boards/components/_board.html.haml index 149bf8da4b9..4bff6468bb0 100644 --- a/app/views/shared/boards/components/_board.html.haml +++ b/app/views/shared/boards/components/_board.html.haml @@ -15,8 +15,9 @@ ":title" => '(list.label ? list.label.description : "")', data: { container: "body", placement: "bottom" }, class: "label color-label title board-title-text", - ":style" => "{ backgroundColor: (list.label && list.label.color ? list.label.color : null), color: (list.label && list.label.color ? list.label.text_color : \"#2e2e2e\") }" } + ":style" => "{ backgroundColor: (list.label && list.label.color ? list.label.color : null), color: (list.label && list.label.text_color ? list.label.text_color : \"#2e2e2e\") }" } {{ list.title }} + - if can?(current_user, :admin_list, current_board_parent) %board-delete{ "inline-template" => true, ":list" => "list", |