Files
webawesome/docs/assets/styles/copy-code.css

30 lines
587 B
CSS
Raw Normal View History

wa-copy-button.copy-button {
--background-color: var(--wa-color-gray-20);
--background-color-hover: color-mix(in oklab, var(--background-color), white 5%);
2024-04-17 11:20:27 -04:00
position: absolute;
top: 0.25rem;
right: 0.25rem;
font-family: var(--wa-font-family-body);
color: var(--wa-color-gray-80);
2024-05-29 18:02:01 -04:00
border-radius: var(--wa-border-radius-s);
2024-04-17 11:20:27 -04:00
padding: 0.25rem;
&:hover {
color: white;
2024-04-17 11:20:27 -04:00
}
&:focus-visible {
outline: var(--wa-focus-ring);
}
}
@media (hover: hover) {
.copy-button:not(:focus-within) {
opacity: 0;
}
pre:hover > .copy-button {
opacity: 1;
}
}