29 lines
488 B
SCSS
29 lines
488 B
SCSS
:host ::ng-deep .comment-box {
|
|
height: 4rem;
|
|
|
|
overflow-y: scroll;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.mention {
|
|
--mention-color: blue;
|
|
|
|
display: inline-block;
|
|
position: relative;
|
|
|
|
&:not(.ignore) {
|
|
color: var(--mention-color);
|
|
background-color: transparent;
|
|
font-style: italic;
|
|
font-size: 0.8rem;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
|
|
:host.floating span {
|
|
opacity: 1;
|
|
}
|