# HG changeset patch # User Anthony Ly # Date 1354036086 -3600 # Node ID c86141a8570de06a02a7066b4ee20b013935097b # Parent 81a6051807455ec6a3812028e1ba503fb37190a4 maj retours / modifications diff -r 81a605180745 -r c86141a8570d crea/data/article.jpg Binary file crea/data/article.jpg has changed diff -r 81a605180745 -r c86141a8570d crea/data/article.psd Binary file crea/data/article.psd has changed diff -r 81a605180745 -r c86141a8570d crea/data/cluster.jpg Binary file crea/data/cluster.jpg has changed diff -r 81a605180745 -r c86141a8570d crea/data/cluster.psd Binary file crea/data/cluster.psd has changed diff -r 81a605180745 -r c86141a8570d crea/data/documentaire.jpg Binary file crea/data/documentaire.jpg has changed diff -r 81a605180745 -r c86141a8570d crea/data/documentaire.psd Binary file crea/data/documentaire.psd has changed diff -r 81a605180745 -r c86141a8570d crea/data/dossiers-documentaires.jpg Binary file crea/data/dossiers-documentaires.jpg has changed diff -r 81a605180745 -r c86141a8570d crea/data/dossiers-documentaires.psd Binary file crea/data/dossiers-documentaires.psd has changed diff -r 81a605180745 -r c86141a8570d crea/data/header.jpg Binary file crea/data/header.jpg has changed diff -r 81a605180745 -r c86141a8570d crea/data/header.psd Binary file crea/data/header.psd has changed diff -r 81a605180745 -r c86141a8570d crea/data/liste.jpg Binary file crea/data/liste.jpg has changed diff -r 81a605180745 -r c86141a8570d crea/data/liste.psd Binary file crea/data/liste.psd has changed diff -r 81a605180745 -r c86141a8570d crea/data/pagination.jpg Binary file crea/data/pagination.jpg has changed diff -r 81a605180745 -r c86141a8570d crea/data/pagination.psd Binary file crea/data/pagination.psd has changed diff -r 81a605180745 -r c86141a8570d crea/data/treemap.jpg Binary file crea/data/treemap.jpg has changed diff -r 81a605180745 -r c86141a8570d crea/data/treemap.psd Binary file crea/data/treemap.psd has changed diff -r 81a605180745 -r c86141a8570d crea/data/widget.jpg Binary file crea/data/widget.jpg has changed diff -r 81a605180745 -r c86141a8570d crea/data/widget.psd Binary file crea/data/widget.psd has changed diff -r 81a605180745 -r c86141a8570d integration/article.html --- a/integration/article.html Tue Oct 30 18:04:28 2012 +0100 +++ b/integration/article.html Tue Nov 27 18:08:06 2012 +0100 @@ -29,7 +29,7 @@

-

+

diff -r 81a605180745 -r c86141a8570d integration/css/article.css --- a/integration/css/article.css Tue Oct 30 18:04:28 2012 +0100 +++ b/integration/css/article.css Tue Nov 27 18:08:06 2012 +0100 @@ -9,6 +9,16 @@ float: left; border-bottom: 1px solid #e0dde0; } +.articles .tooltip{ + width: 209px; + height: 155px; + position: absolute; + background: url(../img/white_arrow_long.png) 0 0 no-repeat; + z-index: 200; + line-height: 150px; + text-align: center; + display: none; +} .article:hover{ background-color: #eee; } diff -r 81a605180745 -r c86141a8570d integration/css/common.css --- a/integration/css/common.css Tue Oct 30 18:04:28 2012 +0100 +++ b/integration/css/common.css Tue Nov 27 18:08:06 2012 +0100 @@ -356,16 +356,20 @@ right: 0; background: url(../img/cluster-arrows.png) no-repeat -19px 0; } -.cluster-arrow.arrow-right:hover{ + +.cluster-arrow.arrow-right.bute{ background-position: -19px -22px; } -.cluster-arrow.arrow-right:active{ +.cluster-arrow:not(.bute).arrow-right:active, +.cluster-arrow:not(.bute).arrow-right:hover{ background-position: -19px -44px; } -.cluster-arrow.arrow-left:hover{ + +.cluster-arrow.arrow-left.bute{ background-position: 0 -22px; } -.cluster-arrow.arrow-left:active{ +.cluster-arrow:not(.bute).arrow-left:hover, +.cluster-arrow:not(.bute).arrow-left:active{ background-position: 0 -44px; } /* content */ @@ -547,10 +551,12 @@ display: block; font-size: 11px; } -.treemap:hover .visuel, .treemap:hover .visuel{ +.widget.affichage .treemap.active .visuel, +.widget.affichage .treemap:hover .visuel{ background-position: 0 -36px; } -.widget.affichage .liste:hover .visuel, .widget.affichage .treemap.active .visuel{ +.widget.affichage .liste:hover .visuel, +.widget.affichage .liste.active .visuel{ background-position: 0 -36px; } .widget.affichage li a{ @@ -676,4 +682,15 @@ } .pagination .active,.pagination a:hover{ text-decoration: none; -} \ No newline at end of file +} +/**/ +.data{ + width: 209px; + height: 130px; + padding-top: 25px; + position: absolute; + background: url(../img/white_arrow_long.png) 0 0 no-repeat; + z-index: 200; + text-align: center; + +} diff -r 81a605180745 -r c86141a8570d integration/css/home.css --- a/integration/css/home.css Tue Oct 30 18:04:28 2012 +0100 +++ b/integration/css/home.css Tue Nov 27 18:08:06 2012 +0100 @@ -3,6 +3,18 @@ float: left; position: relative; } +.actu .voile{ + width: 100%; + height: 100%; + position: absolute; + background-color: #c51810; + top: 0; + left: 0; + zoom: 1; + filter: alpha(opacity=30); + opacity: 0.3; + display: none; +} .inner-actu{ width: 100%; background-color:rgba(0,0,0,.7); @@ -26,7 +38,7 @@ bottom: 0; right: 0; } -.actu:hover .links{ +.actu:hover .links, .actu:hover .voile{ display: block; } .links li{ diff -r 81a605180745 -r c86141a8570d integration/documentaire.html --- a/integration/documentaire.html Tue Oct 30 18:04:28 2012 +0100 +++ b/integration/documentaire.html Tue Nov 27 18:08:06 2012 +0100 @@ -40,7 +40,7 @@