"Accordion Box"
Bootstrap 3.3.0 Snippet by devlopereswar

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<div class="col-md-6 col-md-offset-3">
<div class="panel panel1">
<div class="panel-heading panel-heading2">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#" href="#one">
<b>Order Id :</b>46464
<br/>
<b>Order Name :</b>Saree Name
<span class="pull-right"><b>Status :</b> New </span>
</a>
</h4>
</div>
<div id="one" class="panel-collapse collapse">
<div class="panel-body">
Where now are the horse and the rider? Where is the horn that was blowing? Where is the helm and the hauberk, and the bright hair flowing?
</div>
</div>
</div>
<!-- end of panel -->
</div>
<div class="col-md-6 col-md-offset-3">
<div class="panel panel1">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.panel {
border-width: 0 0 1px 0;
border-style: solid;
border-color: #fff;
background: none;
box-shadow: none;
}
.panel1:last-child {
border-bottom: none;
}
.panel-group1 > .panel1:first-child .panel-heading {
border-radius: 4px 4px 0 0;
}
.panel-group .panel {
border-radius: 0;
}
.panel-group .panel + .panel {
margin-top: 0;
}
.panel-heading2 {
background-color: #8ED058; background-image: -webkit-gradient(linear, left top, left bottom, from(#8ED058), to(#7BB64B));
border-radius: 0;
border: none;
color: #fff;
padding: 0;
}
.panel-title a {
display: block;
color: #fff;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
$(document).ready(function() {
$('.collapse.in').prev('.panel-heading2').addClass('active');
$('#accordion, #bs-collapse')
.on('show.bs.collapse', function(a) {
$(a.target).prev('.panel-heading2').addClass('active');
})
.on('hide.bs.collapse', function(a) {
$(a.target).prev('.panel-heading2').removeClass('active');
});
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: