"Fullheight Portlet with Slimscroll"
Bootstrap 3.3.0 Snippet by sonia14

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 ---------->
<nav class="navbar navbar-default navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
<a class="navbar-brand" href="#">Brand</a> </div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Link <span class="sr-only">(current)</span></a> </li>
<li><a href="#">Link</a> </li>
<li><a href="#">Link</a> </li>
<li><a href="#">Link</a> </li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Link</a> </li>
<li><a href="#">Link</a> </li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<div class="container-fluid fullheight">
<div class="row fullheight">
<div class="col-md-2 col-sm-3 col-xs-12 fullheight">
<div class="portlet light no-margin fullheight">
<div class="portlet-title">
<div class="caption"> <span class="caption-subject bold uppercase"> Portlet 2</span></div>
</div>
<div class="portlet-body">
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
/* CSS Document */
html, body{ height:100%;}
body { padding-top: 55px;padding-bottom: 28px; background: #cccccc; overflow: hidden}
.font-white{color:white;}
.font-lightgrey{color:#777777;}
.font-xs{ font-size:11px;}
.no-margin{ margin:0px!important;}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12
{
padding-left: 5px;
padding-right: 5px;
}
/*Portlet*/
.portlet {
border-radius: 4px;
margin-bottom: 25px;
margin-top: 0;
padding: 0;
}
.portlet > .portlet-title {
border-bottom: 1px solid #eee;
border-radius: 4px 4px 0 0;
margin-bottom: 10px;
min-height: 41px;
padding: 0;
}
.portlet > .portlet-title > .caption {
display: inline-block;
float: left;
font-size: 18px;
line-height: 18px;
padding: 10px 0;
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
$(function() {
// check if container has slimScroll, if yes remove it
//if($('.slimtest').parent('.slimScrollDiv').size() > 0)
//$('.slimtest').parent().replaceWith($('.abc'));
// now (re)assign slimScroll
$('.slimtest').slimScroll({
height: '200px'
//size: '5px'
});
});
/*! Copyright (c) 2011 Piotr Rochala (http://rocha.la)
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
*
* Version: 0.3.0
*
*/
(function($) {
jQuery.fn.extend({
slimScroll: function(o) {
var ops = o;
//do it for every element that matches selector
this.each(function(){
var isOverPanel, isOverBar, isDragg, queueHide, barHeight,
divS = '<div></div>',
minBarHeight = 30,
releaseScroll = false,
o = ops || {},
wheelStep = parseInt(o.wheelStep) || 20,
cwidth = o.width || '100%',
cheight = o.height || 'auto',
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: