1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-30 10:39:46 +02:00

fix: Fix mentions input styles

This commit is contained in:
Maksim Eltyshev 2025-07-24 15:40:17 +02:00
parent 5beafca07e
commit 001621eec7
3 changed files with 7 additions and 20 deletions

View file

@ -16,23 +16,16 @@
} }
.field { .field {
background: #fff;
border-radius: 3px;
textarea { textarea {
background: #fff !important;
border: 1px solid rgba(9, 30, 66, 0.13); border: 1px solid rgba(9, 30, 66, 0.13);
border-radius: 3px; border-radius: 3px;
box-sizing: border-box;
color: #333; color: #333;
display: block;
font-size: 14px;
line-height: 1.4; line-height: 1.4;
margin: 0 !important; margin: 0 !important;
overflow: hidden;
padding: 8px 12px; padding: 8px 12px;
resize: none;
&:focus {
outline: none;
}
} }
} }

View file

@ -10,23 +10,16 @@
} }
.field { .field {
background: #fff;
border-radius: 3px;
textarea { textarea {
background: #fff !important;
border: 1px solid rgba(9, 30, 66, 0.13); border: 1px solid rgba(9, 30, 66, 0.13);
border-radius: 3px; border-radius: 3px;
box-sizing: border-box;
color: #333; color: #333;
display: block;
font-size: 14px;
line-height: 1.4; line-height: 1.4;
margin: 0 !important; margin: 0 !important;
overflow: hidden;
padding: 8px 12px; padding: 8px 12px;
resize: none;
&:focus {
outline: none;
}
} }
} }

View file

@ -21,6 +21,7 @@
&__suggestions { &__suggestions {
border: 1px solid #d4d4d5; border: 1px solid #d4d4d5;
border-radius: 3px; border-radius: 3px;
border-width: 0;
box-shadow: 0 8px 16px -4px rgba(9, 45, 66, 0.25), box-shadow: 0 8px 16px -4px rgba(9, 45, 66, 0.25),
0 0 0 1px rgba(9, 45, 66, 0.08); 0 0 0 1px rgba(9, 45, 66, 0.08);
max-height: 200px; max-height: 200px;