diff --git a/awx/ui/static/js/helpers/EventViewer.js b/awx/ui/static/js/helpers/EventViewer.js index e05688af0d..e2902f16cc 100644 --- a/awx/ui/static/js/helpers/EventViewer.js +++ b/awx/ui/static/js/helpers/EventViewer.js @@ -146,7 +146,6 @@ angular.module('EventViewerHelper', ['ModalDialog', 'Utilities', 'EventsViewerFo scope.removeEventReady = scope.$on('EventReady', function(e, data) { var btns; scope.events = data; - // find and show the selected event data.every(function(row, idx) { if (parseInt(row.id,10) === parseInt(event_id,10)) { @@ -412,7 +411,7 @@ angular.module('EventViewerHelper', ['ModalDialog', 'Utilities', 'EventsViewerFo ">" + obj[key] + ""; } else { - html += obj[key]; + html += "" + obj[key] + ""; } html += "\n"; @@ -454,7 +453,7 @@ angular.module('EventViewerHelper', ['ModalDialog', 'Utilities', 'EventsViewerFo fld_id = params.fld_id, html; html = "
\n" + - "" + + "" + "
\n"; $('#' + container_id).empty().html(html); }; @@ -465,7 +464,7 @@ angular.module('EventViewerHelper', ['ModalDialog', 'Utilities', 'EventsViewerFo var id = params.id, val = params.val, html; - html = "
" + val + "
\n"; + html = "
" + val + "
\n"; $('#' + id).empty().html(html); }; }]); diff --git a/awx/ui/static/js/helpers/LogViewer.js b/awx/ui/static/js/helpers/LogViewer.js index 1c42349301..36222cad18 100644 --- a/awx/ui/static/js/helpers/LogViewer.js +++ b/awx/ui/static/js/helpers/LogViewer.js @@ -346,7 +346,7 @@ angular.module('LogViewerHelper', ['ModalDialog', 'Utilities', 'FormGenerator', fld_id = params.fld_id, html; html = "
\n" + - "" + + "" + "
\n"; $('#' + container_id).empty().html(html); }; @@ -357,7 +357,7 @@ angular.module('LogViewerHelper', ['ModalDialog', 'Utilities', 'FormGenerator', var id = params.id, val = params.val, html; - html = "
" + val + "
\n"; + html = "
" + val + "
\n"; $('#' + id).empty().html(html); }; }]) @@ -370,7 +370,7 @@ angular.module('LogViewerHelper', ['ModalDialog', 'Utilities', 'FormGenerator', html = "\n"; for (key in vars) { html += "" + - "\n"; + "\n"; } html += "
" + key + "" + vars[key] + "
" + vars[key] + "
\n"; $('#' + id).empty().html(html); diff --git a/awx/ui/static/less/jquery-ui-overrides.less b/awx/ui/static/less/jquery-ui-overrides.less index db946bcac7..7aad8334aa 100644 --- a/awx/ui/static/less/jquery-ui-overrides.less +++ b/awx/ui/static/less/jquery-ui-overrides.less @@ -91,7 +91,7 @@ table.ui-datepicker-calendar { .ui-widget-content { background-image: none; - background-color: transparent; + background-color: @white; a, a:visited, @@ -127,7 +127,7 @@ table.ui-datepicker-calendar { .ui-state-active, .ui-state-default { background-image: none; - background-color: transparent; + background-color: @white; border: 1px solid @well-border; }