"side menu with popover"
Bootstrap 3.0.0 Snippet by Basmah-am

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
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.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 ---------->
<div class="container">
<div class="col-xs-12 bhoechie-tab-container">
<div class="bhoechie-tab-menu">
<div class="col-md-3">
<div class="list-group">
<a href="#" data-trigger="hover" data-placement="right" data-toggle="popover" title="name" data-content="content" class="list-group-item text-center activef">
<h4 class=""></h4>tab1<br/>
</a>
<a href="#" data-trigger="hover" data-placement="left" data-toggle="popover" title="name" data-content="content" class="list-group-item text-center activef">
<h4 class=""></h4>tab2<br/>
</a>
<a href="#" data-trigger="hover" data-placement="left" data-toggle="popover" title="name" data-content="content" class="list-group-item text-center activef">
<h4 class=""></h4>tab3<br/>
</a>
<a href="#" data-trigger="hover" data-placement="bottom" data-toggle="popover" title="name" data-content="content" class="list-group-item text-center activef">
<h4 class=""></h4>tab4<br/>
</a>
</div>
</div>
</div>
</div>
</div>
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
/* bhoechie tab */
.bhoechie-tab-container{
z-index: 10;
background-color: #f1f1f1;
border-radius: 10px;
margin-top: 20px;
background-clip: padding-box;
opacity: 0.97;
filter: alpha(opacity=97);
}
div.bhoechie-tab-menu{
padding-right: 0;
padding-left: 0;
padding-bottom: 0;
}
div.bhoechie-tab-menu div.list-group{
margin-bottom: 0;
}
div.bhoechie-tab-menu div.list-group>a{
background-color: #f1f1f1;
margin-bottom: 0;
border-bottom: 0;
}
div.bhoechie-tab-menu div.list-group>a .glyphicon,
div.bhoechie-tab-menu div.list-group>a .fa {
color: #255576
}
div.bhoechie-tab-menu div.list-group>a:first-child{
border-top-left-radius: 0;
-moz-border-top-left-radius: 0;
}
div.bhoechie-tab-menu div.list-group>a:last-child{
border-bottom-left-radius: 0;
-moz-border-bottom-left-radius: 0;
border-bottom: 1px solid #ddd;
}
div.bhoechie-tab-menu div.list-group>a.active,
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
$(function () {
$('[data-toggle="popover"]').popover()
})
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: