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
|
|
|
.button {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-29 19:31:19 +05:00
|
|
|
.controls {
|
2025-05-10 02:09:06 +02:00
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
font-size: 12px;
|
2020-05-29 19:31:19 +05:00
|
|
|
margin-top: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field {
|
2025-05-30 22:01:29 +02:00
|
|
|
textarea {
|
2025-06-07 18:03:36 +02:00
|
|
|
background: #fff !important;
|
2025-05-30 22:01:29 +02:00
|
|
|
border: 1px solid rgba(9, 30, 66, 0.13);
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
color: #333;
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 14px;
|
2025-06-07 18:03:36 +02:00
|
|
|
line-height: 1.4;
|
|
|
|
|
margin: 0 !important;
|
2025-05-30 22:01:29 +02:00
|
|
|
overflow: hidden;
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
resize: none;
|
|
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
2020-05-29 19:31:19 +05:00
|
|
|
}
|
|
|
|
|
}
|
2025-05-30 22:01:29 +02:00
|
|
|
|
|
|
|
|
.mention {
|
|
|
|
|
background-color: #f1f8ff;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.suggestion {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
2020-05-29 19:31:19 +05:00
|
|
|
}
|