mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
0e007e697e
* Add top/bottom margin to highlighted code samples provide more space to avoid having the "Copy" button overlap code sample content * Modify clipboard button style Per https://github.com/twbs/bootstrap/pull/31036#issuecomment-661322566 and https://github.com/twbs/bootstrap/pull/31036#issuecomment-668162630 * Tweak margin, clipboard button size and position Co-authored-by: XhmikosR <xhmikosr@gmail.com>
37 lines
567 B
SCSS
37 lines
567 B
SCSS
// clipboard.js
|
|
//
|
|
// JS-based `Copy` buttons for code snippets.
|
|
|
|
.bd-clipboard {
|
|
position: relative;
|
|
display: none;
|
|
float: right;
|
|
|
|
+ .highlight {
|
|
margin-top: 0;
|
|
}
|
|
|
|
@include media-breakpoint-up(md) {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.btn-clipboard {
|
|
position: absolute;
|
|
top: .65rem;
|
|
right: .65rem;
|
|
z-index: 10;
|
|
display: block;
|
|
padding: .25rem .5rem;
|
|
@include font-size(.65em);
|
|
color: $primary;
|
|
background-color: $white;
|
|
border: 1px solid;
|
|
@include border-radius();
|
|
|
|
&:hover {
|
|
color: $white;
|
|
background-color: $primary;
|
|
}
|
|
}
|