prolab-api/vendor/bower-asset/bootstrap/site/assets/scss/_clipboard-js.scss

45 lines
607 B
SCSS
Raw Normal View History

2025-09-24 06:24:52 +00:00
// clipboard.js
//
// JS-based `Copy` buttons for code snippets.
.bd-clipboard,
.bd-edit {
position: relative;
display: none;
float: right;
+ .highlight {
margin-top: 0;
}
@include media-breakpoint-up(md) {
display: block;
}
}
.btn-clipboard,
.btn-edit {
display: block;
padding: .5em;
line-height: 1;
2025-10-03 11:00:05 +00:00
color: $gray-900;
background-color: $gray-100;
2025-09-24 06:24:52 +00:00
border: 0;
@include border-radius(.25rem);
&:hover {
2025-10-03 11:00:05 +00:00
color: $primary;
2025-09-24 06:24:52 +00:00
}
&:focus {
z-index: 3;
}
}
.btn-clipboard {
position: relative;
z-index: 2;
2025-10-03 11:00:05 +00:00
margin-top: .75rem;
2025-09-24 06:24:52 +00:00
margin-right: .75rem;
}