mirror of
https://github.com/ansible/awx.git
synced 2026-08-01 18:39:54 -02:30
2.0 style changes
Right justified Account menu. Modified bootstrap menu collapse setting to force collapse at 1075px so that we never show the menu on multiple lines. Started changing styles on job detail page so that we auto-resize behavior can be restored.
This commit is contained in:
@@ -812,7 +812,7 @@ function($rootScope, $log, UpdatePlayStatus, UpdateHostStatus, AddHostResult, Ge
|
||||
graph_data.push({
|
||||
label: 'OK',
|
||||
value: (scope.host_summary.ok === scope.host_summary.total) ? 1 : scope.host_summary.ok,
|
||||
color: '#5bb75b'
|
||||
color: '#00aa00'
|
||||
});
|
||||
}
|
||||
if (scope.host_summary.changed) {
|
||||
@@ -833,7 +833,7 @@ function($rootScope, $log, UpdatePlayStatus, UpdateHostStatus, AddHostResult, Ge
|
||||
graph_data.push({
|
||||
label: 'Failed',
|
||||
value: (scope.host_summary.failed === scope.host_summary.total) ? 1 : scope.host_summary.failed,
|
||||
color: '#DA4D49'
|
||||
color: '#aa0000'
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user