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
|
|
|
.addCardButton {
|
2020-05-29 19:31:19 +05:00
|
|
|
background: rgba(0, 0, 0, 0.24);
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
color: rgba(255, 255, 255, 0.72);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
fill: rgba(255, 255, 255, 0.72);
|
2025-12-09 14:58:01 +01:00
|
|
|
flex: 1;
|
2020-05-29 19:31:19 +05:00
|
|
|
font-weight: normal;
|
|
|
|
|
height: 42px;
|
2025-12-09 14:58:01 +01:00
|
|
|
margin: 0;
|
2025-05-10 02:09:06 +02:00
|
|
|
min-height: 42px;
|
2020-05-29 19:31:19 +05:00
|
|
|
padding: 11px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
transition: background 85ms ease-in, opacity 40ms ease-in,
|
|
|
|
|
border-color 85ms ease-in;
|
|
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background: rgba(0, 0, 0, 0.32);
|
|
|
|
|
}
|
2025-12-09 14:58:01 +01:00
|
|
|
|
|
|
|
|
&.paste {
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
}
|
2020-05-29 19:31:19 +05:00
|
|
|
}
|
|
|
|
|
|
2025-05-10 02:09:06 +02:00
|
|
|
.addCardButtonIcon {
|
2020-05-29 19:31:19 +05:00
|
|
|
height: 20px;
|
|
|
|
|
padding: 0.64px;
|
|
|
|
|
width: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-10 02:09:06 +02:00
|
|
|
.addCardButtonText {
|
2020-05-29 19:31:19 +05:00
|
|
|
display: inline-block;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-09 14:58:01 +01:00
|
|
|
.addCardButtonWrapper {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-10 02:09:06 +02:00
|
|
|
.card {
|
|
|
|
|
background: rgba(223, 227, 230, 0.8);
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
padding: 4px;
|
2020-05-29 19:31:19 +05:00
|
|
|
}
|
|
|
|
|
|
2025-05-10 02:09:06 +02:00
|
|
|
.loaderWrapper {
|
|
|
|
|
margin: 40px 0;
|
2021-06-24 01:05:22 +05:00
|
|
|
}
|
|
|
|
|
|
2020-05-29 19:31:19 +05:00
|
|
|
.wrapper {
|
2025-05-10 02:09:06 +02:00
|
|
|
overflow-y: scroll;
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
@supports (-moz-appearance: none) {
|
|
|
|
|
scrollbar-color: rgba(0, 0, 0, 0.32) rgba(0, 0, 0, 0.08);
|
|
|
|
|
}
|
2020-05-29 19:31:19 +05:00
|
|
|
}
|
|
|
|
|
}
|