svn commit: r936008 - in /ofbiz/trunk/themes: bizznesstime/webapp/bizznesstime/css/ bluelight/webapp/bluelight/ droppingcrumbs/webapp/droppingcrumbs/css/ flatgrey/webapp/flatgrey/ tomahawk/webapp/tomahawk/css/

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r936008 - in /ofbiz/trunk/themes: bizznesstime/webapp/bizznesstime/css/ bluelight/webapp/bluelight/ droppingcrumbs/webapp/droppingcrumbs/css/ flatgrey/webapp/flatgrey/ tomahawk/webapp/tomahawk/css/

jleroux@apache.org
Author: jleroux
Date: Tue Apr 20 17:31:15 2010
New Revision: 936008

URL: http://svn.apache.org/viewvc?rev=936008&view=rev
Log:
A patch from Sascha Rodekamp related to "The minimize/enlarge buttons (+ -) blocks the layer" (https://issues.apache.org/jira/browse/OFBIZ-3692) - OFBIZ-3692

This patch fixes also some issues with buttons inside lookups not showing. However the main reason is still not fixed in the case of lookup rendered from FTL files

Modified:
    ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/style.css
    ofbiz/trunk/themes/bluelight/webapp/bluelight/style.css
    ofbiz/trunk/themes/droppingcrumbs/webapp/droppingcrumbs/css/style.css
    ofbiz/trunk/themes/flatgrey/webapp/flatgrey/maincss.css
    ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/style.css

Modified: ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/style.css
URL: http://svn.apache.org/viewvc/ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/style.css?rev=936008&r1=936007&r2=936008&view=diff
==============================================================================
--- ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/style.css (original)
+++ ofbiz/trunk/themes/bizznesstime/webapp/bizznesstime/css/style.css Tue Apr 20 17:31:15 2010
@@ -1498,6 +1498,7 @@ Lookups
  #fieldLookupContent ul li a {
     display: inherit;
     cursor: pointer;
+    background: none;
  }
 
  #fieldLookupContent td {
@@ -1505,8 +1506,9 @@ Lookups
     padding-bottom: 5px;
  }
 
- #fieldLookupContent td ul li a {
+ #fieldLookupContent td span a {
     background: url(/images/fieldlookup.gif) no-repeat;
+    display: inline-block;
  }
 
  #fieldLookupContent td a {

Modified: ofbiz/trunk/themes/bluelight/webapp/bluelight/style.css
URL: http://svn.apache.org/viewvc/ofbiz/trunk/themes/bluelight/webapp/bluelight/style.css?rev=936008&r1=936007&r2=936008&view=diff
==============================================================================
--- ofbiz/trunk/themes/bluelight/webapp/bluelight/style.css (original)
+++ ofbiz/trunk/themes/bluelight/webapp/bluelight/style.css Tue Apr 20 17:31:15 2010
@@ -2233,7 +2233,8 @@ Lookups
 
  #fieldLookupContent ul li a {
     display: inherit;
-     cursor: pointer;
+    cursor: pointer;
+    background: none;
  }
 
  #fieldLookupContent td {
@@ -2241,8 +2242,9 @@ Lookups
     padding-bottom: 5px;
  }
 
- #fieldLookupContent td ul li a {
-    background: url(/images/fieldlookup.gif) no-repeat;
+ #fieldLookupContent td span a {
+    background: url(/bluelight/images/application_view_list.png) no-repeat;
+    display: inline-block;
  }
 
  #fieldLookupContent td a {

Modified: ofbiz/trunk/themes/droppingcrumbs/webapp/droppingcrumbs/css/style.css
URL: http://svn.apache.org/viewvc/ofbiz/trunk/themes/droppingcrumbs/webapp/droppingcrumbs/css/style.css?rev=936008&r1=936007&r2=936008&view=diff
==============================================================================
--- ofbiz/trunk/themes/droppingcrumbs/webapp/droppingcrumbs/css/style.css (original)
+++ ofbiz/trunk/themes/droppingcrumbs/webapp/droppingcrumbs/css/style.css Tue Apr 20 17:31:15 2010
@@ -2210,7 +2210,8 @@ Lookups
 /* overwrite */
  #fieldLookupContent ul li a {
     display: inherit;
-     cursor: pointer;
+    cursor: pointer;
+    background: none;
  }
 
  #fieldLookupContent td {
@@ -2218,8 +2219,9 @@ Lookups
     padding-bottom: 5px;
  }
 
- #fieldLookupContent td ul li a {
+ #fieldLookupContent td span a {
     background: url(/images/fieldlookup.gif) no-repeat;
+    display: inline-block;
  }
 
  #fieldLookupContent td a {

Modified: ofbiz/trunk/themes/flatgrey/webapp/flatgrey/maincss.css
URL: http://svn.apache.org/viewvc/ofbiz/trunk/themes/flatgrey/webapp/flatgrey/maincss.css?rev=936008&r1=936007&r2=936008&view=diff
==============================================================================
--- ofbiz/trunk/themes/flatgrey/webapp/flatgrey/maincss.css (original)
+++ ofbiz/trunk/themes/flatgrey/webapp/flatgrey/maincss.css Tue Apr 20 17:31:15 2010
@@ -2264,7 +2264,8 @@ Lookups
 /* overwrite */
  #fieldLookupContent ul li a {
     display: inherit;
-     cursor: pointer;
+    cursor: pointer;
+    background: none;
  }
 
  #fieldLookupContent td {
@@ -2272,8 +2273,9 @@ Lookups
     padding-bottom: 5px;
  }
 
- #fieldLookupContent td ul li a {
+ #fieldLookupContent td span a {
     background: url(/images/fieldlookup.gif) no-repeat;
+    display: inline-block;
  }
 
  #fieldLookupContent td a {

Modified: ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/style.css
URL: http://svn.apache.org/viewvc/ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/style.css?rev=936008&r1=936007&r2=936008&view=diff
==============================================================================
--- ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/style.css (original)
+++ ofbiz/trunk/themes/tomahawk/webapp/tomahawk/css/style.css Tue Apr 20 17:31:15 2010
@@ -2418,6 +2418,7 @@ height:95%;
 #fieldLookupContent ul li a {
 display: inherit;
 cursor: pointer;
+background: none;
 }
 
 #fieldLookupContent td {
@@ -2425,8 +2426,9 @@ padding-top: 5px;
 padding-bottom: 5px;
 }
 
-#fieldLookupContent td ul li a {
+#fieldLookupContent td span a {
 background: url(../images/fieldlookup.png) no-repeat;
+display: inline-block;
 }
 
 #fieldLookupContent td a {