diff --git a/src/ui/public/directives/saved_object_finder.js b/src/ui/public/directives/saved_object_finder.js index 99c0a30db6736..816da678b40b3 100644 --- a/src/ui/public/directives/saved_object_finder.js +++ b/src/ui/public/directives/saved_object_finder.js @@ -4,6 +4,7 @@ import keymap from 'ui/utils/key_map'; import SavedObjectsSavedObjectRegistryProvider from 'ui/saved_objects/saved_object_registry'; import uiModules from 'ui/modules'; import savedObjectFinderTemplate from 'ui/partials/saved_object_finder.html'; +import 'ui/partials/saved_object_finder.less'; const module = uiModules.get('kibana'); module.directive('savedObjectFinder', function ($location, $injector, kbnUrl, Private, config) { diff --git a/src/ui/public/partials/saved_object_finder.html b/src/ui/public/partials/saved_object_finder.html index 809f7ffb89061..ddc4906e99e41 100644 --- a/src/ui/public/partials/saved_object_finder.html +++ b/src/ui/public/partials/saved_object_finder.html @@ -2,8 +2,8 @@
- - + + + autocomplete="off" + />
{{finder.hitCount}} of {{finder.hitCount}} @@ -36,10 +37,10 @@
  • Name - - +
  • - + {{hit.title}}

    diff --git a/src/ui/public/partials/saved_object_finder.less b/src/ui/public/partials/saved_object_finder.less new file mode 100644 index 0000000000000..08057af937c6c --- /dev/null +++ b/src/ui/public/partials/saved_object_finder.less @@ -0,0 +1,8 @@ +/** + * 1. Position icon correctly and override Bootstrap styles. + * 2. Override Bootstrap styles. + */ +.savedObjectFinderSearchIcon { + padding: 0 10px !important; /* 1 */ + color: #ACACAC !important; /* 2 */ +}