no message

This commit is contained in:
Bengt Brodersen 2015-11-30 17:13:44 +01:00
parent fa061f350c
commit a7bec07585
2 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,7 @@
// YouTrack: http://qoomon.myjetbrains.com/youtrack/dashboard
var global = {};
global.version = "4.3.4";
global.version = "4.3.5";
global.issueTrackingUrl = "https://github.com/qoomon/Jira-Issue-Card-Printer";
global.isDev = document.currentScript == null;
global.isProd = !global.isDev;
@ -344,7 +344,7 @@
var style = document.createElement('style');
style.id = 'styleSingleCardPage';
style.type = 'text/css';
style.innerHTML = ".card { page-break-after: always; float: none;}"
style.innerHTML = ".card { page-break-after: always; float: none; margin-botom: 0.5cm}"
jQuery("head", printDocument).append(style);
}
}

View File

@ -327,5 +327,6 @@ body {
}
.card {
page-break-inside: avoid;
margin: 0.0mm;
}
}