Commit 0272d968 authored by Clement Ho's avatar Clement Ho

Remove redundant pipeline tooltips

parent 51087cfa
...@@ -26,6 +26,7 @@ v 8.12.0 (unreleased) ...@@ -26,6 +26,7 @@ v 8.12.0 (unreleased)
- Fix markdown help references (ClemMakesApps) - Fix markdown help references (ClemMakesApps)
- Added tests for diff notes - Added tests for diff notes
- Add a button to download latest successful artifacts for branches and tags !5142 - Add a button to download latest successful artifacts for branches and tags !5142
- Remove redundant pipeline tooltips (ClemMakesApps)
- Add delimiter to project stars and forks count (ClemMakesApps) - Add delimiter to project stars and forks count (ClemMakesApps)
- Fix badge count alignment (ClemMakesApps) - Fix badge count alignment (ClemMakesApps)
- Fix branch title trailing space on hover (ClemMakesApps) - Fix branch title trailing space on hover (ClemMakesApps)
......
...@@ -10,8 +10,11 @@ ...@@ -10,8 +10,11 @@
%th Commit %th Commit
- pipelines.stages.each do |stage| - pipelines.stages.each do |stage|
%th.stage %th.stage
- if stage.titleize.length > 12
%span.has-tooltip{ title: "#{stage.titleize}" } %span.has-tooltip{ title: "#{stage.titleize}" }
= stage.titleize = stage.titleize
- else
= stage.titleize
%th %th
%th %th
= render pipelines, commit_sha: true, stage: true, allow_retry: true, stages: pipelines.stages, status_icon_only: true, hide_branch: true = render pipelines, commit_sha: true, stage: true, allow_retry: true, stages: pipelines.stages, status_icon_only: true, hide_branch: true
...@@ -49,8 +49,11 @@ ...@@ -49,8 +49,11 @@
%th Commit %th Commit
- stages.each do |stage| - stages.each do |stage|
%th.stage %th.stage
- if stage.titleize.length > 12
%span.has-tooltip{ title: "#{stage.titleize}" } %span.has-tooltip{ title: "#{stage.titleize}" }
= stage.titleize = stage.titleize
- else
= stage.titleize
%th %th
%th %th
= render @pipelines, commit_sha: true, stage: true, allow_retry: true, stages: stages = render @pipelines, commit_sha: true, stage: true, allow_retry: true, stages: stages
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment