diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/AdvancedSearch/AdvancedSearchView.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/AdvancedSearch/AdvancedSearchView.js
index 40a6eb8f57ff7e83840ff776eea3de06b1da429b..3a5553fec55c403fd4a505f0e15353b268e53643 100644
--- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/AdvancedSearch/AdvancedSearchView.js
+++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/AdvancedSearch/AdvancedSearchView.js
@@ -123,7 +123,7 @@ function AdvancedSearchView(advancedSearchController, advancedSearchModel) {
 						.append($("<th>").text("Field Name"))
 						.append($("<th>").text("Comparator Operator"))
 						.append($("<th>").text("Field Value"))
-						.append($("<th>").append(this._$addButton))
+						.append($("<th>", { "style" : "width : 56px !important;" }).append(this._$addButton))
 					);
 		
 		this._paintInputRow();
@@ -152,7 +152,8 @@ function AdvancedSearchView(advancedSearchController, advancedSearchModel) {
 		var $newFieldOperatorContainer = $("<td>");
 		var $newRow = $("<tr>", { id : uuidValue });
 		var $fieldTypeDropdown = this._getNewFieldTypeDropdownComponent($newFieldNameContainer, $newFieldOperatorContainer, this._advancedSearchModel.criteria.entityKind, uuidValue);
-		var $fieldValue = $("<input>", { class : "form-control", type: "text"});
+		var $fieldValue = $("<input>", { class : "form-control", type: "text" });
+		$fieldValue.css({width : "100%" });
 		
 		$fieldValue.keyup(function() {
 			var $thisComponent = $(this);