Update Font, Migrated away from JQUERY dependent libs: toastr to bootstrap5 toasts, daterangepicker to flatpickr, select2 to Tom Select, InputMask to IMask

This commit is contained in:
johnnyq
2026-08-14 17:08:40 -04:00
parent 0fe6d51bdb
commit dc6b191eed
377 changed files with 1783 additions and 3769 deletions

View File

@@ -26,7 +26,7 @@ ob_start();
<label>Account <strong class="text-danger">*</strong></label>
<div class="input-group">
<span class="input-group-text"><i class="fa fa-fw fa-piggy-bank"></i></span>
<select class="form-control select2" name="bulk_account_id" data-placeholder="- Select an Account -" required>
<select class="form-select select2" name="bulk_account_id" data-placeholder="- Select an Account -" required>
<option></option>
<?php

View File

@@ -86,7 +86,7 @@ ob_start();
<label>Category <strong class="text-danger">*</strong></label>
<div class="input-group">
<span class="input-group-text"><i class="fa fa-fw fa-list"></i></span>
<select class="form-control select2" name="bulk_category_id" data-placeholder="- Select a Category -" required>
<select class="form-select select2" name="bulk_category_id" data-placeholder="- Select a Category -" required>
<option></option>
<?php

View File

@@ -26,7 +26,7 @@ ob_start();
<label>Payment Method <strong class="text-danger">*</strong></label>
<div class="input-group">
<span class="input-group-text"><i class="fa fa-fw fa-money-check-alt"></i></span>
<select class="form-control select2" name="bulk_payment_method" data-placeholder="- Select a Method of Payment -" required>
<select class="form-select select2" name="bulk_payment_method" data-placeholder="- Select a Method of Payment -" required>
<option></option>
<?php

View File

@@ -85,7 +85,7 @@ ob_start();
<label>Type</label>
<div class="input-group">
<span class="input-group-text"><i class="fa fa-fw fa-hand-holding-usd"></i></span>
<select class="form-control select2" name="type">
<select class="form-select select2" name="type">
<option value="">- All Types -</option>
<?php foreach ($income_types_array as $income_type_option) { ?>
@@ -100,7 +100,7 @@ ob_start();
<label>Category</label>
<div class="input-group">
<span class="input-group-text"><i class="fa fa-fw fa-tag"></i></span>
<select class="form-control select2" name="category">
<select class="form-select select2" name="category">
<option value="">- All Categories -</option>
<?php
@@ -126,7 +126,7 @@ ob_start();
<label>Account</label>
<div class="input-group">
<span class="input-group-text"><i class="fa fa-fw fa-piggy-bank"></i></span>
<select class="form-control select2" name="account">
<select class="form-select select2" name="account">
<option value="">- All Accounts -</option>
<?php
@@ -151,7 +151,7 @@ ob_start();
<label>Payment Method</label>
<div class="input-group">
<span class="input-group-text"><i class="fa fa-fw fa-credit-card"></i></span>
<select class="form-control select2" name="method">
<select class="form-select select2" name="method">
<option value="">- All Payment Methods -</option>
<?php