2020-07-16 13:59:26 +00:00
|
|
|
.copy-button {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding: 8px 8px 8px 16px;
|
2021-06-10 12:48:44 +00:00
|
|
|
margin-top: 5px;
|
2020-07-16 13:59:26 +00:00
|
|
|
width: calc(100% - 24px);
|
|
|
|
height: 24px;
|
|
|
|
|
|
|
|
background: #0376DA;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: #278ADF;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-content {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
max-width: 292px;
|
2020-07-23 08:16:40 +00:00
|
|
|
margin-right: 16px;
|
2020-07-16 13:59:26 +00:00
|
|
|
|
|
|
|
&.selected {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.clicked {
|
|
|
|
background: #31B76A;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > div > svg > path {
|
|
|
|
fill: #fff;
|
|
|
|
}
|
|
|
|
}
|