1ddffb4162
* ui: Renames CopyButtonFeedback to CopyButton and use it everywhere * Uncapitalize output * Remove the ability to set the contents via an attr, and.. ..change the attribute for the string that gets copied to be called 'value' so it feels like HTML
21 lines
441 B
SCSS
21 lines
441 B
SCSS
@import './feedback-dialog/index';
|
|
.with-feedback {
|
|
@extend %feedback-dialog-inline;
|
|
}
|
|
%feedback-dialog-inline .feedback-dialog-out {
|
|
@extend %blink-in-fade-out;
|
|
transition-delay: 3s;
|
|
}
|
|
@media #{$--lt-spacious-page-header} {
|
|
.actions .with-feedback p {
|
|
bottom: auto;
|
|
top: 0px;
|
|
}
|
|
.actions .with-feedback p::after {
|
|
bottom: auto;
|
|
top: -13px !important;
|
|
border-bottom-width: 18px;
|
|
border-top-width: 0;
|
|
}
|
|
}
|