Lots of UI cleanups and update, gave a dark look for modals, bunch of icon changes etc

This commit is contained in:
root
2019-05-13 14:53:17 -04:00
parent 5c55358841
commit 4389c92c0e
79 changed files with 771 additions and 676 deletions

View File

@@ -1,14 +1,14 @@
<div class="modal" id="editClientModal<?php echo $client_id; ?>" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-content bg-dark">
<div class="modal-header">
<h5 class="modal-title"><i class="fa fa-user-edit"></i> Edit Client</h5>
<button type="button" class="close" data-dismiss="modal">
<h5 class="modal-title text-white"><i class="fa fa-fw fa-user-edit mr-2"></i>Edit Client</h5>
<button type="button" class="close text-white" data-dismiss="modal">
<span aria-hidden="true">&times;</span>
</button>
</div>
<form action="post.php" method="post" autocomplete="off">
<div class="modal-body">
<div class="modal-body bg-white">
<input type="hidden" name="client_id" value="<?php echo $client_id; ?>" >
<div class="form-group row">
<label class="col-sm-2 col-form-label">Name</label>
@@ -66,7 +66,7 @@
</div>
</div>
</div>
<div class="modal-footer">
<div class="modal-footer bg-white">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
<button type="submit" name="edit_client" class="btn btn-primary">Save</button>
</div>