mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
75f12bfe78
To add a Copy button wrap code snippet with the following element: ``` <div class="with-copy" markdown="1"> <your-code-snippet> </div> ``` See the changes to `Kubernetes monitoring with VictoriaMetrics Single` for details.
23 lines
No EOL
491 B
CSS
23 lines
No EOL
491 B
CSS
/* modification for button copy */
|
|
.btn-copy {
|
|
position: absolute;
|
|
color: #FFF;
|
|
background: rgba(0, 0, 0, .15);
|
|
border: 0;
|
|
padding: 2px 10px;
|
|
cursor: pointer;
|
|
right: 0px;
|
|
top: 0px;
|
|
}
|
|
|
|
.btn-copy:hover {
|
|
background: rgba(0, 0, 0, .25);
|
|
}
|
|
|
|
/* shift snippet syntax type label if Copy button is enabled */
|
|
.with-copy div.highlighter-rouge:after {
|
|
right: 50px !important;
|
|
}
|
|
.markdown-body .highlight pre, .markdown-body pre {
|
|
padding: 20px !important;
|
|
} |