1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00

feat: Implemented moving a list between boards with instant UI update. Fixed authorization for socket requests (automatic token injection). After moving a list, user is automatically switched to the target board. Added translations for the new move list action to all locale files.

This commit is contained in:
symonbaikov 2025-06-11 14:17:12 +03:00
parent 18c7ff093b
commit 9c08ce51f1
39 changed files with 331 additions and 171 deletions

View file

@ -14,3 +14,34 @@
padding-left: 14px;
}
}
.boardSelectStep {
padding: 0;
}
.boardButton {
display: block;
width: 100%;
padding: 9px 0;
border: none;
border-radius: 0.28571429rem !important;
font-size: 15px;
color: #234;
text-align: center;
cursor: pointer;
background: none;
transition: background 0.2s;
}
.boardButton:hover,
.boardButton:focus {
background: #f4f6f8;
color: #16324a;
}
.noBoards {
color: #888;
text-align: center;
padding: 0;
font-size: 15px;
}