Change swimlane layout to save space on the screen
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -111,21 +111,16 @@ th.board-column-header-collapsed .board-column-header-task-count {
|
||||
}
|
||||
|
||||
/* swimlanes */
|
||||
th.board-swimlane-header {
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
a.board-swimlane-toggle {
|
||||
font-size: 0.95em;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.board-swimlane-toggle-title {
|
||||
font-size: 0.85em;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.board-swimlane-title {
|
||||
vertical-align: top;
|
||||
a.board-swimlane-toggle:hover,
|
||||
a.board-swimlane-toggle:focus {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* board task list */
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -16,9 +16,8 @@ Swimlane.prototype.expand = function(swimlaneId) {
|
||||
localStorage.setItem(this.getStorageKey(), JSON.stringify(swimlaneIds));
|
||||
|
||||
$('.swimlane-row-' + swimlaneId).css('display', 'table-row');
|
||||
$('.show-icon-swimlane-' + swimlaneId).css('display', 'none');
|
||||
$('.hide-icon-swimlane-' + swimlaneId).css('display', 'inline');
|
||||
$('.swimlane-task-count-' + swimlaneId).css('display', 'inline');
|
||||
$('.show-icon-swimlane-' + swimlaneId).css('display', 'none');
|
||||
};
|
||||
|
||||
Swimlane.prototype.collapse = function(swimlaneId) {
|
||||
@@ -30,9 +29,8 @@ Swimlane.prototype.collapse = function(swimlaneId) {
|
||||
}
|
||||
|
||||
$('.swimlane-row-' + swimlaneId).css('display', 'none');
|
||||
$('.show-icon-swimlane-' + swimlaneId).css('display', 'inline');
|
||||
$('.hide-icon-swimlane-' + swimlaneId).css('display', 'none');
|
||||
$('.swimlane-task-count-' + swimlaneId).css('display', 'none');
|
||||
$('.show-icon-swimlane-' + swimlaneId).css('display', 'inline');
|
||||
};
|
||||
|
||||
Swimlane.prototype.isCollapsed = function(swimlaneId) {
|
||||
|
||||
Reference in New Issue
Block a user