Remove redundant pipeline tooltips
This commit is contained in:
parent
51087cfa1a
commit
0272d96853
3 changed files with 9 additions and 2 deletions
|
@ -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,7 +10,10 @@
|
||||||
%th Commit
|
%th Commit
|
||||||
- pipelines.stages.each do |stage|
|
- pipelines.stages.each do |stage|
|
||||||
%th.stage
|
%th.stage
|
||||||
%span.has-tooltip{ title: "#{stage.titleize}" }
|
- if stage.titleize.length > 12
|
||||||
|
%span.has-tooltip{ title: "#{stage.titleize}" }
|
||||||
|
= stage.titleize
|
||||||
|
- else
|
||||||
= stage.titleize
|
= stage.titleize
|
||||||
%th
|
%th
|
||||||
%th
|
%th
|
||||||
|
|
|
@ -49,7 +49,10 @@
|
||||||
%th Commit
|
%th Commit
|
||||||
- stages.each do |stage|
|
- stages.each do |stage|
|
||||||
%th.stage
|
%th.stage
|
||||||
%span.has-tooltip{ title: "#{stage.titleize}" }
|
- if stage.titleize.length > 12
|
||||||
|
%span.has-tooltip{ title: "#{stage.titleize}" }
|
||||||
|
= stage.titleize
|
||||||
|
- else
|
||||||
= stage.titleize
|
= stage.titleize
|
||||||
%th
|
%th
|
||||||
%th
|
%th
|
||||||
|
|
Loading…
Reference in a new issue