# HG changeset patch # User duong tam kien # Date 1488385133 -3600 # Node ID a6db5e626850da512d8564d29369440aaffce389 # Parent 3e61d1c8acd3ca40c4703f40b2b42cb6b08b595f sizes up panels and get closer to the mockup diff -r 3e61d1c8acd3 -r a6db5e626850 src/iconolab/templates/iconolab/detail_image.html --- a/src/iconolab/templates/iconolab/detail_image.html Wed Mar 01 15:46:18 2017 +0100 +++ b/src/iconolab/templates/iconolab/detail_image.html Wed Mar 01 17:18:53 2017 +0100 @@ -81,14 +81,14 @@ action="{% url 'annotation_edit' collection_name image_guid ':annotation_guid' %}"> {% csrf_token %} +
+ +
-
- -
@@ -242,4 +242,3 @@ {% endblock %} - 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 @@ diff -r 3e61d1c8acd3 -r a6db5e626850 src_js/iconolab-bundle/src/components/editor/CommentList.vue --- a/src_js/iconolab-bundle/src/components/editor/CommentList.vue Wed Mar 01 15:46:18 2017 +0100 +++ b/src_js/iconolab-bundle/src/components/editor/CommentList.vue Wed Mar 01 17:18:53 2017 +0100 @@ -46,8 +46,9 @@