Author: swapnilmmane
Date: Sat Jun 22 09:17:10 2019 New Revision: 1861827 URL: http://svn.apache.org/viewvc?rev=1861827&view=rev Log: Applied fix from trunk for revision: 1861824 === Fixed: UI issue on the Contact Us page of ecommerce application (OFBIZ-11061) Steps to regenerate: 1. Navigate to https://demo-trunk.ofbiz.apache.org/ecomseo/ 2. Click on Login 3. Enter valid username and password 4. Click on login button 5. Click on Contact Us Actual: From, subject and message label are not displayed properly on some resolution. Note: This issue is resolution specific if you are unable to generate the issue then increase the resolution of your screen or zoom in the page on browser Thanks: Arpit Mor for reporting and Sasikant Biswal for providing the patch. Modified: ofbiz/ofbiz-plugins/branches/release17.12/ (props changed) ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/template/customer/NewMsg.ftl Propchange: ofbiz/ofbiz-plugins/branches/release17.12/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Sat Jun 22 09:17:10 2019 @@ -11,4 +11,4 @@ /ofbiz/branches/multitenant20100310/plugins:921280-927264 /ofbiz/branches/release13.07/plugins:1547657 /ofbiz/ofbiz-framework/trunk:1836107 -/ofbiz/ofbiz-plugins/trunk:1819576,1819580,1819582,1819589,1820962,1820973,1821045,1821049,1821051,1822129,1822133,1822139,1822143,1822145,1822389,1822391,1822395,1824646,1824648,1824650,1824654,1828569,1830856,1831084,1832727,1832800,1837796,1837845,1837857,1838249,1838381,1838816,1841650,1845558,1847272,1847346,1847398,1847528,1847530,1848009,1848396,1848398,1848921,1849119,1851002,1851068,1851135,1851185,1852988,1855082,1856802,1856917,1857120,1857173,1858141,1858244,1858285,1858312,1859012,1859735,1859893,1859906,1860648,1860801 +/ofbiz/ofbiz-plugins/trunk:1819576,1819580,1819582,1819589,1820962,1820973,1821045,1821049,1821051,1822129,1822133,1822139,1822143,1822145,1822389,1822391,1822395,1824646,1824648,1824650,1824654,1828569,1830856,1831084,1832727,1832800,1837796,1837845,1837857,1838249,1838381,1838816,1841650,1845558,1847272,1847346,1847398,1847528,1847530,1848009,1848396,1848398,1848921,1849119,1851002,1851068,1851135,1851185,1852988,1855082,1856802,1856917,1857120,1857173,1858141,1858244,1858285,1858312,1859012,1859735,1859893,1859906,1860648,1860801,1861824 Modified: ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/template/customer/NewMsg.ftl URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/template/customer/NewMsg.ftl?rev=1861827&r1=1861826&r2=1861827&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/template/customer/NewMsg.ftl (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/template/customer/NewMsg.ftl Sat Jun 22 09:17:10 2019 @@ -46,10 +46,10 @@ under the License. <input type="hidden" name="origCommEventId" value="${orgComm}"/> </#if> <div class="row"> - <div class="col-1"> + <div class="col-2"> <strong>${uiLabelMap.CommonFrom} :</strong> </div> - <div class="col-11"> + <div class="col-10"> ${sessionAttributes.autoName!} [${userLogin.partyId}] (${uiLabelMap.CommonNotYou}? <a href="<@ofbizUrl>autoLogout</@ofbizUrl>" class="buttontext">${uiLabelMap.CommonClickHere}</a>) </div> @@ -60,13 +60,14 @@ under the License. Static["org.apache.ofbiz.party.party.PartyHelper"].getPartyName(delegator, partyIdTo, true)> <input type="hidden" name="partyIdTo" value="${partyIdTo}"/> <div class="row"> - <div class="col-1"> + <div class="col-2"> <strong>${uiLabelMap.CommonTo} :</strong> </div> - <div class="col-11"> + <div class="col-10"> ${partyToName?default("N/A")} </div> </div> + <hr/> </#if> <#assign defaultSubject = (communicationEvent.subject)?default("")> <#if (defaultSubject?length == 0)> @@ -79,19 +80,19 @@ under the License. </#if> </#if> <div class="row"> - <div class="col-1"> + <div class="col-2"> <strong>${uiLabelMap.EcommerceSubject} :</strong> </div> - <div class="col-11"> + <div class="col-10"> <input type="input" class="inputBox form-control form-control-sm" name="subject" size="20" value="${defaultSubject}"/> </div> </div> <hr/> <div class="row"> - <div class="col-1"> + <div class="col-2"> <strong>${uiLabelMap.CommonMessage} :</strong> </div> - <div class="col-11"> + <div class="col-10"> <textarea name="content" class="textAreaBox form-control form-control-sm" rows="5"></textarea> </div> </div> |
Free forum by Nabble | Edit this page |