-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added XDMoD analytics metrics to jobs widget (#3789)
Added XDMoD analytics metrics to jobs widget to include CPU, Memory and walltime where previously it was just CPU.
- Loading branch information
Showing
7 changed files
with
182 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/** Job Analytics **/ | ||
#jobsPanelDiv { | ||
.hiddenRow { | ||
padding: 0 !important; | ||
} | ||
|
||
i.app-icon { | ||
width: 0.9rem; | ||
height: 0.9rem; | ||
font-size: 0.9rem; | ||
} | ||
|
||
tr { | ||
position: relative; | ||
} | ||
|
||
tr[aria-expanded=true] .closed { | ||
display: none; | ||
} | ||
|
||
tr[aria-expanded=false] .open { | ||
display: none; | ||
} | ||
|
||
tr[aria-expanded=true] td:not(.job-analytics) { | ||
padding-bottom: 45px; | ||
} | ||
|
||
tr.error[aria-expanded=true] td:not(.job-analytics) { | ||
padding-bottom: 200px; | ||
} | ||
|
||
tr.error td.job-analytics { | ||
border-bottom: none; | ||
} | ||
|
||
td.job-analytics { | ||
position: absolute; | ||
top: 35px; | ||
left: 0; | ||
z-index: 1000; | ||
width: 100%; | ||
padding: 0; | ||
|
||
div.job-analytics-content { | ||
display: flex; | ||
justify-content: space-between; | ||
padding: 0.5rem 0.5rem; | ||
|
||
strong { | ||
font-weight: 600; | ||
} | ||
|
||
.badge { | ||
vertical-align: 1px; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.