From 0eee38ab1038194623b9e42bf8e1f9752b99f4b1 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Mon, 11 Jul 2016 10:17:43 -0700 Subject: [PATCH] 1px white border for any status icon within a tooltip --- awx/ui/client/src/inventories/list/inventory-list.controller.js | 2 +- .../notification-templates-list/list.controller.js | 2 +- awx/ui/client/src/smart-status/smart-status.block.less | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/awx/ui/client/src/inventories/list/inventory-list.controller.js b/awx/ui/client/src/inventories/list/inventory-list.controller.js index 096ea2ad31..e57a7beb32 100644 --- a/awx/ui/client/src/inventories/list/inventory-list.controller.js +++ b/awx/ui/client/src/inventories/list/inventory-list.controller.js @@ -230,7 +230,7 @@ function InventoriesList($scope, $rootScope, $location, $log, data.results.forEach( function(row) { if (row.related.last_update) { html += ""; - html += ""; + html += ``; html += "" + ($filter('longDate')(row.last_updated)).replace(/ /,'
') + ""; html += "" + ellipsis(row.summary_fields.group.name) + ""; html += "\n"; diff --git a/awx/ui/client/src/notifications/notification-templates-list/list.controller.js b/awx/ui/client/src/notifications/notification-templates-list/list.controller.js index 9ea29b7374..7a4bd4b408 100644 --- a/awx/ui/client/src/notifications/notification-templates-list/list.controller.js +++ b/awx/ui/client/src/notifications/notification-templates-list/list.controller.js @@ -131,7 +131,7 @@ export default recent_notifications.forEach(function(row) { html += "\n"; - html += "\n"; + html += ``; html += "" + ($filter('longDate')(row.created)).replace(/ /,'
') + "\n"; html += "\n"; }); diff --git a/awx/ui/client/src/smart-status/smart-status.block.less b/awx/ui/client/src/smart-status/smart-status.block.less index 92b5244e4f..0757529d45 100644 --- a/awx/ui/client/src/smart-status/smart-status.block.less +++ b/awx/ui/client/src/smart-status/smart-status.block.less @@ -38,6 +38,7 @@ line-height: 22px; } +.SmartStatus-tooltip--successful, .SmartStatus-tooltip--success{ color: @default-succ; padding-left: 5px;