Do not show window scrollbars when individual column scrolling is enabled
This commit is contained in:
@@ -10,6 +10,7 @@ New features:
|
|||||||
Improvements:
|
Improvements:
|
||||||
|
|
||||||
- Improving performance during task position change (SQL queries are 3 times faster than before)
|
- Improving performance during task position change (SQL queries are 3 times faster than before)
|
||||||
|
- Do not show window scrollbars when individual column scrolling is enabled
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -17,7 +17,7 @@ body {
|
|||||||
body {
|
body {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 10px;
|
||||||
color: #333;
|
color: #333;
|
||||||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||||
text-rendering: optimizeLegibility;
|
text-rendering: optimizeLegibility;
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
#board {
|
#board {
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#board th.board-column-header {
|
#board th.board-column-header {
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -180,7 +180,7 @@ Board.prototype.columnScrolling = function() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
var height = $(window).height() - 145;
|
var height = $(window).height() - 170;
|
||||||
|
|
||||||
$(".board-task-list").css("height", height);
|
$(".board-task-list").css("height", height);
|
||||||
$(".board-rotation-wrapper").css("min-height", height);
|
$(".board-rotation-wrapper").css("min-height", height);
|
||||||
|
|||||||
Reference in New Issue
Block a user