From 031b048c0750f442a93e7880f9071086777a90fa Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Mon, 21 Dec 2015 23:19:53 +0000 Subject: [PATCH] fix missing webkit prefixes for flexbox --- src/skins/vector/css/molecules/SearchBar.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/skins/vector/css/molecules/SearchBar.css b/src/skins/vector/css/molecules/SearchBar.css index 3698c852..55d1a72e 100644 --- a/src/skins/vector/css/molecules/SearchBar.css +++ b/src/skins/vector/css/molecules/SearchBar.css @@ -18,7 +18,9 @@ limitations under the License. padding-top: 5px; padding-bottom: 5px; display: flex; + display: -webkit-flex; align-items: center; + -webkit-align-items: center; } .mx_SearchBar_input { @@ -30,6 +32,7 @@ limitations under the License. padding-left: 11px; width: auto; flex: 1 1 0; + -webkit-flex: 1 1 0; } .mx_SearchBar_searchButton {