diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/css/style.css b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/css/style.css
index adbcda8295dfc98e6f5edf112212b9eba253a1ea..d6bc81dc36917e0d96ad0359cbfa955d37b82b3b 100644
--- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/css/style.css
+++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/css/style.css
@@ -17,11 +17,6 @@
 /* 
  * General Overrides
  */
-.form-panel-one,
-.form-panel-two {
-	overflow-y : auto;
-	overflow-x : hidden;
-}
 
 .table {
   table-layout:fixed;
@@ -236,7 +231,7 @@ body,
 	padding-left: 5px;
 }
 
-.navbar-form .search-query {
+.search-query {
     padding-left: 30px;
     background-image: url(../img/search-icon.png);
     background-repeat: no-repeat;
@@ -247,7 +242,8 @@ body,
 
 .search-query-searching {
     background-image: url(../img/search-spinner.gif) !important;
-    background-position: 12px 5px !important;
+    background-position: 95% 50% !important;
+    background-repeat: no-repeat;
 }
 
 .ui-fancytree,
diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/controllers/MainController.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/controllers/MainController.js
index a37040c6058e703bd34ed823eaec1527ab7fe599..ce0288dd5fd6a74ecfc04292f07793c38a300157 100644
--- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/controllers/MainController.js
+++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/controllers/MainController.js
@@ -837,6 +837,7 @@ function MainController(profile) {
 		var newView = null;
 		
 		if(freeText) {
+			$("#search").addClass("search-query-searching");
 			newView = new AdvancedSearchController(this, freeText);
 		} else {
 			newView = new AdvancedSearchController(this);
diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/AdvancedSearch/AdvancedSearchController.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/AdvancedSearch/AdvancedSearchController.js
index c0113d2032b24181ed5a23995bf0e004d09abdfe..73c7f6720f18e5ba59f6b35040a6342caf06e50e 100644
--- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/AdvancedSearch/AdvancedSearchController.js
+++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/AdvancedSearch/AdvancedSearchController.js
@@ -92,6 +92,7 @@ function AdvancedSearchController(mainController, forceSearch) {
 					objects : dataList,
 					totalCount : results.totalCount
 				});
+				$("#search").removeClass("search-query-searching");
 			}
 			
 			var fetchOptions = {};
diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SideMenu/SideMenuWidgetView.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SideMenu/SideMenuWidgetView.js
index 2f166961e12f7ae095c3d74a6a8f5770cbbef45d..3f856ce84e278bdb592192ab1718f90e604c34b0 100644
--- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SideMenu/SideMenuWidgetView.js
+++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SideMenu/SideMenuWidgetView.js
@@ -47,8 +47,8 @@ function SideMenuWidgetView(sideMenuWidgetController, sideMenuWidgetModel) {
             var searchDomainLabel = null;
             
             if(domainIndex) {
-                searchDomain = profile.getSearchDomains()[searchDomain].name;
-                searchDomainLabel = profile.getSearchDomains()[searchDomain].label;
+                searchDomain = profile.getSearchDomains()[domainIndex].name;
+                searchDomainLabel = profile.getSearchDomains()[domainIndex].label;
             } else {
                 searchDomain = profile.getSearchDomains()[0].name;
                 searchDomainLabel = profile.getSearchDomains()[0].label;