Add custom-select class to select element

This commit is contained in:
Son NK 2020-02-23 13:53:02 +07:00
parent bc0dc0265d
commit a467830a23
2 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@
<div class="col-sm-6 p-1">
<select class="form-control" name="suffix">
<select class="form-control custom-select" name="suffix">
{% for suffix in suffixes %}
<option value="{{ suffix[1] }}">
{% if suffix[0] %}
@ -57,7 +57,7 @@
{% if mailboxes|length > 1 or current_user.full_mailbox %}
<div class="row mb-2">
<div class="col p-1">
<select class="form-control" name="mailbox">
<select class="form-control custom-select" name="mailbox">
{% for mailbox in mailboxes %}
<option value="{{ mailbox }}">
{{ mailbox }}

View File

@ -106,7 +106,7 @@
<div class="col-sm-6"
style="padding-left: 5px">
<select class="form-control" name="suffix">
<select class="form-control custom-select" name="suffix">
{% for suffix in suffixes %}
<option value="{{ suffix[1] }}">
{% if suffix[0] %}