0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/site/assets/scss/_clipboard-js.scss

37 lines
567 B
SCSS
Raw Normal View History

// clipboard.js
//
2016-07-20 09:07:18 +02:00
// 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;
}
}
2015-08-14 09:47:41 +02:00
.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();
2015-08-14 09:47:41 +02:00
&:hover {
color: $white;
background-color: $primary;
}
}