diff --git a/library/ZendAfi/View/Helper/Notice/Onglets.php b/library/ZendAfi/View/Helper/Notice/Onglets.php index eac8818fa4fdc5e5ad00818d833d43e45e0e1704..551c73d3e652b3f75667de743c1fb7215b8507cb 100644 --- a/library/ZendAfi/View/Helper/Notice/Onglets.php +++ b/library/ZendAfi/View/Helper/Notice/Onglets.php @@ -66,7 +66,8 @@ class ZendAfi_View_Helper_Notice_Onglets extends ZendAfi_View_Helper_Notice_Abst $onglet["titre"]); // Boite contenu - $html_contenu.=sprintf('<div id="%s_contenu_row">%s</div>', + $html_contenu.=sprintf('<div class="%s" id="%s_contenu_row">%s</div>', + $type, $id_onglet, sprintf('<div id="%s_contenu" class="onglet">%s</div>', $id_onglet, diff --git a/public/opac/css/global.css b/public/opac/css/global.css index bb7fd11adefe29b7f02245105600125cfc09386d..e42a3696e53ca9290a7bf126e1ff21b3edfaf930 100644 --- a/public/opac/css/global.css +++ b/public/opac/css/global.css @@ -1834,6 +1834,25 @@ button.vodeclic_link + img { /** morceaux */ .morceaux ul li>div:first-child { float: right; +} + +.morceaux ul { + padding-left: 0px; +} + +.morceaux ul li { + list-style: none; + padding: 5px; + -moz-transition: all 0.3s ease-out; + -webkit-transition: all 0.3s ease-out; +} + +.morceaux ul li:hover { + border-radius: 5px; + background-color: rgba(100,100,100,0.2); +} + +.morceaux ul li div:first-child img { margin-right: 5px; }