[css] fix regression introduced by 6548:fd36c1049eed: we actually need display:block on box <a> to get proper behaviour on mouse hover
--- 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 {