diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-08 16:34:58 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-08 16:34:58 +0200 |
commit | 8641cda4a5a3e76c2e7c18d68c7edd7db6924203 (patch) | |
tree | 30965595d90114341e953681fa1d14b5e06b771a /app/views/admin/groups | |
parent | ebaa1e5a89b39e2e95ee2c6d485e6bb094e2bd9f (diff) | |
download | gitlab-ce-8641cda4a5a3e76c2e7c18d68c7edd7db6924203.tar.gz |
Dont use fixed pixel size if form controls - its bad for mobile devices
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/admin/groups')
-rw-r--r-- | app/views/admin/groups/index.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/groups/index.html.haml b/app/views/admin/groups/index.html.haml index e00b23ad99f..5ce7cdf2f8d 100644 --- a/app/views/admin/groups/index.html.haml +++ b/app/views/admin/groups/index.html.haml @@ -11,7 +11,7 @@ = form_tag admin_groups_path, method: :get, class: 'form-inline' do = hidden_field_tag :sort, @sort .form-group - = text_field_tag :name, params[:name], class: "form-control input-mn-300" + = text_field_tag :name, params[:name], class: "form-control" = button_tag "Search", class: "btn submit btn-primary" .pull-right |