Hide search input behind split slider

Ensure search input is covered by the split slider, when it is dragged
all the way to the left similar to how tree nodes is covered.
This commit is contained in:
bjarnef
2016-01-19 22:46:42 +01:00
committed by Simon Busborg
parent c33ad3eed7
commit 738f24d6c9

View File

@@ -92,17 +92,30 @@ body {
}
#search-form {
display: block;
margin: 0px;
z-index: 100;
position: absolute;
top: 0;
left: 0;
right: 0;
}
display: block;
margin: 0;
z-index: 100;
position: absolute;
top: 0;
left: 0;
right: 0;
overflow: hidden;
#search-form form{
margin-top: 17px;
.form-search {
display: -ms-flexbox;
display: -webkit-box;
display: -webkit-flex;
display: flex;
margin-top: 17px;
.umb-search-field {
width: auto;
min-width: 160px;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
}
}
#navigation {