Table Header color and Body color Changed

This commit is contained in:
gandhimathi 2017-12-05 14:36:51 +05:30
parent ba7b0106a5
commit 36d086324e
3 changed files with 11 additions and 16 deletions

View File

@ -41,7 +41,7 @@
<form method="post" action="<?php echo base_url($this->uri->uri_string()); ?>">
<div class="form-group has-feedback">
<div class="col-md-4">
<div class="col-md-3">
<label for="client_name">
<?php echo 'Supplier'; ?>
</label>
@ -86,20 +86,20 @@
</div>
</div>
<div class="col-md-2">
<div class="col-md-2"><br>
<label><input type="radio" name="colorRadio" id="value" onclick="toggleTables('2')" value="tab"> Value</label>
<label><input type="radio" name="colorRadio" id="qty" onclick="toggleTables('1')" value="ta" checked> Quantity</label>
</div>
<div class="col-md-2 col-md-offset-10" style="padding:3%;">
<div class="col-md-2"><br>
<input type="submit" class="btn btn-success" name="btn_submit"
value="View Report">
</div>
</div>
</form>
</for m>

View File

@ -114,6 +114,9 @@ $(function() {
table{
font-size:14px !important;
}
thead{
background:#ad9271 !important;
}
</style>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" crossorigin="anonymous">
@ -723,21 +726,13 @@ $(function() {
<?php } ?>
<li class="dropdown user user-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<?php if($this->profilepic != '') {?>
<img src="<?php echo base_url().'uploads/images/'.$this->profilepic ; ?>" class="user-image" alt="User Image" />
<?php } else {?>
<img src="<?php echo base_url(); ?>assets/dist/img/avatar5.png" class="user-image" alt="User Image"/>
<?php } ?>
<img src="<?php echo base_url(); ?>assets/dist/img/avatar.png" class="user-image" alt="User Image"/>
<span class="hidden-xs"><?php echo $name; ?></span>
</a>
<ul class="dropdown-menu">
<!-- User image -->
<li class="user-header">
<?php if($this->profilepic != '') {?>
<img src="<?php echo base_url().'uploads/images/'.$this->profilepic ; ?>" class="img-circle" alt="User Image" />
<?php } else {?>
<img src="<?php echo base_url(); ?>assets/dist/img/avatar5.png" class="img-circle" alt="User Image"/>
<?php } ?>
<img src="<?php echo base_url(); ?>assets/dist/img/avatar.png" class="img-circle" alt="User Image" />
<p>
<?php echo $name; ?>-<?php echo $role; ?>
<small><?php echo $role_text; ?></small>

File diff suppressed because one or more lines are too long