mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 18:48:51 +02:00
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:
@@ -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) */
|
||||
|
||||
@@ -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{
|
||||
|
||||
@@ -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;
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user