Merge pull request #26 from Priyank57/master

right_col height set to screen height
pull/42/head
Aigars Silkalns 2016-02-26 16:50:16 +02:00
commit a9ecf4e24d
3 changed files with 48 additions and 35 deletions

View File

@ -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>

View File

@ -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;
} }

View File

@ -60,15 +60,21 @@ $(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 *********************** **/
/** ****** tooltip *********************** **/ /** ****** tooltip *********************** **/
$(function () { $(function () {
$('[data-toggle="tooltip"]').tooltip() $('[data-toggle="tooltip"]').tooltip()
}) })
/** ****** /tooltip *********************** **/ /** ****** /tooltip *********************** **/
/** ****** progressbar *********************** **/ /** ****** progressbar *********************** **/
if ($(".progress .progress-bar")[0]) { if ($(".progress .progress-bar")[0]) {
$('.progress .progress-bar').progressbar(); // bootstrap 3 $('.progress .progress-bar').progressbar(); // bootstrap 3
} }
@ -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) {
@ -281,15 +288,15 @@ function countChecked() {
$('.column-title').show(); $('.column-title').show();
$('.bulk-actions').hide(); $('.bulk-actions').hide();
} }
} }
/** ****** /table *********************** **/ /** ****** /table *********************** **/
/** ****** *********************** **/ /** ****** *********************** **/
/** ****** *********************** **/ /** ****** *********************** **/
/** ****** *********************** **/ /** ****** *********************** **/
/** ****** *********************** **/ /** ****** *********************** **/
/** ****** *********************** **/ /** ****** *********************** **/
/** ****** *********************** **/ /** ****** *********************** **/
/** ****** Accordion *********************** **/ /** ****** Accordion *********************** **/
$(function () { $(function () {
$(".expand").on("click", function () { $(".expand").on("click", function () {