Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

Commit

Permalink
account for —open and show all comments
Browse files Browse the repository at this point in the history
  • Loading branch information
B77Mills committed Jul 25, 2022
1 parent ffe5150 commit bc2f360
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,17 @@ $bottom-gradient-height: 180px !default;
.idx-comment-stream {
&:not(.idx-comment-stream__counter--1) {
max-height: $comment-start-height;
overflow: hidden;
}
}
&--open {
.idx-comment-stream {
max-height: 100%;
overflow: visible;
&:not(.idx-comment-stream__counter--1) {
max-height: initial;
overflow: visible;
}
}
height: initial;
max-height: initial;
Expand All @@ -59,7 +64,6 @@ $bottom-gradient-height: 180px !default;

.idx-comment-stream {
$self: &;
overflow: hidden;
position: relative;
display: block;
padding-top: map-get($spacers, block);
Expand Down

0 comments on commit bc2f360

Please sign in to comment.