misuzu/assets/less/comments.less

43 lines
840 B
Text
Raw Normal View History

2018-08-06 22:19:35 +00:00
.comments {
margin: 1px;
overflow: hidden;
word-wrap: break-word;
2018-08-10 21:21:39 +00:00
&__listing {
overflow-y: auto;
&--limit {
--comments-max-height: 600px;
max-height: 600px;
max-height: var(--comments-max-height);
}
2018-08-10 21:21:39 +00:00
}
2018-12-11 20:42:59 +00:00
//&__input,
2018-08-10 21:21:39 +00:00
&__javascript,
&__notice--staff {
border-bottom: 1px solid @accent-colour;
2018-09-09 22:44:10 +00:00
border-bottom: 1px solid var(--accent-colour);
2018-08-06 22:19:35 +00:00
padding-bottom: 1px;
margin-bottom: 1px;
}
&__none,
&__javascript,
&__notice {
padding: 10px;
font-size: 1.2em;
text-align: center;
}
&__notice__link {
color: @accent-colour;
2018-12-15 22:19:09 +00:00
color: var(--accent-colour);
2018-08-06 22:19:35 +00:00
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}