mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 12:09:26 +00:00
29 lines
543 B
CSS
29 lines
543 B
CSS
.copy-button {
|
|
position: absolute;
|
|
top: 0.25rem;
|
|
right: 0.25rem;
|
|
font-family: var(--wa-font-family-body);
|
|
color: var(--wa-color-neutral-on-normal);
|
|
background-color: var(--wa-color-neutral-fill-quiet);
|
|
border-radius: var(--wa-corners-s);
|
|
padding: 0.25rem;
|
|
|
|
&:hover {
|
|
background-color: var(--wa-color-neutral-fill-normal);
|
|
}
|
|
|
|
&:focus-visible {
|
|
outline: var(--wa-focus-ring);
|
|
}
|
|
}
|
|
|
|
@media (hover: hover) {
|
|
.copy-button:not(:focus-within) {
|
|
opacity: 0;
|
|
}
|
|
|
|
pre:hover > .copy-button {
|
|
opacity: 1;
|
|
}
|
|
}
|