Browse Source

apply selectpicker style to group select input

Yuki Takei 8 years ago
parent
commit
112936cf28
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/views/_form.html

+ 1 - 1
lib/views/_form.html

@@ -56,7 +56,7 @@
       </select>
       {% endif %}
       {% if userRelatedGroups.length != 0 %}
-      <select name="pageForm[grantUserGroupId]" class="form-control">
+      <select name="pageForm[grantUserGroupId]" class="selectpicker btn-group-sm">
         {% for userGroup in userRelatedGroups %}
         <option value="{{ userGroup.id }}">{{ userGroup.name }}</option>
         {% endfor %}