Minor UI cleanups started porting selects from bootstrap-select to select2

This commit is contained in:
johnny@pittpc.com
2019-11-22 20:37:55 -05:00
parent a66e2c7e33
commit 328ac67d5b
165 changed files with 167 additions and 161 deletions

View File

@@ -47,7 +47,7 @@
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-flag"></i></span>
</div>
<select class="form-control selectpicker show-tick" data-live-search="true" name="state">
<select class="form-control select2" name="state">
<option value="">- State -</option>
<?php foreach($states_array as $state_abbr => $state_name) { ?>
<option <?php if($company_state == $state_abbr) { echo "selected"; } ?> value="<?php echo $state_abbr; ?>"><?php echo $state_name; ?></option>