File size: 351 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
.clipboard-button-input {
position: relative;
}
.clipboard-button-input .clipboard-button {
position: absolute;
top: 50%;
right: 4px;
transform: translateY(-50%);
overflow: visible;
&:not(:disabled)::before {
@include long-content-fade( $size: 16px );
right: auto;
left: -17px;
}
&:focus::before {
right: auto;
left: -19px;
}
}
|