diff --git a/resources/skins.citizen.styles/Searchbox.less b/resources/skins.citizen.styles/Searchbox.less index 6abadec3..6ca927be 100644 --- a/resources/skins.citizen.styles/Searchbox.less +++ b/resources/skins.citizen.styles/Searchbox.less @@ -248,16 +248,22 @@ } @media ( max-width: @search-bar-width ) { - #searchform:before { - content: ''; - display: block; - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - background: @base-100; - opacity: 0.9; + #search { + &form:before { + content: ''; + display: block; + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: @base-100; + opacity: 0.9; + } + + &Input { + transition: none; // Width transition does not play well on mobile + } } }