set miniscreen to 250px

This commit is contained in:
Repmovs 2022-08-20 17:08:50 +00:00
parent 6a20f6dc70
commit 03a75c9c05
4 changed files with 4 additions and 6 deletions

View file

@ -32,11 +32,10 @@
animation: fadeIn 0.2s; animation: fadeIn 0.2s;
z-index: 16; z-index: 16;
} }
.board-wrapper .board-canvas.is-dragging-active .open-minicard-composer,
.board-wrapper .board-canvas.is-dragging-active .minicard-wrapper.is-checked { .board-wrapper .board-canvas.is-dragging-active .minicard-wrapper.is-checked {
display: none; display: none;
} }
@media screen and (max-width: 800px) { @media screen and (max-width: 250px) {
.board-wrapper .board-canvas .swimlane { .board-wrapper .board-canvas .swimlane {
border-bottom: 1px solid #ccc; border-bottom: 1px solid #ccc;
display: flex; display: flex;

View file

@ -6,7 +6,7 @@
background: #dedede; background: #dedede;
border-left: 1px solid #ccc; border-left: 1px solid #ccc;
padding: 0; padding: 0;
float: left; float: left;
min-width: 270px; min-width: 270px;
max-width: 270px; max-width: 270px;
/* Reverted incomplete change list width: */ /* Reverted incomplete change list width: */
@ -159,7 +159,7 @@
#js-wip-limit-edit div { #js-wip-limit-edit div {
float: left; float: left;
} }
@media screen and (max-width: 800px) { @media screen and (max-width: 250px) {
.mini-list { .mini-list {
flex: 0 0 60px; flex: 0 0 60px;
height: auto; height: auto;

View file

@ -46,7 +46,6 @@
background: #dedede; background: #dedede;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
overflow: 0;
max-height: calc(100% - 26px); max-height: calc(100% - 26px);
} }
.swimlane.placeholder { .swimlane.placeholder {

View file

@ -255,7 +255,7 @@ Utils = {
isMiniScreen() { isMiniScreen() {
// OLD WINDOW WIDTH DETECTION: // OLD WINDOW WIDTH DETECTION:
this.windowResizeDep.depend(); this.windowResizeDep.depend();
return $(window).width() <= 800; return $(window).width() <= 250;
}, },
isTouchScreen() { isTouchScreen() {