mirror of
https://github.com/wekan/wekan.git
synced 2026-02-03 07:01:47 +01:00
Merge pull request #5573 from NadavTasher/feature/hide-scrollbars-in-card-details-and-lists
Hide scrollbars where they interrupt
This commit is contained in:
commit
4ec0e63d99
2 changed files with 8 additions and 0 deletions
|
|
@ -90,6 +90,10 @@
|
|||
transition: flex-basis 0.1s;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.card-details::-webkit-scrollbar {
|
||||
/* Hide scroll bars from middle of the screen */
|
||||
display: none !important;
|
||||
}
|
||||
.card-details .mCustomScrollBox {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -148,6 +148,10 @@
|
|||
overflow-y: auto;
|
||||
padding: 5px 11px;
|
||||
}
|
||||
.list-body::-webkit-scrollbar {
|
||||
/* Hide scroll bars from middle of the screen */
|
||||
display: none !important;
|
||||
}
|
||||
.list-body .minicards {
|
||||
flex-grow: 1;
|
||||
flex-shrink: 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue