diff options
author | Jacob Schatz <jacobschatz@Jacobs-MBP.fios-router.home> | 2016-01-25 23:51:40 -0500 |
---|---|---|
committer | Jacob Schatz <jacobschatz@Jacobs-MBP.fios-router.home> | 2016-01-25 23:54:24 -0500 |
commit | 5e88d7357f48bec823c27abb0776aa217672d979 (patch) | |
tree | 44bb5f4b1d0ebfc6c0f1012b78473e63db7ffdec /app | |
parent | fd33b2cdc04bb25a47019e9f1019a835fe318a04 (diff) | |
download | gitlab-ce-5e88d7357f48bec823c27abb0776aa217672d979.tar.gz |
Placeholder now visible completely.search-box-in-group-members-view-is-too-small-for-placeholder-in-chrome
Fixes #2498
Diffstat (limited to 'app')
-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 { |