Subversion Repositories SmartDukaan

Rev

Rev 23181 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21987 kshitij.so 1
<style>
2
	.table-striped > tbody > tr:nth-child(odd) > td{
3
  background: white;
4
  background-color: white;
5
}
6
.table-striped > tbody > tr:nth-child(even) > td{
7
  background: white;
8
  background-color:white;
9
}
10
.table-striped > tbody > tr:hover > td,
11
	.table-striped > tbody > tr:hover {
23181 ashik.ali 12
	  background-color: #e98c8f;
21987 kshitij.so 13
	  color:white;
14
	}
15
	.btn:hover{
16
  	color: grey;
17
  	text-decoration: none;
18
	}
19
	.btn-primary:hover{
20
  	color: grey;
21
  	text-decoration: none;
22
	}
23
</style>
24
<section class="wrapper">            
25
	<div class="row">
26
		<div class="col-lg-12">
23026 ashik.ali 27
			<h3 class="page-header"><i class="icon_desktop"></i>INVENTORY</h3>
21987 kshitij.so 28
			<ol class="breadcrumb">
22116 amit.gupta 29
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
23026 ashik.ali 30
				<li><i class="icon_desktop"></i>BAD</li>						  	
21987 kshitij.so 31
			</ol>
32
		</div>
33
	</div>
34
 
35
	 <div id="bad-inventory-search">
36
    	<div class="row">
37
    		<div class="col-lg-12">
38
                <div class="col-md-3 col-sm-3 col-xs-12 form-group pull-right top_search">
39
                  <div class="input-group">
40
                    <input type="text" class="form-control" id="bad-inventory-search-text"" placeholder="Search for product..." value="$searchTerm" />
41
                    <span class="input-group-btn">
42
                      <button class="btn btn-primary submit" id="bad-inventory-search-button" type="button">Go!</button>
43
                    </span>
44
                  </div>
45
                </div>
46
              </div>
47
         </div>
48
        </div>
49
         <div id="bad-inventory-table">
50
	         <div class="row">
51
	    		<div class="col-lg-12">
52
	    			<table class="table table-striped table-advance table-hover">
53
	    				<tbody>
54
	    					<tr>
55
	    						<th>Item Code</th>
56
	    						<th>Brand</th>
57
	    						<th>Model Name</th>
58
	    						<th>Model Number</th>
59
	    						<th>Color</th>
60
	    						<th>Type</th>
61
	    						<th>Quantity</th>
62
	    					</tr>
63
		    					<tr>
64
		    						<td colspan="7" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
65
		    					</tr>
66
	    				</tbody>
67
	    			</table>
68
	    		</div>
69
	    	</div>
70
    	</div>
71
</section>