mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
560 B
43 lines
560 B
@import '_vars';
|
|
@import '_mixins';
|
|
|
|
.user-ref {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.item-remove {
|
|
@include absolute(-5px, -15px, auto, auto);
|
|
display: none;
|
|
}
|
|
|
|
.user-row {
|
|
& {
|
|
position: relative;
|
|
}
|
|
|
|
&:hover {
|
|
.item-remove {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
.comment {
|
|
& {
|
|
font-size: .9rem;
|
|
font-weight: normal;
|
|
margin-bottom: .75rem;
|
|
}
|
|
|
|
&-message {
|
|
margin-bottom: .375rem;
|
|
}
|
|
|
|
&-created {
|
|
font-size: .75rem;
|
|
}
|
|
}
|
|
|
|
.text-muted {
|
|
color: $color-history;
|
|
}
|