1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00

feat: Add copy-to-clipboard for custom fields

This commit is contained in:
Maksim Eltyshev 2025-06-11 00:14:42 +02:00
parent 99a06ce1ae
commit 3126a40bba
2 changed files with 68 additions and 10 deletions

View file

@ -4,6 +4,30 @@
*/
:global(#app) {
.copyButton {
background: #ebeef0;
box-shadow: none;
border-radius: 3px;
box-sizing: content-box;
color: #516b7a;
display: none;
height: 30px;
margin: 0;
min-height: auto;
outline: none;
padding: 4px;
position: absolute;
right: 0;
top: 0;
transition: background 85ms ease;
width: 20px;
&:hover {
background: #dfe3e6;
color: #4c4c4c;
}
}
.name {
color: #6b808c;
font-size: 13px;
@ -25,4 +49,14 @@
padding: 8px 12px;
text-overflow: ellipsis;
}
.valueWrapper {
position: relative;
&:hover:not(:has(input:focus)) {
.copyButton {
display: block;
}
}
}
}