File tree Expand file tree Collapse file tree
src/main/resources/org/jenkinsci/plugins/workflow/support/visualization/table/FlowGraphTable Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ tr .workflow-support-row-status-blue .workflow-support-row-executed-false td {
2+ opacity : 0.3 ;
3+ }
4+ tr .workflow-support-row-status-blue td {
5+ opacity : 0.6 ;
6+ }
7+
8+ tr .workflow-support-row-status-yellow td {
9+ font-weight : bold !important ;
10+ color : var (--alert-warning-text-color ) !important ;
11+ background-color : var (--alert-warning-bg-color ) !important ;
12+ }
13+
14+ tr .workflow-support-row-status-red td {
15+ font-weight : bold !important ;
16+ color : var (--alert-danger-text-color ) !important ;
17+ background-color : var (--alert-danger-bg-color ) !important ;
18+ }
Original file line number Diff line number Diff line change 2828-->
2929<j : jelly xmlns : j =" jelly:core" xmlns : st =" jelly:stapler" xmlns : l =" /lib/layout" >
3030 <l : ajax >
31+ <j : if test =" ${!ajax}" >
32+ <st : adjunct includes =" org.jenkinsci.plugins.workflow.support.visualization.table.FlowGraphTable.adjunct" />
33+ </j : if >
3134 <div id =" nodeGraph" >
3235 <table class =" jenkins-table" >
3336 <j : set var =" columns" value =" ${it.columns}" />
4245
4346 <j : forEach var =" row" items =" ${it.rows}" >
4447 <j : set var =" node" value =" ${row.node}" />
45- <tr style = " opacity: ${row.isExecuted()?'1.0':'0.3' }" > <!-- Muted if not executed -->
48+ <tr class = " workflow-support-row-status-${node.iconColor} workflow-support-row-executed- ${row.executed }" > <!-- Muted if not executed -->
4649 <!-- tooltip is for now debugging only -->
4750 <j : set var =" exec_state" value =" " />
4851 <j : if test =" ${!row.executed}" ><j : set var =" exec_state" value =" (${%not executed})" /></j : if >
You can’t perform that action at this time.
0 commit comments