mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-12 00:08:59 +01:00
63b8a6ffdd
Backport of #31036 to v4
37 lines
565 B
SCSS
37 lines
565 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(65%);
|
|
color: $primary;
|
|
background-color: $white;
|
|
border: 1px solid;
|
|
@include border-radius();
|
|
|
|
&:hover {
|
|
color: $white;
|
|
background-color: $primary;
|
|
}
|
|
}
|