diff --git a/awx/ui/static/js/app.js b/awx/ui/static/js/app.js index 4098ffd895..ac749a11fc 100644 --- a/awx/ui/static/js/app.js +++ b/awx/ui/static/js/app.js @@ -455,9 +455,6 @@ angular.module('Tower', [ if (urlDepth === 1 && base !== 'home') { $('#ansible-list-title').html('' + base.replace(/\_/,' ') + ''); } - else { - $('#ansible-list-title').empty(); - } $('#ansible-main-menu li').each(function() { $(this).removeClass('active'); diff --git a/awx/ui/static/less/ansible-ui.less b/awx/ui/static/less/ansible-ui.less index 14bedc4e50..8871ccc567 100644 --- a/awx/ui/static/less/ansible-ui.less +++ b/awx/ui/static/less/ansible-ui.less @@ -515,6 +515,12 @@ dd { margin-bottom: 10px; } +.aw-form-well { + border: 1px solid @grey; + padding: 9px; + border-radius: 4px; +} + .form-group { margin-bottom: 25px; } diff --git a/awx/ui/static/less/job-details.less b/awx/ui/static/less/job-details.less index b14a75d3d3..b427ae3fb2 100644 --- a/awx/ui/static/less/job-details.less +++ b/awx/ui/static/less/job-details.less @@ -83,15 +83,15 @@ .job_summary { .table { margin-bottom: 0; - border: 1px solid @well-border; + border: 1px solid @grey; background-color: @white; } .table>tbody>tr>td { - border-top-color: @well-border; + border-top-color: @grey; padding-bottom: 0; } .table>thead>tr>th { - border-bottom-color: @well-border; + border-bottom-color: @grey; padding-bottom: 0; height: 22px; } @@ -167,7 +167,7 @@ .job_well { padding: 8px; background-color: @white; - border: 1px solid @well-border; + border: 1px solid @grey; border-radius: 4px; /*-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);*/ @@ -281,7 +281,7 @@ overflow-y: auto; background-color: @white; .row { - border-top: 1px solid @well-border; + border-top: 1px solid @grey; } .row:first-child { border: none; @@ -525,7 +525,7 @@ #pre-formatted-variables { border-radius: 4px; - border: 1px solid @well-border; + border: 1px solid @grey; overflow: auto; white-space: pre; word-break: break-all; diff --git a/awx/ui/static/less/jquery-ui-overrides.less b/awx/ui/static/less/jquery-ui-overrides.less index 7aad8334aa..99211c5efd 100644 --- a/awx/ui/static/less/jquery-ui-overrides.less +++ b/awx/ui/static/less/jquery-ui-overrides.less @@ -124,15 +124,20 @@ table.ui-datepicker-calendar { } } -.ui-state-active, + .ui-state-default { background-image: none; background-color: @white; - border: 1px solid @well-border; + border: 1px solid @grey; +} + +.ui-state-active { + background-image: none; + background-color: #f5f5f5; } .ui-widget-content { - border: 1px solid @well-border; + border: 1px solid @grey; } .ui-spinner a.ui-spinner-button { diff --git a/awx/ui/static/partials/job_detail.html b/awx/ui/static/partials/job_detail.html index a31d7a4716..7a0d9fd0a3 100644 --- a/awx/ui/static/partials/job_detail.html +++ b/awx/ui/static/partials/job_detail.html @@ -16,7 +16,8 @@