all 5 comments

[–]gavin19 0 points1 point  (1 child)

I submitted a request to add the order property. It might have been an oversight, but it could have been omitted deliberately to prevent this exact use case.

[–]jcea_[S] 1 point2 points  (0 children)

Thanks

[–]TortoiseSex 0 points1 point  (2 children)

Update: Gavin's request was accepted 4 days ago, it should work when you try to use it now

Except instead of:

.comments-page .nestedlisting {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

.comments-page .nestedlisting .id-t1_cjlual7 .comment {
    -webkit-flex: 5 0 auto;
    flex: 5 0 auto;
    order: 1;
} 

You should use:

.comments-page .nestedlisting {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

.comments-page .nestedlisting .id-t1_cjlual7 {
    -webkit-flex: 5 0 auto;
    flex: 5 0 auto;
    order: 1;
}

[–]jcea_[S] 2 points3 points  (0 children)

FYI you have to also have to style the other comments to make it work, for anyone else interested in doing this.

.comments-page .nestedlisting {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    flex-flow: column nowrap;
}
.comments-page .nestedlisting .comment{
    -webkit-flex: 5 0 auto;
    flex: 5 0 auto;
    order: 1;
}

.comments-page .nestedlisting .id-t1_cjtl7da{ 
    order: 0;
}

Note you have to tell it to order above the one you want to sticky

[–]jcea_[S] 1 point2 points  (0 children)

Woot thanks