diff --git a/awx/ui/client/legacy-styles/job-details.less b/awx/ui/client/legacy-styles/job-details.less index 32c88aae35..621e0267ca 100644 --- a/awx/ui/client/legacy-styles/job-details.less +++ b/awx/ui/client/legacy-styles/job-details.less @@ -549,7 +549,7 @@ word-break: break-all; word-wrap: break-word; padding: 9.5px; - ont-family: Fixed, monospace; + font-family: Fixed, monospace; max-height: 200px; } diff --git a/awx/ui/client/src/job-detail/job-detail.block.less b/awx/ui/client/src/job-detail/job-detail.block.less new file mode 100644 index 0000000000..c25f167be1 --- /dev/null +++ b/awx/ui/client/src/job-detail/job-detail.block.less @@ -0,0 +1,58 @@ +/** @define SetupItem */ + +@import '../shared/branding/colors.less'; +@import '../shared/branding/colors.default.less'; + +.JobDetail-panelHeader{ + height: 50px; + display: flex; +} + +.JobDetail-panelHeaderText{ + color: @default-interface-txt; + flex: 1 0 auto; + font-size: 14px; + font-weight: bold; + margin-right: 10px; + text-transform: uppercase; +} + +.JobDetail-panelHeaderText:hover{ + color: @default-interface-txt; + font-size: 14px; + font-weight: bold; + margin-right: 10px; + text-transform: uppercase; +} + +.JobDetail-expandArrow{ + color: @default-icon-hov; + font-size: 14px; + font-weight: bold; + margin-right: 10px; + text-transform: uppercase; + margin-left: 10px; +} + +.JobDetail-resultsDetails{ + display: flex; + flex-wrap: wrap; + flex-direction: row; +} + +.JobDetail-resultRow{ + width: 50%; + display: flex; +} + +.JobDetail-resultRow label{ + color: @default-interface-txt; + font-size: 14px; + font-weight: normal!important; + flex: 1 0 auto; +} + +.JobDetail-resultRowText{ + width: 40%; + flex: 1 0 auto; +} diff --git a/awx/ui/client/src/job-detail/job-detail.controller.js b/awx/ui/client/src/job-detail/job-detail.controller.js index 604179d622..6432e68849 100644 --- a/awx/ui/client/src/job-detail/job-detail.controller.js +++ b/awx/ui/client/src/job-detail/job-detail.controller.js @@ -200,7 +200,7 @@ export default scope.haltEventQueue = false; scope.processing = false; - scope.lessStatus = true; + scope.lessStatus = false; scope.host_summary = {}; scope.host_summary.ok = 0; @@ -854,7 +854,7 @@ export default $('#job-summary-container').show(); } - scope.lessStatus = true; // close the view more status option + scope.lessStatus = false; // close the view more status option // Detail table height adjusting. First, put page height back to 'normal'. $('#plays-table-detail').height(80); diff --git a/awx/ui/client/src/job-detail/job-detail.partial.html b/awx/ui/client/src/job-detail/job-detail.partial.html index e4aba4ec3b..a6b06ef6d8 100644 --- a/awx/ui/client/src/job-detail/job-detail.partial.html +++ b/awx/ui/client/src/job-detail/job-detail.partial.html @@ -1,29 +1,25 @@