[css] fix regression introduced by 6548:fd36c1049eed: we actually need display:block on box <a> to get proper behaviour on mouse hover
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 20 Oct 2010 12:23:59 +0200
changeset 6557 37b33760bc4a
parent 6555 f8b36b1e98bf
child 6558 f610789fd360
[css] fix regression introduced by 6548:fd36c1049eed: we actually need display:block on box <a> to get proper behaviour on mouse hover
web/data/cubicweb.css
web/data/cubicweb.old.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 {
--- 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 {