"Sidebar"
Bootstrap 3.3.0 Snippet by cojahmetov

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 ---------->
<div class="left">
<div class="item">
<span class="glyphicon glyphicon-th-large"></span>
</div>
<div class="item active">
<span class="glyphicon glyphicon-th-list"></span>
Все документы</div>
<div class="item">
<span class="glyphicon glyphicon-log-out"></span>
Расходные накладные</div>
<div class="item">
<span class="glyphicon glyphicon-log-in"></span>
Приходные накладные</div>
<div class="item">
<span class="glyphicon glyphicon-random"></span>
Акты переоценки</div>
<div class="item">
<span class="glyphicon glyphicon-remove"></span>
Акты списания</div>
</div>
<div class="right">
<table class="table">
<tr>
<td class="title search col-md-9">
<div class="inner-addon right-addon">
<input class="col-md-12" type="search" placeholder="Поиск">
<i class="glyphicon glyphicon-search"></i>
</div>
</td>
<th valign="middle" colspan="2" class="title text-center">
<span class="glyphicon glyphicon-refresh"></span>
</th>
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
td, th {
vertical-align: middle !important;
}
.left, .right {
float:left;
height:100vh;
}
.left {
background: #337ab7;
display: inline-block;
white-space: nowrap;
width: 50px;
transition: width 1s ;
}
.right {
background: #fff;
width: 350px;
transition: width 1s;
border-style:solid;
border-color:#ccc;
border-width:1px;
}
.left:hover {
width: 250px;
}
.item:hover {
background-color:#ccc;
}
.left .glyphicon {
margin:15px;
width:20px;
color:#fff;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: