Commit 8e3fd88e authored by Phil Hughes's avatar Phil Hughes

Improved the mobile UI

parent 8bdf4cc2
...@@ -33,6 +33,8 @@ $(function () { ...@@ -33,6 +33,8 @@ $(function () {
if (list.type === 'done') { if (list.type === 'done') {
list.position = 9999999; list.position = 9999999;
} else if (list.type === 'backlog') {
list.position = -1;
} }
}); });
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
}, },
ready: function () { ready: function () {
const options = _.extend({ const options = _.extend({
sort: false, // sort: false,
group: 'issues', group: 'issues',
disabled: this.disabled, disabled: this.disabled,
onAdd: function (e) { onAdd: function (e) {
......
...@@ -4,12 +4,12 @@ ...@@ -4,12 +4,12 @@
} }
gl.boardSortableDefaultOptions = { gl.boardSortableDefaultOptions = {
animation: 150,
forceFallback: true, forceFallback: true,
fallbackClass: 'is-dragging', fallbackClass: 'is-dragging',
fallbackOnBody: true,
ghostClass: 'is-ghost', ghostClass: 'is-ghost',
scrollSensitivity: 150, scrollSensitivity: 50,
scrollSpeed: 50, scrollSpeed: 10,
onStart: function () { onStart: function () {
document.body.classList.add('is-dragging'); document.body.classList.add('is-dragging');
}, },
......
...@@ -69,21 +69,30 @@ ...@@ -69,21 +69,30 @@
display: flex; display: flex;
-webkit-flex: 1; -webkit-flex: 1;
flex: 1; flex: 1;
min-height: 455px; min-height: calc(100vh - 152px);
padding-top: 25px; padding-top: 25px;
padding-right: ($gl-padding / 2); padding-right: ($gl-padding / 2);
padding-left: ($gl-padding / 2); padding-left: ($gl-padding / 2);
overflow-x: scroll; overflow-x: scroll;
@media (min-width: $screen-sm-min) {
min-height: 455px;
}
} }
.board { .board {
display: -webkit-flex; display: -webkit-flex;
display: flex; display: flex;
min-width: 400px; min-width: calc(100vw - 15px);
max-width: 400px; max-width: calc(100vw - 15px);
margin-bottom: 25px; margin-bottom: 25px;
padding-right: ($gl-padding / 2); padding-right: ($gl-padding / 2);
padding-left: ($gl-padding / 2); padding-left: ($gl-padding / 2);
@media (min-width: $screen-sm-min) {
min-width: 400px;
max-width: 400px;
}
} }
.board-inner { .board-inner {
......
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