Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ button.button-inline:hover {
top: 44px;
}

#board #innerBoard {
#innerBoard {
padding: 10px;
}

Expand Down Expand Up @@ -251,9 +251,7 @@ button.button-inline:hover {

.stack {
width: 100%;
margin-right: 10px;
vertical-align: top;
background-color: #f8f8f8;
}

.stack h2 {
Expand Down Expand Up @@ -981,10 +979,22 @@ button.button-inline:hover {
display: none;
}

#innerBoard {
display: flex;
}
.stack {
width: 320px;
min-width: 320px;
display: inline-block;
border-right: 1px solid #eee;
margin-right: 10px;
padding-right: 10px;
}

.stack:last-child {
border-right: 1px solid transparent;
}

.stack h2 button {
display: none;
}
Expand Down
3 changes: 1 addition & 2 deletions templates/part.board.mainView.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@
ng-if="!s.status.editStack"
ng-click="stackservice.delete(s.id)"></button>
</h2>
<ul data-as-sortable="sortOptions" is-disabled="!boardservice.canEdit() || filter==='archive'" data-ng-model="s.cards"
style="min-height: 40px;">
<ul data-as-sortable="sortOptions" is-disabled="!boardservice.canEdit() || filter==='archive'" data-ng-model="s.cards" class="card-list">
<li class="card as-sortable-item"
ng-repeat="c in s.cards"
data-as-sortable-item
Expand Down