0
0
Fork 0

Add prominent share/copy button on profiles in web UI (#27865)

This commit is contained in:
Eugen Rochko 2023-11-16 11:23:14 +01:00 committed by GitHub
parent 7232d4750d
commit 87696ea26e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 81 additions and 9 deletions

View file

@ -286,6 +286,17 @@
font-size: 12px;
font-weight: 500;
}
&.copyable {
transition: all 300ms linear;
}
&.copied {
border-color: $valid-value-color;
color: $valid-value-color;
transition: none;
background-color: rgba($valid-value-color, 0.15);
}
}
.text-icon-button {
@ -7373,6 +7384,16 @@ noscript {
width: 24px;
height: 24px;
}
&.copied {
border-color: $valid-value-color;
}
}
@media screen and (width <= 427px) {
.optional {
display: none;
}
}
}