mirror of
https://github.com/plankanban/planka.git
synced 2025-07-27 09:09:46 +02:00
Make columns itself scrollable, fix action creation when moving card, little refactoring
This commit is contained in:
parent
66c570f234
commit
3a1929efba
44 changed files with 549 additions and 438 deletions
|
@ -1,6 +1,7 @@
|
|||
.addCardButton {
|
||||
background: none !important;
|
||||
background: #dfe3e6 !important;
|
||||
border: none !important;
|
||||
border-radius: 0 0 3px 3px !important;
|
||||
color: #6b808c !important;
|
||||
cursor: pointer;
|
||||
display: block !important;
|
||||
|
@ -8,18 +9,14 @@
|
|||
flex: 0 0 auto;
|
||||
font-weight: normal !important;
|
||||
height: 36px !important;
|
||||
margin: 0 -8px !important;
|
||||
outline: none !important;
|
||||
padding: 8px !important;
|
||||
text-align: left !important;
|
||||
width: calc(100% + 16px);
|
||||
}
|
||||
|
||||
.addCardButton:active {
|
||||
outline: none !important;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.addCardButton:hover {
|
||||
background-color: #092d4221 !important;
|
||||
background-color: #c3cbd0 !important;
|
||||
color: #17394d !important;
|
||||
fill: #17394d !important;
|
||||
}
|
||||
|
@ -40,6 +37,7 @@
|
|||
|
||||
.cards {
|
||||
flex: 1 1 auto;
|
||||
min-height: 1px;
|
||||
}
|
||||
|
||||
.header {
|
||||
|
@ -96,18 +94,48 @@
|
|||
|
||||
.list {
|
||||
background: #dfe3e6 !important;
|
||||
border-radius: 0 0 3px 3px !important;
|
||||
box-sizing: border-box !important;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 0 8px !important;
|
||||
position: relative !important;
|
||||
white-space: normal !important;
|
||||
width: 272px;
|
||||
}
|
||||
|
||||
.listWrapper {
|
||||
background: #dfe3e6;
|
||||
max-height: calc(100vh - 300px);
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
width: 290px;
|
||||
}
|
||||
|
||||
.listWrapper:hover {
|
||||
width: 272px;
|
||||
}
|
||||
|
||||
.listWrapper::-webkit-scrollbar {
|
||||
width: 5px;
|
||||
}
|
||||
|
||||
.listWrapper::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.listWrapper::-webkit-scrollbar-thumb {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.listWrapperFull {
|
||||
max-height: calc(100vh - 264px);
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
border-radius: 3px;
|
||||
flex: 0 0 auto;
|
||||
margin: 0 4px !important;
|
||||
overflow: hidden;
|
||||
vertical-align: top !important;
|
||||
width: 272px !important;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue