# HG changeset patch # User Sylvain Thénault # Date 1287570239 -7200 # Node ID 37b33760bc4a8a50fa97206c4a344ee8d93a9523 # Parent f8b36b1e98bfcf1fca35566e43e0931a86aa0bd4 [css] fix regression introduced by 6548:fd36c1049eed: we actually need display:block on box to get proper behaviour on mouse hover diff -r f8b36b1e98bf -r 37b33760bc4a web/data/cubicweb.css --- a/web/data/cubicweb.css Wed Oct 20 09:03:37 2010 +0200 +++ b/web/data/cubicweb.css Wed Oct 20 12:23:59 2010 +0200 @@ -477,10 +477,16 @@ ul.boxListing a { color: %(defaultColor)s; padding: 1px 9px 1px 3px; + display: block; /* necessary to get links across all width available (see on mouse over) */ } ul.boxListing a.action { padding: 0; + display: inline; +} + +ul.boxListing a.action + a{ + display: inline; } ul.boxListing li { diff -r f8b36b1e98bf -r 37b33760bc4a web/data/cubicweb.old.css --- a/web/data/cubicweb.old.css Wed Oct 20 09:03:37 2010 +0200 +++ b/web/data/cubicweb.old.css Wed Oct 20 12:23:59 2010 +0200 @@ -496,10 +496,16 @@ ul.boxListing a { color: %(defaultColor)s; padding: 1px 3px; + display: block; /* necessary to get links across all width available (see on mouse over) */ } ul.boxListing a.action { padding: 0; + display: inline; +} + +ul.boxListing a.action + a{ + display: inline; } ul.boxListing li {