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,16 +1,16 @@
<div class="modal" id="viewClientFileModal<?php echo $file_id; ?>" tabindex="-1">
<div class="modal-dialog modal-xl">
<div class="modal-content bg-dark text-white">
<div class="modal-dialog modal-xl ">
<div class="modal-content bg-dark">
<div class="modal-header">
<h5 class="modal-title"><i class="fa fa-paperclip"></i> <?php echo basename($file_name); ?></h5>
<button type="button" class="close" data-dismiss="modal">
<span class="text-white" aria-hidden="true">&times;</span>
<h5 class="modal-title text-white"><i class="fa fa-fw fa-image mr-2"></i><?php echo basename($file_name); ?></h5>
<button type="button" class="close text-white" data-dismiss="modal">
<span aria-hidden="true">&times;</span>
</button>
</div>
<center>
<img class="img-fluid" src="<?php echo $file_name; ?>">
</center>
</div>
<center>
<img class="img-fluid" src="<?php echo $file_name; ?>">
</center>
</div>
</div>