mirror of
https://github.com/go-gitea/gitea.git
synced 2026-02-11 22:38:56 +00:00
Fix #25803 Now the rendered mermaid chart can be dragged or zoomed. --------- Signed-off-by: silverwind <me@silverwind.io> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
41 lines
1.0 KiB
CSS
41 lines
1.0 KiB
CSS
.markup .code-copy {
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 6px;
|
|
padding: 9px;
|
|
visibility: hidden; /* prevent from click events even opacity=0 */
|
|
opacity: 0;
|
|
transition: var(--transition-hover-fade);
|
|
}
|
|
|
|
/* adjustments for comment content having only 14px font size */
|
|
.repository.view.issue .comment-list .comment .markup .code-copy {
|
|
right: 5px;
|
|
padding: 8px;
|
|
}
|
|
|
|
/* can not use regular transparent button colors for hover and active states because
|
|
we need opaque colors here as code can appear behind the button */
|
|
.markup .code-copy:hover {
|
|
background: var(--color-secondary) !important;
|
|
}
|
|
|
|
.markup .code-copy:active {
|
|
background: var(--color-secondary-dark-1) !important;
|
|
}
|
|
|
|
/* all rendered code-block elements are in their container,
|
|
the manually written code-block elements on "packages" pages don't have the container */
|
|
.markup .code-block-container:hover .code-copy,
|
|
.markup .code-block:hover .code-copy {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
|
|
@media (hover: none) {
|
|
.markup .code-copy {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
}
|