Author: deepak
Date: Sat Jan 13 06:41:21 2018 New Revision: 1821044 URL: http://svn.apache.org/viewvc?rev=1821044&view=rev Log: Improved: Message page markup improvement (OFBIZ-10090) Thanks Nitish Mishra for your contribution Modified: ofbiz/ofbiz-plugins/trunk/ecommerce/template/customer/MessageDetail.ftl ofbiz/ofbiz-plugins/trunk/ecommerce/template/customer/MessageList.ftl Modified: ofbiz/ofbiz-plugins/trunk/ecommerce/template/customer/MessageDetail.ftl URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/ecommerce/template/customer/MessageDetail.ftl?rev=1821044&r1=1821043&r2=1821044&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/trunk/ecommerce/template/customer/MessageDetail.ftl (original) +++ ofbiz/ofbiz-plugins/trunk/ecommerce/template/customer/MessageDetail.ftl Sat Jan 13 06:41:21 2018 @@ -29,15 +29,13 @@ under the License. <div class="card m-3"> <div class="card-header"> - <div class="boxlink"> + <strong>${uiLabelMap.EcommerceReadMessage}</strong> <#if (communicationEvent.partyIdFrom! != (userLogin.partyId)!)> <a href="<@ofbizUrl>newmessage?communicationEventId=${communicationEvent.communicationEventId}</@ofbizUrl>" - class="submenutext">${uiLabelMap.PartyReply} + class="float-right">${uiLabelMap.PartyReply} </a> </#if> - <a href="<@ofbizUrl>messagelist</@ofbizUrl>" class="submenutextright">${uiLabelMap.EcommerceViewList}</a> - </div> - <strong>${uiLabelMap.EcommerceReadMessage}</strong> + <a href="<@ofbizUrl>messagelist</@ofbizUrl>" class="float-right">${uiLabelMap.EcommerceViewList}</a> </div> <div class="card-body"> <div class="row"> Modified: ofbiz/ofbiz-plugins/trunk/ecommerce/template/customer/MessageList.ftl URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/ecommerce/template/customer/MessageList.ftl?rev=1821044&r1=1821043&r2=1821044&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/trunk/ecommerce/template/customer/MessageList.ftl (original) +++ ofbiz/ofbiz-plugins/trunk/ecommerce/template/customer/MessageList.ftl Sat Jan 13 06:41:21 2018 @@ -62,18 +62,16 @@ under the License. <div class="card"> <div class="card-header"> - <div class="boxlink"> - <#if "true" == parameters.showSent!> - <a href="<@ofbizUrl>messagelist</@ofbizUrl>" class="submenutextright"> - ${uiLabelMap.EcommerceViewReceivedOnly} - </a> - <#else> - <a href="<@ofbizUrl>messagelist?showSent=true</@ofbizUrl>" class="submenutextright"> - ${uiLabelMap.EcommerceViewSent} - </a> - </#if> - </div> <strong>${uiLabelMap.CommonMessages}</strong> + <#if "true" == parameters.showSent!> + <a href="<@ofbizUrl>messagelist</@ofbizUrl>" class="float-right"> + ${uiLabelMap.EcommerceViewReceivedOnly} + </a> + <#else> + <a href="<@ofbizUrl>messagelist?showSent=true</@ofbizUrl>" class="float-right"> + ${uiLabelMap.EcommerceViewSent} + </a> + </#if> </div> <div class="card-body"> <table class="table table-responsive-sm"> @@ -82,7 +80,7 @@ under the License. ${uiLabelMap.EcommerceNoMessages}. </div> <#else> - <thead> + <thead class="thead-light"> <tr> <th> ${uiLabelMap.CommonFrom} |
Free forum by Nabble | Edit this page |