Commit cf67a23d by Saliya Randunu

fix issue height with black side bar in manage plan section.

parent ef3c45fc
......@@ -5777,14 +5777,12 @@ label, label .label-title span {
color: #67B413;
}
.manage-plan-row .per-job-amount-past {
.manage-plan-row .per-job-amount-past {
color: #8E97A0;
font-size: 11px;
font-size: 11px;
}
/*.manage-plan-hidden-info {display: none; }*/
.manage-plan-hidden-info {display: none; }
.oneit-radio.checked .manage-plan-hidden-info {display: block;}
.subscription-billed {
......
......@@ -58,7 +58,11 @@
Popup.setContent($("#" + $(this).data('popupid') ));
Popup.open();
});
});
$(".manage-plan-row input").on("change", function(){
setTabingSideBarHeight();
});
});
</script>
......
$(document).ready(function () {
var sdh = $('.company-content-area').outerHeight() > 700 ? $('.company-content-area').outerHeight() : 700;
$('.tabing-sidebar').css('min-height',sdh);
setTabingSideBarHeight();
$('select').select2({
minimumResultsForSearch: Infinity
......@@ -37,6 +36,11 @@ $(document).ready(function () {
// });
});
function setTabingSideBarHeight(){
var sdh = $('.company-content-area').outerHeight() > 700 ? $('.company-content-area').outerHeight() : 700;
$('.tabing-sidebar').css('min-height',sdh);
}
function addUserPic(opt) {
if (!opt.id) {
return opt.text;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment