You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ad...@apache.org on 2018/07/11 07:26:46 UTC

svn commit: r1835613 - /ofbiz/ofbiz-framework/trunk/themes/tomahawk/webapp/tomahawk/css/style.css

Author: adityasharma
Date: Wed Jul 11 07:26:45 2018
New Revision: 1835613

URL: http://svn.apache.org/viewvc?rev=1835613&view=rev
Log:
Fixed: Upper case styling for buttontext in Tomahawk theme causing wrong behaviour for alphabetical index of the service engine page
(OFBIZ-10473)
As discussed on OFBIZ-10467, override the upper case styling with a more specific rule in Tomahawk theme to avoid upper casing of small case letters for alphabetical index of the service engine page
Thanks: Dennis Balkir, Pierre Smits & Jacques Le Roux for the discussion

Modified:
    ofbiz/ofbiz-framework/trunk/themes/tomahawk/webapp/tomahawk/css/style.css

Modified: ofbiz/ofbiz-framework/trunk/themes/tomahawk/webapp/tomahawk/css/style.css
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/themes/tomahawk/webapp/tomahawk/css/style.css?rev=1835613&r1=1835612&r2=1835613&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/themes/tomahawk/webapp/tomahawk/css/style.css (original)
+++ ofbiz/ofbiz-framework/trunk/themes/tomahawk/webapp/tomahawk/css/style.css Wed Jul 11 07:26:45 2018
@@ -4526,4 +4526,8 @@ html > /**/ body .jstree-default a {
     border-radius: 0px;
     border-color: #848484 #c1c1c1 #e1e1e1;
     min-height: unset !important;
+}
+
+.button-bar > a.buttontext {
+    text-transform:none!important;
 }
\ No newline at end of file