mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
23 lines
491 B
CSS
23 lines
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;
|
||
|
}
|