66 lines
1.1 KiB
SCSS
66 lines
1.1 KiB
SCSS
/*!
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
:global(#app) {
|
|
.actionButton {
|
|
background: transparent;
|
|
box-shadow: none;
|
|
color: #6b808c;
|
|
font-weight: normal;
|
|
margin-top: 8px;
|
|
padding: 6px 11px;
|
|
text-align: left;
|
|
text-decoration: underline;
|
|
transition: background 0.3s ease;
|
|
|
|
&:hover {
|
|
background: #e9e9e9;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
|
|
.value input {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.valueWrapper {
|
|
position: relative;
|
|
|
|
&:hover:not(:has(input:focus)) {
|
|
.copyButton {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
}
|