diff options
author | Takuya Noguchi <takninnovationresearch@gmail.com> | 2018-11-22 20:50:59 +0900 |
---|---|---|
committer | Takuya Noguchi <takninnovationresearch@gmail.com> | 2018-12-12 15:32:55 -0800 |
commit | 6728edd68ae4ff2c4e76c9dacee4c806e4c62193 (patch) | |
tree | 7b56822586fc218f9d7044c9017011f3eaabb5bb /app | |
parent | 69de3677965a5b585110bbdd612666105105426a (diff) | |
download | gitlab-ce-6728edd68ae4ff2c4e76c9dacee4c806e4c62193.tar.gz |
Remove .new-issue-link
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/framework/mobile.scss | 3 | ||||
-rw-r--r-- | app/views/projects/issues/show.html.haml | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/app/assets/stylesheets/framework/mobile.scss b/app/assets/stylesheets/framework/mobile.scss index d60fb878133..ff70d95c335 100644 --- a/app/assets/stylesheets/framework/mobile.scss +++ b/app/assets/stylesheets/framework/mobile.scss @@ -66,8 +66,7 @@ @include media-breakpoint-down(sm) { .page-title { - .note-created-ago, - .new-issue-link { + .note-created-ago { display: none; } } diff --git a/app/views/projects/issues/show.html.haml b/app/views/projects/issues/show.html.haml index b50b3ca207b..5a960e764b0 100644 --- a/app/views/projects/issues/show.html.haml +++ b/app/views/projects/issues/show.html.haml @@ -55,7 +55,7 @@ - if can_report_spam = link_to 'Submit as spam', mark_as_spam_project_issue_path(@project, @issue), method: :post, class: 'd-none d-sm-none d-md-block btn btn-grouped btn-spam', title: 'Submit as spam' - if can_create_issue - = link_to new_project_issue_path(@project), class: 'd-none d-sm-none d-md-block btn btn-grouped new-issue-link btn-success btn-inverted', title: 'New issue', id: 'new_issue_link' do + = link_to new_project_issue_path(@project), class: 'd-none d-sm-none d-md-block btn btn-grouped btn-success btn-inverted', title: 'New issue', id: 'new_issue_link' do New issue .issue-details.issuable-details |