38 lines
679 B
SCSS
38 lines
679 B
SCSS
.wysiwyg-help {
|
|
background: $whitish;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: -.5rem;
|
|
padding: .25rem .5rem;
|
|
a {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.drag-drop-help {
|
|
@include font-size(xsmall);
|
|
color: $gray;
|
|
}
|
|
|
|
.help-markdown,
|
|
.help-button {
|
|
@include font-size(xsmall);
|
|
&:hover {
|
|
span {
|
|
transition: color .2s linear;
|
|
}
|
|
.icon {
|
|
fill: $primary-light;
|
|
transition: fill .2s linear;
|
|
}
|
|
}
|
|
span {
|
|
vertical-align: text-top;
|
|
}
|
|
.icon {
|
|
@include svg-size(.9rem);
|
|
fill: $gray-light;
|
|
margin-right: .2rem;
|
|
}
|
|
}
|