advanced search: bugfix

- adapt the css to IE needs
- a translation key had been renamed without renaming all the usages in the code

SVN:trunk[5663]
This commit is contained in:
Bruno Da Silva
2018-04-13 13:42:19 +00:00
parent 496441cae6
commit dcda5084d0
3 changed files with 11 additions and 4 deletions

View File

@@ -719,7 +719,7 @@ input.dp-applied {
margin-left: auto;
margin-right: auto;
font-size: 12px;
text-align: initial;
text-align: left;
/* To compensate .search_box:text-align */
border: 1px solid #1c94c4;
/* Sizing reset */
@@ -1264,6 +1264,9 @@ input.dp-applied {
.search_form_handler .sf_filter .sff_input_wrapper .sff_reset {
display: none;
}
.search_form_handler .sf_filter .sff_input_wrapper input::-ms-clear {
display: none;
}
.search_form_handler .sf_filter.sf_with_buttons input {
width: calc(100% - 28px) !important;
/* Minus button outter width (only one for now) */

View File

@@ -799,7 +799,7 @@ input.dp-applied {
margin-left: auto;
margin-right: auto;
font-size: 12px;
text-align: initial; /* To compensate .search_box:text-align */
text-align: left; /* To compensate .search_box:text-align */
border: 1px solid $complement-color;
//transition: width 0.3s ease-in-out;
@@ -1485,6 +1485,10 @@ input.dp-applied {
.sff_reset{
display: none;
}
input::-ms-clear {
display: none;
}
}
&.sf_with_buttons{

View File

@@ -509,7 +509,7 @@ $(function()
return sTitle;
}
sTitle = Dict.Format('UI:Search:Criteria:Title:Default:Any:Empty', this.options.field.label);
sTitle = Dict.Format('UI:Search:Criteria:Title:Default:Empty', this.options.field.label);
return sTitle;
},
@@ -518,7 +518,7 @@ $(function()
return sTitle;
}
sTitle = Dict.Format('UI:Search:Criteria:Title:Default:Any:NotEmpty', this.options.field.label);
sTitle = Dict.Format('UI:Search:Criteria:Title:Default:NotEmpty', this.options.field.label);
return sTitle;
},