css: Remove copy code button outline.

Added styling to show no outline around the copy to clipboard button on click. 

Previously, when clicking this button, a rectangular outline appeared around 
the button, which didn't look good, since a 'Copied!' message was already displayed.

Fixes #25533.
This commit is contained in:
Josiah Kievit 2023-05-19 13:09:10 -07:00 committed by GitHub
parent 6e3e8c9ede
commit 28c5c64b8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -593,6 +593,11 @@
position: absolute;
right: 2px;
margin-top: -4px;
/* Remove the outline when clicking on the copy-to-clipboard button */
&:focus {
outline: none;
}
}
.code_external_link {