mirror of
https://github.com/lichess-org/lila.git
synced 2026-05-26 13:51:00 +00:00
73 lines
940 B
SCSS
73 lines
940 B
SCSS
.study__comments {
|
|
form p {
|
|
margin: 1em 0;
|
|
|
|
textarea {
|
|
unicode-bidi: plaintext;
|
|
}
|
|
}
|
|
|
|
.goto-current {
|
|
float: right;
|
|
}
|
|
|
|
#comment-text {
|
|
@extend %box-shadow;
|
|
|
|
height: 12em;
|
|
}
|
|
|
|
.study__wiki {
|
|
@extend %box-neat;
|
|
|
|
background: $c-bg-box;
|
|
padding: 0.8em 1em;
|
|
margin-top: 1vh;
|
|
|
|
&.empty {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.study__comment {
|
|
@extend %box-neat;
|
|
|
|
background: $c-bg-box;
|
|
padding: 0.8em 1em;
|
|
margin-bottom: 0.8em;
|
|
direction: ltr;
|
|
text-align: start;
|
|
|
|
.text {
|
|
@extend %break-word;
|
|
|
|
margin-top: 0.3em;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
display: inline-block;
|
|
unicode-bidi: plaintext;
|
|
}
|
|
|
|
.edit {
|
|
float: right;
|
|
line-height: 1;
|
|
margin-inline-start: 8px;
|
|
opacity: 0.7;
|
|
display: none;
|
|
}
|
|
|
|
&:hover .edit {
|
|
display: block;
|
|
}
|
|
|
|
.edit:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.user-link,
|
|
.node {
|
|
font-weight: bold;
|
|
}
|
|
}
|