mirror of
https://github.com/plankanban/planka.git
synced 2025-12-27 01:11:50 +03:00
feat: Make card descriptions expandable
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
/*!
|
||||
* Copyright (c) 2024 PLANKA Software GmbH
|
||||
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
||||
*/
|
||||
|
||||
:global(#app) {
|
||||
.toggleButton {
|
||||
box-shadow: none;
|
||||
font-weight: normal;
|
||||
margin-top: 8px;
|
||||
padding: 6px 11px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.wrapperExpanded {
|
||||
max-height: none !important;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.wrapperPartHidden {
|
||||
mask-image: linear-gradient(180deg, #000 80%, transparent);
|
||||
-webkit-mask-image: linear-gradient(180deg, #000 80%, transparent);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user