diff -r 3e61d1c8acd3 -r a6db5e626850 src_js/iconolab-bundle/src/components/editor/Comment.vue --- a/src_js/iconolab-bundle/src/components/editor/Comment.vue Wed Mar 01 15:46:18 2017 +0100 +++ b/src_js/iconolab-bundle/src/components/editor/Comment.vue Wed Mar 01 17:18:53 2017 +0100 @@ -1,16 +1,18 @@ @@ -40,6 +42,15 @@ } }, computed: { + commentClass: function(){ + var c = []; + + if (this.level > 0) { + c = [ "comment-thread" ] + } + + return c; + }, dateFormatted: function () { var date = moment(this.date); //.format("HH:mm DD/MM/YYYY"); @@ -57,9 +68,17 @@