Advanced search: WIP POC, UI/UX.

SVN:b1162[5452]
This commit is contained in:
Guillaume Lajarige
2018-03-16 15:12:25 +00:00
parent 187f7e591e
commit 52f56e1bb0
4 changed files with 68 additions and 20 deletions

View File

@@ -765,16 +765,21 @@ input.dp-applied {
background-color: #3f7294;
/* Pictogram */
}
.search_form_handler .sf_title > span {
.search_form_handler .sf_title .sft_picto {
margin-right: 10px;
}
.search_form_handler .sf_title .sft_refresh, .search_form_handler .sf_title .sft_toggler {
transition: color 0.2s ease-in-out, transform 0.4s ease-in-out;
}
.search_form_handler .sf_title .sft_refresh:hover, .search_form_handler .sf_title .sft_toggler:hover {
color: #f1f1f1;
}
.search_form_handler .sf_title .sft_refresh {
font-size: 10pt;
line-height: 13pt;
}
.search_form_handler .sf_title .sft_toggler {
margin-left: 0.7em;
transition: all 0.4s ease-in-out;
}
.search_form_handler .sf_criterion_area {
/*display: none;*/

View File

@@ -854,17 +854,24 @@ input.dp-applied {
background-color: $box-blue-border-color;
/* Pictogram */
> span{
.sft_picto{
margin-right: 10px;
}
.sft_refresh,
.sft_toggler{
transition: color 0.2s ease-in-out, transform 0.4s ease-in-out;
&:hover{
color: $gray-extra-light;
}
}
.sft_refresh{
font-size: 10pt;
line-height: 13pt;
}
.sft_toggler{
margin-left: 0.7em;
transition: all 0.4s ease-in-out;
}
}
.sf_criterion_area{