mirror of https://github.com/zulip/zulip.git
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:
parent
6e3e8c9ede
commit
28c5c64b8d
|
@ -593,6 +593,11 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 2px;
|
right: 2px;
|
||||||
margin-top: -4px;
|
margin-top: -4px;
|
||||||
|
|
||||||
|
/* Remove the outline when clicking on the copy-to-clipboard button */
|
||||||
|
&:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.code_external_link {
|
.code_external_link {
|
||||||
|
|
Loading…
Reference in New Issue