2025-05-10 02:09:06 +02:00
|
|
|
/*!
|
|
|
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
|
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
|
|
|
*/
|
|
|
|
|
|
2020-05-29 19:31:19 +05:00
|
|
|
:global(#app) {
|
2025-05-10 02:09:06 +02:00
|
|
|
.count {
|
|
|
|
|
color: #8c8c8c;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-29 19:31:19 +05:00
|
|
|
.progress {
|
2025-07-21 19:33:02 +03:00
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progressRow {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 16px;
|
2020-05-29 19:31:19 +05:00
|
|
|
}
|
|
|
|
|
|
2023-10-21 00:50:04 +05:30
|
|
|
.progressWrapper {
|
|
|
|
|
padding: 3px 0;
|
2025-07-21 19:33:02 +03:00
|
|
|
width: 100%;
|
2023-10-21 00:50:04 +05:30
|
|
|
}
|
|
|
|
|
|
2025-05-10 02:09:06 +02:00
|
|
|
.tasks {
|
|
|
|
|
min-height: 1px;
|
2023-10-21 00:50:04 +05:30
|
|
|
}
|
|
|
|
|
|
2020-05-29 19:31:19 +05:00
|
|
|
.taskButton {
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
color: #6b808c;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 6px;
|
|
|
|
|
min-height: 54px;
|
|
|
|
|
outline: none;
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
position: relative;
|
|
|
|
|
text-align: left;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background: rgba(9, 30, 66, 0.04);
|
|
|
|
|
color: #092d42;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.taskButtonText {
|
2025-07-21 18:50:44 +02:00
|
|
|
font-size: 14px;
|
2020-05-29 19:31:19 +05:00
|
|
|
position: absolute;
|
|
|
|
|
top: 12px;
|
|
|
|
|
}
|
|
|
|
|
}
|