diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2016-01-26 18:35:05 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2016-01-26 18:35:05 +0000 |
commit | 6d50b3ebf2eb17950c4e31a4873a6238287a370c (patch) | |
tree | fc820f16192ed61ccc17b10aec453c1030c964fc | |
parent | 2622ff35605e1054077d845ab1bf27c39df15d43 (diff) | |
parent | 5e88d7357f48bec823c27abb0776aa217672d979 (diff) | |
download | gitlab-ce-6d50b3ebf2eb17950c4e31a4873a6238287a370c.tar.gz |
Merge branch 'search-box-in-group-members-view-is-too-small-for-placeholder-in-chrome' into 'master'
Fixes: Search box in Group Members view is too small for placeholder in Chrome
Fixes #2498

See merge request !2609
-rw-r--r-- | app/assets/stylesheets/pages/groups.scss | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/groups.scss b/app/assets/stylesheets/pages/groups.scss index 263993f59a5..fdd86979a36 100644 --- a/app/assets/stylesheets/pages/groups.scss +++ b/app/assets/stylesheets/pages/groups.scss @@ -1,5 +1,15 @@ .member-search-form { float: left; + + input[type='search'] { + width: 225px; + vertical-align: bottom; + + @media (max-width: $screen-xs-max) { + width: 100px; + vertical-align: bottom; + } + } } .milestone-row { |