mirror of https://github.com/ColorlibHQ/gentelella
commit
a9ecf4e24d
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
|
||||||
|
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
|
||||||
|
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
|
||||||
|
<group/>
|
||||||
|
</open-files>
|
||||||
|
</project-private>
|
|
@ -11,7 +11,6 @@ body.nav-sm .container.body .right_col {
|
||||||
margin-left: 70px;
|
margin-left: 70px;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
.right_col{min-height: 1000px;}
|
|
||||||
body.nav-sm .navbar.nav_title {
|
body.nav-sm .navbar.nav_title {
|
||||||
width: 70px;
|
width: 70px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,6 +60,12 @@ $(function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
/** ****** /left menu *********************** **/
|
/** ****** /left menu *********************** **/
|
||||||
|
/** ****** right_col height flexible *********************** **/
|
||||||
|
$(".right_col").css("min-height", $(window).height());
|
||||||
|
$(window).resize(function () {
|
||||||
|
$(".right_col").css("min-height", $(window).height());
|
||||||
|
});
|
||||||
|
/** ****** /right_col height flexible *********************** **/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -125,7 +131,8 @@ var __slice = [].slice;
|
||||||
Starrr.prototype.defaults = {
|
Starrr.prototype.defaults = {
|
||||||
rating: void 0,
|
rating: void 0,
|
||||||
numStars: 5,
|
numStars: 5,
|
||||||
change: function (e, value) {}
|
change: function (e, value) {
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
function Starrr($el, options) {
|
function Starrr($el, options) {
|
||||||
|
|
Loading…
Reference in New Issue