news-feed/src/main/java/org/gcube/portlets/user/newsfeed/client/templates/AddCommentTemplate.ui.xml

32 lines
853 B
XML

<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui">
<ui:style>
.important {
font-weight: bold;
}
</ui:style>
<g:HTMLPanel styleName="comment-hidden" ui:field="mainPanel">
<table class="">
<tr>
<td width="30px;" align="middle">
<g:Image styleName="member-photo" url="" ui:field="avatarImage"
width="30" height="30" />
</td>
<td>
<div class="commentContainer">
<g:TextArea styleName="post-comment" ui:field="commentTextArea" />
</div>
</td>
</tr>
<tr>
<td colspan="2" align="right">
<g:Button ui:field="cancelButton" text="Cancel" />
<g:Button ui:field="submitButton" text="Comment" />
</td>
</tr>
</table>
</g:HTMLPanel>
</ui:UiBinder>