From: Jakub Pawlowicz Date: Mon, 4 May 2015 08:29:57 +0000 (+0100) Subject: Fixes #542 - space after closing brace in IE. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=205eaaa4adabb3a112640c92cfdf7a798d961ad2;p=clean-css.git Fixes #542 - space after closing brace in IE. Starting with version 3.3 this feature will be disabled since: * it apparently does not work in IE9 where removing the space will always break content. * in IE 10 it works only inside `background`, `transform` and `src` properties. Once we switch to supporting (just 2 latest versions) we will likely turn it on again. --- diff --git a/History.md b/History.md index 9d488514..c749921b 100644 --- a/History.md +++ b/History.md @@ -9,6 +9,7 @@ * Moves URL rebasing & rewriting into lib/urls. * Fixed issue [#436](https://github.com/jakubpawlowicz/clean-css/issues/436) - refactors URI rewriting. * Fixed issue [#448](https://github.com/jakubpawlowicz/clean-css/issues/448) - rebasing no protocol URIs. +* Fixed issue [#542](https://github.com/jakubpawlowicz/clean-css/issues/542) - space after closing brace in IE. [3.2.7 / 2015-05-03](https://github.com/jakubpawlowicz/clean-css/compare/v3.2.6...v3.2.7) ================== diff --git a/lib/selectors/optimizers/clean-up.js b/lib/selectors/optimizers/clean-up.js index ac36a2d4..3c105ec4 100644 --- a/lib/selectors/optimizers/clean-up.js +++ b/lib/selectors/optimizers/clean-up.js @@ -60,11 +60,14 @@ var CleanUp = { return list.sort(selectorSorter); }, - block: function (values) { + block: function (values, spaceAfterClosingBrace) { values[0] = values[0] .replace(/\s+/g, ' ') .replace(/(,|:|\() /g, '$1') - .replace(/ ?\) ?/g, ')'); + .replace(/ \)/g, ')'); + + if (!spaceAfterClosingBrace) + values[0] = values[0].replace(/\) /g, ')'); }, atRule: function (values) { diff --git a/lib/selectors/optimizers/simple.js b/lib/selectors/optimizers/simple.js index d31eb1b9..428c9a52 100644 --- a/lib/selectors/optimizers/simple.js +++ b/lib/selectors/optimizers/simple.js @@ -281,6 +281,7 @@ SimpleOptimizer.prototype.optimize = function(tokens) { var options = this.options; var ie7Hack = options.compatibility.selectors.ie7Hack; var adjacentSpace = options.compatibility.selectors.adjacentSpace; + var spaceAfterClosingBrace = options.compatibility.properties.spaceAfterClosingBrace; var token; function _cleanupCharsets(tokens) { @@ -316,11 +317,11 @@ SimpleOptimizer.prototype.optimize = function(tokens) { optimizeBody(token[2], self.options); break; case 'block': - CleanUp.block(token[1]); + CleanUp.block(token[1], spaceAfterClosingBrace); _optimize(token[2]); break; case 'flat-block': - CleanUp.block(token[1]); + CleanUp.block(token[1], spaceAfterClosingBrace); optimizeBody(token[2], self.options); break; case 'at-rule': diff --git a/lib/stringifier/helpers.js b/lib/stringifier/helpers.js index 0e0b31ba..beef6025 100644 --- a/lib/stringifier/helpers.js +++ b/lib/stringifier/helpers.js @@ -13,12 +13,16 @@ function hasMoreProperties(tokens, index) { return false; } -function afterClosingBrace(token, valueIndex) { - return token[valueIndex][0][token[valueIndex][0].length - 1] == ')' || token[valueIndex][0].indexOf('__ESCAPED_URL_CLEAN_CSS') === 0; +function supportsAfterClosingBrace(token) { + return token[0][0] == 'background' || token[0][0] == 'transform' || token[0][0] == 'src'; +} + +function isVariable(token, valueIndex) { + return token[valueIndex][0].indexOf('var(') === 0; } -function afterCalc(token, valueIndex) { - return token[valueIndex][0].indexOf('calc(') === 0; +function afterClosingBrace(token, valueIndex) { + return token[valueIndex][0][token[valueIndex][0].length - 1] == ')' || token[valueIndex][0].indexOf('__ESCAPED_URL_CLEAN_CSS') === 0; } function afterComma(token, valueIndex) { @@ -42,7 +46,7 @@ function inFilter(token) { } function inSpecialContext(token, valueIndex, context) { - return !context.spaceAfterClosingBrace && afterClosingBrace(token, valueIndex) && !afterCalc(token, valueIndex) || + return (!context.spaceAfterClosingBrace && supportsAfterClosingBrace(token) || isVariable(token, valueIndex)) && afterClosingBrace(token, valueIndex) || beforeSlash(token, valueIndex) || afterSlash(token, valueIndex) || beforeComma(token, valueIndex) || diff --git a/lib/utils/compatibility.js b/lib/utils/compatibility.js index c5f6971c..3ac5a5cf 100644 --- a/lib/utils/compatibility.js +++ b/lib/utils/compatibility.js @@ -10,7 +10,7 @@ var DEFAULTS = { iePrefixHack: false, // underscore / asterisk prefix hacks on IE ieSuffixHack: false, // \9 suffix hacks on IE merging: true, // merging properties into one - spaceAfterClosingBrace: false, // 'url() no-repeat' to 'url()no-repeat' + spaceAfterClosingBrace: true, // 'url() no-repeat' to 'url()no-repeat' urlQuotes: false, // whether to wrap content of `url()` into quotes or not zeroUnits: true // 0[unit] -> 0 }, diff --git a/test/binary-test.js b/test/binary-test.js index ebbca686..415f87b4 100644 --- a/test/binary-test.js +++ b/test/binary-test.js @@ -179,18 +179,18 @@ exports.commandsSuite = vows.describe('binary commands').addBatch({ 'relative image paths': { 'no root & output': binaryContext('./test/fixtures/partials-relative/base.css', { 'should leave paths': function(error, stdout) { - assert.equal(stdout, 'a{background:url(../partials/extra/down.gif)no-repeat}'); + assert.equal(stdout, 'a{background:url(../partials/extra/down.gif) no-repeat}'); } }), 'root but no output': binaryContext('-r ./test ./test/fixtures/partials-relative/base.css', { 'should rewrite path relative to ./test': function(error, stdout) { - assert.equal(stdout, 'a{background:url(/fixtures/partials/extra/down.gif)no-repeat}'); + assert.equal(stdout, 'a{background:url(/fixtures/partials/extra/down.gif) no-repeat}'); } }), 'no root but output': binaryContext('-o ./base1-min.css ./test/fixtures/partials-relative/base.css', { 'should rewrite path relative to current path': function() { var minimized = readFile('./base1-min.css'); - assert.equal(minimized, 'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}'); + assert.equal(minimized, 'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}'); }, teardown: function() { deleteFile('./base1-min.css'); @@ -199,7 +199,7 @@ exports.commandsSuite = vows.describe('binary commands').addBatch({ 'root and output': binaryContext('-r ./test/fixtures -o ./base2-min.css ./test/fixtures/partials-relative/base.css', { 'should rewrite path relative to ./test/fixtures/': function() { var minimized = readFile('./base2-min.css'); - assert.equal(minimized, 'a{background:url(/partials/extra/down.gif)no-repeat}'); + assert.equal(minimized, 'a{background:url(/partials/extra/down.gif) no-repeat}'); }, teardown: function() { deleteFile('./base2-min.css'); diff --git a/test/fixtures/big-min.css b/test/fixtures/big-min.css index d73e8889..d4ce7f6d 100644 --- a/test/fixtures/big-min.css +++ b/test/fixtures/big-min.css @@ -40,8 +40,8 @@ input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-web input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none} textarea{overflow:auto;vertical-align:top} table{border-spacing:0;border-collapse:collapse} -@font-face{font-family:TheSerifOffice;src:url(/medias/web/font/svg/TheSerifOffice-OT7_West.svgz#TheSerifOffice)format('svg');src:url(/medias/web/font/eot/TheSerifOffice-TT7_.eot);src:url(/medias/web/font/eot/TheSerifOffice-TT7_.eot?#iefix)format('embedded-opentype'),url(/medias/web/font/woff/TheSerifOffice-TT7_.woff)format('woff');font-weight:400;font-style:normal} -@font-face{font-family:FetteEngschrift;src:url(/medias/web/font/eot/fetteengschrift.eot);src:url(/medias/web/font/eot/fetteengschrift.eot?#iefix)format('embedded-opentype'),url(/medias/web/font/woff/fetteengschrift.woff)format('woff');font-weight:400;font-style:normal} +@font-face{font-family:TheSerifOffice;src:url(/medias/web/font/svg/TheSerifOffice-OT7_West.svgz#TheSerifOffice) format('svg');src:url(/medias/web/font/eot/TheSerifOffice-TT7_.eot);src:url(/medias/web/font/eot/TheSerifOffice-TT7_.eot?#iefix) format('embedded-opentype'),url(/medias/web/font/woff/TheSerifOffice-TT7_.woff) format('woff');font-weight:400;font-style:normal} +@font-face{font-family:FetteEngschrift;src:url(/medias/web/font/eot/fetteengschrift.eot);src:url(/medias/web/font/eot/fetteengschrift.eot?#iefix) format('embedded-opentype'),url(/medias/web/font/woff/fetteengschrift.woff) format('woff');font-weight:400;font-style:normal} .global .bloc_bandeau .bandeau,.global .bloc_droit .bandeau{font-family:FetteEngschrift,'Arial Narrow',sans-serif} .tt28,.tt32,.tt40{display:block;font-weight:400;line-height:105%;font-family:TheSerifOffice,georgia,serif} .tt40{font-size:4rem;margin:0 0 .5rem} @@ -278,12 +278,12 @@ button::-moz-focus-inner,input[type=submit]::-moz-focus-inner{padding:0;border:0 .titre_bt_fleche{display:inline-block;overflow:hidden;background:#f5f8f9} .titre_bt_fleche:hover{background:#e9edf0} .titre_bt_fleche .bt{position:relative;display:block;float:right;width:42px;background-color:#e9edf0;min-height:64px} -.titre_bt_fleche .fleche{position:absolute;right:13px;top:33%;background:url(/medias/web/img/sprites/icos_petites.png)-1px -108px no-repeat;width:13px;height:22px} +.titre_bt_fleche .fleche{position:absolute;right:13px;top:33%;background:url(/medias/web/img/sprites/icos_petites.png) -1px -108px no-repeat;width:13px;height:22px} .titre_bt_fleche:hover .fleche{background-position:-15px -108px} .titre_bt_fleche .titre,.titre_bt_fleche img{float:left} .titre_bt_fleche img{margin:0} .titre_bt_fleche .titre{padding:6px 0 8px;width:50%;font-weight:700;margin-left:9px} -.fb20x20,.google20x20,.mobile20x20,.rss20x20,.tw20x20{background:url(/medias/web/img/sprites/pictos20x20.png)no-repeat;display:inline-block;text-indent:-9999px;height:20px;width:20px;vertical-align:middle;margin-left:4px} +.fb20x20,.google20x20,.mobile20x20,.rss20x20,.tw20x20{background:url(/medias/web/img/sprites/pictos20x20.png) no-repeat;display:inline-block;text-indent:-9999px;height:20px;width:20px;vertical-align:middle;margin-left:4px} .fb20x20{background-position:0 -40px} .fb20x20:hover{background-position:0 -60px} .tw20x20{background-position:0 -80px} @@ -295,9 +295,9 @@ button::-moz-focus-inner,input[type=submit]::-moz-focus-inner{padding:0;border:0 .rss20x20{background-position:0 -200px} .rss20x20:hover{background-position:0 -220px} .nl{color:#747b83;font-weight:700} -.nl span{display:inline-block;width:20px;height:20px;margin:0 0 0 5px;line-height:20px;background:url(/medias/web/img/sprites/pictos20x20.png)no-repeat} +.nl span{display:inline-block;width:20px;height:20px;margin:0 0 0 5px;line-height:20px;background:url(/medias/web/img/sprites/pictos20x20.png) no-repeat} .nl:hover span{background-position:right -20px} -.bt_fermer,.bt_ouvrir,.bt_ouvrir:hover,.croix_blanche,.croix_grise,.fb13x13,.fb13x13_blanc,.fb13x13_gris,.google13x13,.google13x13_blanc,.ico_annee_en_france,.lien_externe span,.linkedin13x13,.linkedin13x13_blanc,.nb_commentaires .pic,.nb_reactions .pic,.nl_blanc,.tw13x13,.tw13x13_blanc,.tw13x13_gris,.tw_bird{background:url(/medias/web/img/sprites/icos_petites.png)no-repeat;display:inline-block;text-indent:-9999px;height:13px;width:13px;cursor:pointer} +.bt_fermer,.bt_ouvrir,.bt_ouvrir:hover,.croix_blanche,.croix_grise,.fb13x13,.fb13x13_blanc,.fb13x13_gris,.google13x13,.google13x13_blanc,.ico_annee_en_france,.lien_externe span,.linkedin13x13,.linkedin13x13_blanc,.nb_commentaires .pic,.nb_reactions .pic,.nl_blanc,.tw13x13,.tw13x13_blanc,.tw13x13_gris,.tw_bird{background:url(/medias/web/img/sprites/icos_petites.png) no-repeat;display:inline-block;text-indent:-9999px;height:13px;width:13px;cursor:pointer} .fb13x13,.fb13x13_blanc,.fb13x13_gris,.google13x13,.google13x13_blanc,.linkedin13x13,.linkedin13x13_blanc,.tw13x13,.tw13x13_blanc,.tw13x13_gris{margin:0 2px;vertical-align:middle} .fb13x13,.fb13x13_gris{background-position:0 -38px} .fb13x13_gris{background-position:0 -94px} @@ -325,7 +325,7 @@ button::-moz-focus-inner,input[type=submit]::-moz-focus-inner{padding:0;border:0 .az:hover .bt_ouvrir,.bt_ouvrir:hover,.conteneur_alterne_bt:hover .bt_ouvrir{background-position:-17px -158px} .bt_fermer{background-position:-17px -143px} .az:hover .bt_fermer,.bt_fermer:hover,.conteneur_alterne_bt:hover .bt_fermer{background-position:-34px -143px} -.picto_lien{display:inline-block;width:12px;height:13px;margin:0 5px 0 0;background:url(/medias/web/img/sprites/icos_petites.png)0 -142px no-repeat;vertical-align:middle} +.picto_lien{display:inline-block;width:12px;height:13px;margin:0 5px 0 0;background:url(/medias/web/img/sprites/icos_petites.png) 0 -142px no-repeat;vertical-align:middle} .croix_blanche{background-position:0 -191px;width:10px;height:10px;vertical-align:baseline} .croix_grise{width:10px;height:10px;margin-bottom:-.1rem;background-position:-11px -191px;cursor:pointer} .ico_annee_en_france{margin:0 7px 0 0;width:16px;height:17px;background-position:0 -173px} @@ -338,8 +338,8 @@ button::-moz-focus-inner,input[type=submit]::-moz-focus-inner{padding:0;border:0 .pic_commentes_abo,.pic_debrief_abo{display:inline-block;margin:0 8px 0 0;vertical-align:text-bottom} .filet_plus .bg_plus{background:#b9c0c5;padding:0 5px} .filet_plus .plus{color:#fff} -.pic_debrief_abo{width:24px;height:24px;background:url(/medias/web/img/sprites/pictos_abos.png)0 -24px no-repeat} -.pic_commentes_abo{height:23px;width:32px;background:url(/medias/web/img/sprites/pictos_abos.png)no-repeat} +.pic_debrief_abo{width:24px;height:24px;background:url(/medias/web/img/sprites/pictos_abos.png) 0 -24px no-repeat} +.pic_commentes_abo{height:23px;width:32px;background:url(/medias/web/img/sprites/pictos_abos.png) no-repeat} .liste_bordure li{padding:8px 16px 6px;border-bottom:1px solid #eef1f5} .liste_chevron{display:block;padding:0 0 0 10px;position:relative} .chevron,.chevron_en_dur{display:inline-block} @@ -374,7 +374,7 @@ article .liste_carre_999{margin-top:5px} .titre_une{margin:0 0 10px} .titre_une figcaption{margin:5px 0 0} .titres_abonnes{overflow:hidden;background:#f8f9fb;border-bottom:6px solid #e9edf0} -.entete_exclu_abonnes,.titres_abonnes .entete{display:block;height:19px;background:url(/medias/web/img/elements_lm/ea_contenu_exclusif.png)8px 4px no-repeat #ffd500;font-size:13px;text-indent:-9999px} +.entete_exclu_abonnes,.titres_abonnes .entete{display:block;height:19px;background:url(/medias/web/img/elements_lm/ea_contenu_exclusif.png) 8px 4px no-repeat #ffd500;font-size:13px;text-indent:-9999px} .titres_abonnes .ligne1,.titres_abonnes .ligne2{padding:15px 0 10px;overflow:hidden} .titres_abonnes .ligne2{border-top:1px solid #d5d9de} .titres_abonnes .conteneur_bt{clear:both;padding:15px 0;text-align:center} @@ -408,7 +408,7 @@ article .liste_carre_999{margin-top:5px} .col_droite .supplement_partenaire .contenu .annonce,.global .supplement_partenaire .contenu .annonce{float:left;margin-left:10px;width:209px} .col_droite .supplement_partenaire .annonce .accroche,.global .supplement_partenaire{display:block;margin-bottom:5px;font-weight:700} .global .bloc_bandeau .bandeau,.global .bloc_droit .bandeau{padding:0 16px;margin:0;font-size:17px;line-height:26px;color:#fff;text-transform:uppercase} -.global .bloc_droit .titre{display:block;background:url(/medias/web/img/textes/blog_expert.png)no-repeat;text-indent:-99999px} +.global .bloc_droit .titre{display:block;background:url(/medias/web/img/textes/blog_expert.png) no-repeat;text-indent:-99999px} .global .bloc_droit .contenu_droit{padding:18px 14px 10px;overflow:hidden} .global .bloc_droit .entree,.global .bloc_droit .entree.auto{height:46px;padding:7px 14px 10px;overflow:hidden;border-top:1px solid #e9edf0} .global .bloc_droit .entree.auto,.global .bloc_droit .entree.presidentielle{height:auto;font-weight:700} @@ -428,7 +428,7 @@ article .liste_carre_999{margin-top:5px} .global.videos .grid_6{padding-bottom:16px} .global.videos .grid_6>a{display:block} .global.revue_web{padding:0;font-weight:700} -.global.revue_web .entete{display:block;height:80px;background:url(/medias/web/img/habillage/bandeau_revue_web.png)no-repeat} +.global.revue_web .entete{display:block;height:80px;background:url(/medias/web/img/habillage/bandeau_revue_web.png) no-repeat} .global.revue_web .entete a{display:inline-block;width:335px;height:80px;text-indent:-9999px} .global.revue_web .entete a:first-child{width:664px} .global.revue_web .big_brother{display:table-cell;float:left;width:664px;padding-bottom:10px} @@ -453,7 +453,7 @@ article .liste_carre_999{margin-top:5px} .global.audience .container>div:first-child{margin-left:0} #carousel_footer_serviciel img:hover,.global.audience .container img:hover{opacity:.7;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"} .global.supp_partenaires .entete_deroule{padding:6px 16px;margin-bottom:0;text-align:left;font-weight:700;font-size:16px;font-family:arial,sans serif} -.global.supp_partenaires .entete_deroule .logo{float:right;padding-left:40px;background:url(/medias/web/img/textes/marqueur_pub_gris43x5.png)0 12px no-repeat} +.global.supp_partenaires .entete_deroule .logo{float:right;padding-left:40px;background:url(/medias/web/img/textes/marqueur_pub_gris43x5.png) 0 12px no-repeat} .global.supp_partenaires .position_pub div{float:left;width:301px;padding:16px 12px 16px 16px;line-height:140%} .global.supp_partenaires .position_pub div~div{width:285px} .global.supp_partenaires .position_pub div~div~div{width:330px} @@ -506,7 +506,7 @@ input[type=checkbox],input[type=radio]{vertical-align:bottom;margin-bottom:.2rem .saisie_erreur input{color:#000;text-shadow:0 0 0 transparent} .champs_erreur{border:1px solid #d50303} .confirmation{position:relative;padding:10px;background:#dff0d8;color:#468847} -.confirmation .fermer{position:absolute;right:10px;top:10px;width:10px;height:10px;background:url(/medias/web/img/sprites/icos_petites.png)-22px -191px no-repeat;text-indent:-9999px;cursor:pointer} +.confirmation .fermer{position:absolute;right:10px;top:10px;width:10px;height:10px;background:url(/medias/web/img/sprites/icos_petites.png) -22px -191px no-repeat;text-indent:-9999px;cursor:pointer} .bandeau_info_importante{padding:10px;background:#fff1ae;color:#c09853} .bandeau_important{padding:6px 16px;background:#d50303;color:#fff;font-weight:700} .entete_abonnes,.entete_abonnes_bg{font-weight:700;display:block;color:#464f57} @@ -548,13 +548,13 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%} .ico_video_mini{background-position:-143px -128px} .ico_live_mini{background-position:-143px -192px} .voir_plus.hovered{background:#f1f5f8;cursor:pointer} -.deplier{display:block;visibility:hidden;height:16px;margin:10px 0 0;text-indent:-9999px;background:url(/medias/web/img/pictos/chevrons_double_haut_bas.png)50% 3px no-repeat #e4e6e9;border-top:1px solid #a2a9ae} +.deplier{display:block;visibility:hidden;height:16px;margin:10px 0 0;text-indent:-9999px;background:url(/medias/web/img/pictos/chevrons_double_haut_bas.png) 50% 3px no-repeat #e4e6e9;border-top:1px solid #a2a9ae} .deplier.visible{visibility:visible} .deplier.ouvert{background-position:50% -13px} .deplier:hover{cursor:pointer} .edito_ensemble_liste p{min-height:45px} .edito_ensemble_lien{cursor:pointer} -.edito_ensemble_lien .double_chevron{display:inline-block;width:9px;height:9px;margin-left:10px;background:url(/medias/web/img/pictos/chevrons_double_haut_bas.png)no-repeat} +.edito_ensemble_lien .double_chevron{display:inline-block;width:9px;height:9px;margin-left:10px;background:url(/medias/web/img/pictos/chevrons_double_haut_bas.png) no-repeat} .edito_ensemble_lien.resize_mini .double_chevron{transform:rotate(0);-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transition-property:transform;transition-duration:.5s;transition-timing-function:ease-in} .edito_ensemble_lien.resize_maxi .double_chevron,.edito_ensemble_lien.resize_mini .double_chevron{-webkit-transition-property:transform;-webkit-transition-duration:.5s;-webkit-transition-timing-function:ease-in;-moz-transition-property:transform;-moz-transition-duration:.5s;-moz-transition-timing-function:ease-in} .edito_ensemble_lien.resize_maxi .double_chevron{transform:rotate(180deg);-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-o-transform:rotate(180deg);transition-property:transform;transition-duration:.5s;transition-timing-function:ease-in} @@ -572,7 +572,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%} .ea109x13,.logo_lm95x16,.logo_lm_abo95x16{text-indent:-9999px;display:inline-block;font-size:13px;vertical-align:baseline} .ea109x13{width:109px;height:13px;background:url(/medias/web/img/elements_lm/edition_abonnes109x13.png)} .logo_lm95x16,.logo_lm_abo95x16{width:95px;height:16px;background:url(/medias/web/img/elements_lm/logo_lm95x16.png)} -.logo_lm95x16{background:url(/medias/web/img/elements_lm/logo_lm95x16.png)0 -16px} +.logo_lm95x16{background:url(/medias/web/img/elements_lm/logo_lm95x16.png) 0 -16px} .ea_article{position:absolute;left:-18px;top:3px;display:inline-block;width:55px;height:59px;text-indent:-9999px;background:url(/medias/web/img/elements_lm/marqueur_ea_article.png)} .huffington148x10{display:inline-block;width:148px;height:10px;text-indent:-9999px;background:url(/medias/web/img/groupe/logo_huffington149x10.png)} .telerama47x18{display:inline-block;width:47px;height:18px;text-indent:-9999px;background:url(/medias/web/img/groupe/logo_teleramafr47x18.png)} @@ -586,10 +586,10 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%} #en_ce_moment a,#en_ce_moment li:first-child span{display:inline-block;height:23px;padding:10px 8px 0;color:#d2d6db;font-size:1.3rem;line-height:100%;font-weight:700} .ie #en_ce_moment a{font-size:13px} #en_ce_moment a:hover{color:#CB2626} -#en_ce_moment li:first-child{background:url(/medias/web/img/sprites/sous_nav.png)right -70px no-repeat;padding:0 13px 0 5px} +#en_ce_moment li:first-child{background:url(/medias/web/img/sprites/sous_nav.png) right -70px no-repeat;padding:0 13px 0 5px} #en_ce_moment li:first-child span{height:22px;padding:11px 8px 0;text-transform:uppercase;color:#fff;font-size:1.2rem} .carousel_petit .navigation{margin:10px 0;line-height:10px;text-align:center} -.carousel_petit .precedent,.carousel_petit .repere,.carousel_petit .suivant{display:inline-block;vertical-align:middle;background:url(/medias/web/img/sprites/carousel_petit.png)no-repeat;text-indent:-9999px} +.carousel_petit .precedent,.carousel_petit .repere,.carousel_petit .suivant{display:inline-block;vertical-align:middle;background:url(/medias/web/img/sprites/carousel_petit.png) no-repeat;text-indent:-9999px} .carousel_petit .precedent,.carousel_petit .suivant{width:8px;height:11px} .carousel_petit .suivant{background-position:-10px 0} .carousel_petit .repere{background-position:0 -24px;width:9px;height:8px;margin:0 3px} @@ -623,7 +623,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%} .pagination .plus ul li{border-left:1px solid #a2a9ae} .pagination .plus ul li:first-child{border-radius:4px 0 0 4px} .pagination .plus ul li:hover{background:#5d666d} -.pagination .plus .pointeur{display:block;height:12px;background:url(/medias/web/img/pictos/pagination_fle.png)554px 0 no-repeat} +.pagination .plus .pointeur{display:block;height:12px;background:url(/medias/web/img/pictos/pagination_fle.png) 554px 0 no-repeat} .pagination_large .plus .pointeur{background-position:884px 0} .pagination .plus:hover div{display:block} .pagination .plus ul .page{border:solid #b9c0c5;border-width:0 1px 0 0;color:#fff} @@ -662,7 +662,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%} #footer_services .liste_tv .logo+p span{font-size:10px} #footer,.ie #footer{font-size:11px} #footer_services .liste_tv .logo+p b{display:block;font-size:11px} -#footer_services .liste_tv .logo,#footer_services .liste_tv .note{display:inline-block;margin:0 5px 0 0;width:47px;height:27px;background:url(/medias/web/img/sprites/tv.png)no-repeat;text-indent:-9999px;vertical-align:baseline} +#footer_services .liste_tv .logo,#footer_services .liste_tv .note{display:inline-block;margin:0 5px 0 0;width:47px;height:27px;background:url(/medias/web/img/sprites/tv.png) no-repeat;text-indent:-9999px;vertical-align:baseline} #footer_services .liste_tv .note{float:left;margin-top:2px} #footer_services .liste_tv .logo_france_2{background-position:0 -28px} #footer_services .liste_tv .logo_france_3{background-position:0 -56px} @@ -688,11 +688,11 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%} #footer{width:1000px;margin:0 auto 50px;text-align:left} #footer .deja_abonne .obf:hover,#footer .footer_bas .nl:hover,#footer .zone_abo:hover{text-decoration:none} #footer .footer_gratuit{overflow:hidden} -#footer .abonnement{float:left;width:673px;height:155px;background:url(/medias/web/img/elements_lm/footer_supports.jpg)right bottom no-repeat} -#footer .zone_abo{display:block;float:left;width:673px;height:155px;background:url(/medias/web/img/elements_lm/footer_supports_haut.png)385px top no-repeat} -#footer .abonnement .contenu{margin:35px 0 0;padding:30px 346px 0 13px;background:url(/medias/web/img/elements_lm/le_monde_abonements_227x22.png)13px top no-repeat;color:#16212c;line-height:120%} +#footer .abonnement{float:left;width:673px;height:155px;background:url(/medias/web/img/elements_lm/footer_supports.jpg) right bottom no-repeat} +#footer .zone_abo{display:block;float:left;width:673px;height:155px;background:url(/medias/web/img/elements_lm/footer_supports_haut.png) 385px top no-repeat} +#footer .abonnement .contenu{margin:35px 0 0;padding:30px 346px 0 13px;background:url(/medias/web/img/elements_lm/le_monde_abonements_227x22.png) 13px top no-repeat;color:#16212c;line-height:120%} #footer .abonnement .bt{padding:5px 0 0 13px} -#footer .deja_abonne{float:left;width:183px;height:110px;padding:10px 125px 10px 16px;margin:25px 0 0;background:url(/medias/web/img/elements_lm/footer_deja_abo.jpg)right top no-repeat #fafbfc} +#footer .deja_abonne{float:left;width:183px;height:110px;padding:10px 125px 10px 16px;margin:25px 0 0;background:url(/medias/web/img/elements_lm/footer_deja_abo.jpg) right top no-repeat #fafbfc} #footer .deja_abonne .accroche{display:block;font-weight:700;font-size:17px;padding:0 0 8px} #footer .deja_abonne .obf,#footer .deja_abonne .trigger_boite_login{display:block;padding:0 0 0 10px;position:relative} #footer .deja_abonne .obf:before,#footer .deja_abonne .trigger_boite_login:before{color:#5d666d;content:'\203A';display:block;float:left;font-size:1.2rem;left:0;position:absolute;width:10px} @@ -711,7 +711,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%} #footer .copy{padding:8px 10px 3px} #footer .description{color:#a2a9ae;padding:3px 13px;line-height:120%} #header_facebook,#header_google,#header_twitter{position:relative} -.conteneur_popinbox{position:absolute;z-index:10;top:20px;left:-145px;padding:11px 0 0;-webkit-box-shadow:-1px 4px 3px -2px rgba(0,11,21,.5);-moz-box-shadow:-1px 4px 3px -2px rgba(0,11,21,.5);box-shadow:-1px 4px 3px -2px rgba(0,11,21,.5);background:url(/medias/web/img/habillage/lightbox_sociaux_coche.png)center top no-repeat;display:none} +.conteneur_popinbox{position:absolute;z-index:10;top:20px;left:-145px;padding:11px 0 0;-webkit-box-shadow:-1px 4px 3px -2px rgba(0,11,21,.5);-moz-box-shadow:-1px 4px 3px -2px rgba(0,11,21,.5);box-shadow:-1px 4px 3px -2px rgba(0,11,21,.5);background:url(/medias/web/img/habillage/lightbox_sociaux_coche.png) center top no-repeat;display:none} #header,.position_pub:hover{z-index:3} .popinbox{padding:10px;background:#fff;overflow:visible} .sociaux .popinbox{width:292px;text-indent:0} @@ -723,7 +723,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%} .position_pub.x01{height:0;z-index:2147483647} .position_pub.top1{width:1000px;margin-left:auto;margin-right:auto;text-align:center;min-height:90px} .app_abonnes .position_pub.top1{min-height:0} -.col_droite .position_pub.filled{margin-bottom:25px;padding:7px 7px 13px;background:url(/medias/web/img/textes/marqueur_pub_col_droite.png)bottom right no-repeat #e9edf0} +.col_droite .position_pub.filled{margin-bottom:25px;padding:7px 7px 13px;background:url(/medias/web/img/textes/marqueur_pub_col_droite.png) bottom right no-repeat #e9edf0} .col_droite .position_pub.filled.noborder{background:0 0;padding:0} .conteneur_ligatus{margin:25px 0} .conteneur_ligatus *{vertical-align:bottom} @@ -787,7 +787,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%} #header_utilisateur .recherche label{display:none} #header_utilisateur .recherche p{width:195px;margin:0;padding:2px 5px;background-color:#f8f9fb;border:1px solid #d2d6db;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;overflow:hidden} #header_utilisateur .recherche input[type=search]{border:none;background:0 0;width:165px;float:left;-webkit-box-sizing:border-box} -#header_utilisateur .loupe{width:15px;height:15px;margin:0 0 0 5px;border:none;background:url(/medias/web/img/sprites/icos_petites.png)-17px -173px no-repeat;text-indent:-9999px;font-size:0;color:#f8f9fb;float:right} +#header_utilisateur .loupe{width:15px;height:15px;margin:0 0 0 5px;border:none;background:url(/medias/web/img/sprites/icos_petites.png) -17px -173px no-repeat;text-indent:-9999px;font-size:0;color:#f8f9fb;float:right} #header_utilisateur .sociaux{float:left;margin:7px 20px 0;color:#747b83;font-weight:700;font-size:12px} #header_utilisateur .sociaux a,#header_utilisateur .sociaux span{vertical-align:middle;margin-right:7px} .sociaux .obf,.sociaux .obf span,.sociaux .obf strong,.sociaux .obf:focus span,.sociaux .obf:focus strong,.sociaux .obf:hover span,.sociaux .obf:hover strong{color:#000;text-decoration:none} @@ -818,7 +818,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%} #header .acces_compte .avatar{width:28px;border-right:1px solid #d2d6db} #header .acces_compte .avatar img{display:block;margin:4px auto 0;vertical-align:middle} #header .acces_compte .nom{padding:0 16px;border-right:1px solid #d2d6db;border-left:1px solid #fff} -#header .acces_compte .fle{width:28px;background:url(/medias/web/img/pictos/fle_bas_noir7x4.png)50% 50% no-repeat} +#header .acces_compte .fle{width:28px;background:url(/medias/web/img/pictos/fle_bas_noir7x4.png) 50% 50% no-repeat} #header .acces_compte ul{position:absolute;right:0;top:29px;width:98%;background:#fff;list-style-type:none;text-align:left;display:none;border:1px solid #d2d6db;border-radius:0 0 3px 3px} #header .acces_compte:hover ul{display:block} #header .acces_compte li{padding:8px;border-bottom:1px solid #eef1f5} @@ -830,7 +830,7 @@ img[height="97"]+.ico29x29{bottom:6%;left:3.5%} .lightbox_ext,.loginbox{overflow:hidden;background:#f5f8f9} .lightbox_ext h2,.loginbox h2{padding:7px 16px 5px;background:#16212c;border-top:3px solid #747b83;color:#fff} .lightbox_ext .fermer,.loginbox .fermer{float:right;font-size:11px;line-height:18px;color:#747b83;cursor:pointer} -.lightbox_ext .fermer span,.loginbox .fermer span{display:inline-block;width:10px;height:10px;margin:0 0 0 3px;background:url(/medias/web/img/sprites/icos_petites.png)-11px -191px no-repeat} +.lightbox_ext .fermer span,.loginbox .fermer span{display:inline-block;width:10px;height:10px;margin:0 0 0 3px;background:url(/medias/web/img/sprites/icos_petites.png) -11px -191px no-repeat} .lightbox_ext .fermer:hover,.loginbox .ferme:hover{color:#fff;text-decoration:none} .lightbox_ext .fermer:hover span,.loginbox .fermer:hover span{background-position:0 -191px} .loginbox .message{padding:10px;background:#eef1f5} @@ -848,7 +848,7 @@ label i{font-style:normal;display:none} .loginbox #login_error_email{background:#f2dede;border:1px solid #c00;color:#c00;text-align:center} .loginbox .signup{width:180px;height:230px;padding:10px 40px 10px 15px;border-right:1px solid #fff} .loginbox .accroche{display:block;margin:20px 0 15px;color:#464f57} -.loginbox .abonne_journal{position:relative;width:185px;height:235px;padding:10px 55px 10px 16px;background:url(/medias/web/img/elements_lm/login_box_journal.jpg)right 130px no-repeat} +.loginbox .abonne_journal{position:relative;width:185px;height:235px;padding:10px 55px 10px 16px;background:url(/medias/web/img/elements_lm/login_box_journal.jpg) right 130px no-repeat} .loginbox .abonne_journal .btn,.loginbox .login_form .btn_abo{position:absolute;bottom:15px;left:16px} .loginbox .rmdp .btn{position:static;margin:15px 0} #ariane_az .suite_entrees,#nav_ariane .az{position:absolute;left:-9999px} @@ -856,7 +856,7 @@ label i{font-style:normal;display:none} .rmdp{padding:0 15px} #barre_titre{background:#fff;text-align:center;padding:10px 0} #barre_titre .conteneur_haut{overflow:hidden} -#barre_titre #logo{display:block;width:240px;height:42px;margin:16px auto 5px;background:url(/medias/web/img/elements_lm/logo_lm240x42.png)no-repeat;font-size:46px;text-indent:-9999px} +#barre_titre #logo{display:block;width:240px;height:42px;margin:16px auto 5px;background:url(/medias/web/img/elements_lm/logo_lm240x42.png) no-repeat;font-size:46px;text-indent:-9999px} #barre_titre #logo.abonnes{background-position:0 -42px} #nav_principale,#nav_principale .conteneur_haut{background:#f8fafb} #nav_principale{border-top:2px solid #d2d6db} @@ -866,9 +866,9 @@ label i{font-style:normal;display:none} .ombrelle.partenariats .tt_rubrique_ombrelle,.ombrelle.partenariats .tt_rubrique_ombrelle a{padding:0 4px 0 0;background-image:none;font-family:FetteEngschrift;text-transform:uppercase;font-size:55px;line-height:55px} .ombrelle.export_interne .tt_rubrique_ombrelle a,.ombrelle.partenariats .tt_rubrique_ombrelle a{color:#2e3942} .ombrelle.partenariats span{display:inline-block;padding:0 8px 0 0} -.ombrelle .tt_rubrique_ombrelle,.ombrelle.style .tt_rubrique_ombrelle{display:inline-block;padding:0 0 0 67px;margin:25px 0 0;background:url(/medias/web/img/elements_lm/m54x44.png)0 20% no-repeat;font-family:TheSerifOffice,georgia,serif;font-size:55px;line-height:55px;color:#2E3942;font-weight:400;letter-spacing:-.01em} +.ombrelle .tt_rubrique_ombrelle,.ombrelle.style .tt_rubrique_ombrelle{display:inline-block;padding:0 0 0 67px;margin:25px 0 0;background:url(/medias/web/img/elements_lm/m54x44.png) 0 20% no-repeat;font-family:TheSerifOffice,georgia,serif;font-size:55px;line-height:55px;color:#2E3942;font-weight:400;letter-spacing:-.01em} .ombrelle .tt_rubrique_ombrelle .obf,.ombrelle .tt_rubrique_ombrelle .obf:hover,.ombrelle .tt_rubrique_ombrelle a,.ombrelle .tt_rubrique_ombrelle h2 a:hover{color:#2E3942;text-decoration:none} -.ombrelle.style .tt_rubrique_ombrelle{background:url(/medias/web/img/elements_lm/m59x44.png)0 20% no-repeat} +.ombrelle.style .tt_rubrique_ombrelle{background:url(/medias/web/img/elements_lm/m59x44.png) 0 20% no-repeat} .ombrelle .tt_rubrique_ombrelle.max24,.ombrelle .tt_rubrique_ombrelle.max32,.ombrelle .tt_rubrique_ombrelle.max38{background-position:0 0;font-size:43px;line-height:57px} .ombrelle .tt_rubrique_ombrelle.max32,.ombrelle .tt_rubrique_ombrelle.max38{font-size:36px;line-height:61px} .ombrelle .tt_rubrique_ombrelle.max38{font-size:32px} @@ -894,13 +894,13 @@ label i{font-style:normal;display:none} #nav .accueil{border-top-color:#a2a9ae} #nav .accueil:hover{border-top-color:#16212c;background:#2e3942} #nav .accueil a,#nav .accueil span{width:12px;height:23px;padding:9px 10px 0 9px} -#nav .accueil .maison{display:inline-block;width:11px;height:10px;vertical-align:text-top;background:url(/medias/web/img/sprites/icos_petites.png)-29px -108px no-repeat;text-indent:-9999px} +#nav .accueil .maison{display:inline-block;width:11px;height:10px;vertical-align:text-top;background:url(/medias/web/img/sprites/icos_petites.png) -29px -108px no-repeat;text-indent:-9999px} #nav .accueil:hover .maison{background-position:-29px -120px} #ariane_az{width:1000px;margin:0 auto} #ariane_az .obf,#ariane_az a{padding:0 9px;color:#000;white-space:nowrap} #ariane_az .suite_entrees{background:#f8f9fb} #ariane_az .suite_entrees p{border-bottom:1px solid #eef1f5;line-height:33px;font-size:12px;font-weight:700} -#nav_ariane{height:35px;overflow:hidden;background:url(/medias/web/img/sprites/sous_nav.png)left -630px} +#nav_ariane{height:35px;overflow:hidden;background:url(/medias/web/img/sprites/sous_nav.png) left -630px} #nav_ariane ul{float:left;width:950px;overflow:hidden} #nav_ariane li{display:block;float:left} #nav_ariane a,#nav_ariane h1 span.obf{display:inline-block;height:23px;padding:12px 8px 0;font-size:1.2rem;line-height:100%;font-weight:700;white-space:nowrap} @@ -977,7 +977,7 @@ label i{font-style:normal;display:none} .liste_reactions .reaction .btn{visibility:hidden;margin:5px 0 0} .liste_reactions .reaction:hover .btn{visibility:visible} .infobulle{position:relative} -.liste_reactions .bulle{position:absolute;top:60%;left:-93%;z-index:10;width:170px;padding:11px 0 0;background:url(/medias/web/img/habillage/lightbox_sociaux_coche.png)center top no-repeat;display:none} +.liste_reactions .bulle{position:absolute;top:60%;left:-93%;z-index:10;width:170px;padding:11px 0 0;background:url(/medias/web/img/habillage/lightbox_sociaux_coche.png) center top no-repeat;display:none} .infobulle:hover .bulle{display:inline-block} .liste_reactions .bulle span{display:block;-webkit-box-shadow:0 3px 2px 1px rgba(0,11,21,.2);-moz-box-shadow:0 3px 2px 1px rgba(0,11,21,.2);box-shadow:0 3px 2px 1px rgba(0,11,21,.2);border-radius:4px;padding:10px;background:#fff} .liste_reactions .references{font-weight:700} @@ -989,7 +989,7 @@ label i{font-style:normal;display:none} .reaction_identifier .deja_abo .erreur{display:none;padding:7px 28px 7px 15px} .reaction_identifier .form{padding:10px 10px 10px 14px} .reaction_identifier .form p{clear:both} -.conteneur_barre_outils .non_abo.classer,.reaction_identifier .non_abo{position:relative;float:left;width:233px;height:230px;padding:10px 10px 10px 14px;background:url(/medias/web/img/textes/daccord_pas_daccord.png)16px 40px no-repeat;border-right:1px solid #fff} +.conteneur_barre_outils .non_abo.classer,.reaction_identifier .non_abo{position:relative;float:left;width:233px;height:230px;padding:10px 10px 10px 14px;background:url(/medias/web/img/textes/daccord_pas_daccord.png) 16px 40px no-repeat;border-right:1px solid #fff} .reaction_identifier .texte{margin:80px 0 15px} .reaction_identifier .mini-login{position:relative;float:right;width:275px;margin:0;padding:10px 0;height:230px;border-left:1px solid #e4e6e9} .reaction_identifier .mini-login .deja_abo{padding:0 10px 10px 14px} @@ -1036,13 +1036,13 @@ label i{font-style:normal;display:none} .barre_outils .outil{float:left;padding:2px 6px 0;height:25px;color:#747B83} .barre_outils .partage{float:right;height:26px;margin:0;padding-left:10px;border-left:1px solid #eef1f5;color:#747b83} .barre_outils .partage+span{height:26px;vertical-align:middle} -.barre_outils .reagir span{width:12px;height:11px;background:url(/medias/web/img/sprites/icos_petites.png)no-repeat;vertical-align:middle} -.barre_outils .classer span{width:11px;height:11px;background:url(/medias/web/img/sprites/icos_petites.png)0 -12px no-repeat;vertical-align:baseline} +.barre_outils .reagir span{width:12px;height:11px;background:url(/medias/web/img/sprites/icos_petites.png) no-repeat;vertical-align:middle} +.barre_outils .classer span{width:11px;height:11px;background:url(/medias/web/img/sprites/icos_petites.png) 0 -12px no-repeat;vertical-align:baseline} .barre_outils .classer.actif span{background-position:-13px -12px} -.barre_outils .imprimer span{width:12px;height:12px;background:url(/medias/web/img/sprites/icos_petites.png)0 -25px no-repeat;vertical-align:baseline} -.barre_outils .envoyer span{width:12px;height:10px;background:url(/medias/web/img/sprites/icos_petites.png)-13px -25px no-repeat;vertical-align:baseline} +.barre_outils .imprimer span{width:12px;height:12px;background:url(/medias/web/img/sprites/icos_petites.png) 0 -25px no-repeat;vertical-align:baseline} +.barre_outils .envoyer span{width:12px;height:10px;background:url(/medias/web/img/sprites/icos_petites.png) -13px -25px no-repeat;vertical-align:baseline} .conteneur_barre_outils .reaction_identifier{margin:0 0 20px;border-bottom:3px solid #e9ecf0;border-top:none} -.conteneur_barre_outils .non_abo.classer{background:url(/medias/web/img/textes/pas_le_temps_lire.png)16px 40px no-repeat} +.conteneur_barre_outils .non_abo.classer{background:url(/medias/web/img/textes/pas_le_temps_lire.png) 16px 40px no-repeat} .conteneur_barre_outils p{margin:0} .article .fb-like{height:25px;overflow:hidden;opacity:0} .bloc_part .saisie{background-color:#f8f9fb;border:1px solid #b9c0c5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;padding:2px 3px} @@ -1103,7 +1103,7 @@ label i{font-style:normal;display:none} .services .bloc_part.gymglish .contenu.mot_mois .btn_fonce{bottom:16px;left:15px} .bloc_part.gymglish .contenu.mot_mois{bottom:42px;left:15px;height:143px} .bloc_part.gymglish .contenu.mot_mois .img{width:110px;float:right;margin:4px 0} -.bloc_part.empruntis .contenu{padding:0 15px;background:url(/medias/web/img/partenaires/empruntis/stylo.jpg)no-repeat} +.bloc_part.empruntis .contenu{padding:0 15px;background:url(/medias/web/img/partenaires/empruntis/stylo.jpg) no-repeat} .bloc_part.empruntis .contenu .texte{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;width:190px;color:#16212c} .bloc_part.empruntis .contenu .texte strong{display:block;color:#16212c} .bloc_part.empruntis .contenu .texte .lien_chevron{display:block;font-weight:700;color:#16212c} @@ -1170,7 +1170,7 @@ label i{font-style:normal;display:none} .col_droite .bloc_element .ligne_titre{display:block;overflow:hidden;position:relative;border-top:3px solid #16212c;border-bottom:1px solid #eef1f5;border-left:1px solid #eef1f5;background:#e9ecf0} .col_droite .bloc_element .titre{float:left;width:238px;padding:8px 16px 6px;border-right:1px solid #fff;background:#fafbfc} .col_droite .bloc_element .element:hover .titre{background:#e9ecf0} -.col_droite .bloc_element .fleche{display:block;float:right;border-left:1px solid #e4e6e9;position:absolute;right:13px;top:33%;background:url(/medias/web/img/sprites/icos_petites.png)-1px -108px no-repeat;width:13px;height:22px} +.col_droite .bloc_element .fleche{display:block;float:right;border-left:1px solid #e4e6e9;position:absolute;right:13px;top:33%;background:url(/medias/web/img/sprites/icos_petites.png) -1px -108px no-repeat;width:13px;height:22px} .col_droite .bloc_element .element:hover .fleche{background-position:-15px -108px} .contenu_bloc_droit{padding:7px 16px 10px;overflow:hidden} .contenu_bloc_droit .liste_chevron li{padding:8px 0 6px} @@ -1189,10 +1189,10 @@ label i{font-style:normal;display:none} .col_droite .plus_partages .texte{float:left;width:190px;padding:0 10px 0 8px} .col_droite .sociaux .pictos{overflow:hidden;margin:10px 15px} .col_droite .sociaux .pictos span.text{float:left;width:130px;padding:0 15px 0 0;color:#464f57;line-height:120%} -.col_droite .recherche_resultat_pres.bloc_base{background:url(/medias/web/img/evenementiel/presidentielle_2012/bg_recherche_elections_col_droite.png)center 0 no-repeat #0b0423;color:#fff} +.col_droite .recherche_resultat_pres.bloc_base{background:url(/medias/web/img/evenementiel/presidentielle_2012/bg_recherche_elections_col_droite.png) center 0 no-repeat #0b0423;color:#fff} .col_droite .boite_recherche{background:0 0;padding:8px 16px 10px} .col_droite .recherche_resultat_pres.bloc_base .entete{border-top:0!important;border-bottom:0!important;padding-top:16px} -.col_droite .recherche_resultat_pres .entete span{display:inline-block;height:30px;background:url(/medias/web/img/textes/elections/bulle_2012_39x27_bg_fonce.png)no-repeat;padding-left:50px} +.col_droite .recherche_resultat_pres .entete span{display:inline-block;height:30px;background:url(/medias/web/img/textes/elections/bulle_2012_39x27_bg_fonce.png) no-repeat;padding-left:50px} .col_droite .recherche_resultat_pres .moteur_commune{width:274px} .col_droite .boite_recherche p{margin:8px 0;clear:both} .col_droite .boite_recherche .saisie{width:239px;float:right} @@ -1223,17 +1223,17 @@ label i{font-style:normal;display:none} .bloc_je .annonce{display:block;padding:8px 9px;background:#2e3942;color:#fff} .bloc_je .annonce .intro{display:block;text-transform:uppercase;font-weight:700} .bloc_je .previsu .bt_blanc_gris_32{margin:20px 0 0} -.bloc_je .tt_dossier_meilleur_monde{background:url(/medias/www/img/tit/tt_dossiers_meilleur_monde.png)left center no-repeat;display:block;width:250px;margin:0 9px;font-size:13px;color:#222;text-indent:-9999px} +.bloc_je .tt_dossier_meilleur_monde{background:url(/medias/www/img/tit/tt_dossiers_meilleur_monde.png) left center no-repeat;display:block;width:250px;margin:0 9px;font-size:13px;color:#222;text-indent:-9999px} .bloc_je .centrer{color:#747b83} .bloc_couvs{position:relative;margin:10px auto 3px} .bloc_couvs a{cursor:pointer;display:block;width:208px;left:35px;height:145px;overflow:hidden;border:1px solid #e7e7e7;box-shadow:0 0 3px #e7e7e7;position:absolute} .bloc_couvs.bloc_1_couv{height:145px} .bloc_couvs .couv_petite{width:146px;height:74px} -.bloc_couvs b{top:146px;display:block;width:280px;height:44px;background:url(/medias/www/img/plus_une_lemonde.png)left center no-repeat;position:relative} +.bloc_couvs b{top:146px;display:block;width:280px;height:44px;background:url(/medias/www/img/plus_une_lemonde.png) left center no-repeat;position:relative} .bloc_couvs.bloc_2_couv{width:247px;height:185px} .bloc_couvs.bloc_2_couv a{left:0} .bloc_couvs.bloc_2_couv .couv_petite{left:auto;top:auto;right:0;bottom:0} -.bloc_couvs.bloc_2_couv b{right:153px;top:153px;width:15px;height:15px;background:url(/medias/www/img/plus_une_lemonde.png)right center no-repeat;position:absolute} +.bloc_couvs.bloc_2_couv b{right:153px;top:153px;width:15px;height:15px;background:url(/medias/www/img/plus_une_lemonde.png) right center no-repeat;position:absolute} .bloc_couvs.bloc_3_couv{width:280px;height:278px} .bloc_couvs.bloc_3_couv .couv_petite{width:125px;height:86px;right:auto;top:auto;left:0;bottom:0} .bloc_couvs.bloc_3_couv .couv_petite.petite_1{left:auto;right:0} @@ -1262,8 +1262,8 @@ label i{font-style:normal;display:none} .conteneur_lives .live.petit .bandeau:hover{background-color:#fe2f2f;background-position:0 -25px;-webkit-transition:background-position .06s linear;-moz-transition:background-position .06s linear;-ms-transition:background-position .06s linear;-o-transition:background-position .06s linear;transition:background-position .06s linear;cursor:pointer} .conteneur_lives .live .bandeau .titre{float:left;padding:0 7px;width:220px;font-family:arial,sans-serif;font-size:13px;font-weight:700} .conteneur_lives .lives .chrome .titre{float:left;width:230px;height:25px;overflow:hidden;color:#fff;text-align:left;font-weight:700;font-family:arial,sans-serif;font-size:13px;line-height:25px} -.conteneur_lives .lives .chrome .titre .tt_live{display:inline-block;width:20px;height:10px;margin:0 5px 0 16px;text-indent:-9999px;background:url(/medias/web/img/sprites/icos_live.png)-162px 0} -.conteneur_lives .lives .chrome{background:url(/medias/web/img/textes/tt_live_bas.png)no-repeat #d50303;height:25px;line-height:23px;padding:0 5px 0 40px;display:none;width:283px;cursor:pointer} +.conteneur_lives .lives .chrome .titre .tt_live{display:inline-block;width:20px;height:10px;margin:0 5px 0 16px;text-indent:-9999px;background:url(/medias/web/img/sprites/icos_live.png) -162px 0} +.conteneur_lives .lives .chrome{background:url(/medias/web/img/textes/tt_live_bas.png) no-repeat #d50303;height:25px;line-height:23px;padding:0 5px 0 40px;display:none;width:283px;cursor:pointer} .conteneur_lives .live.grand .bandeau,.conteneur_lives.popuped .lives .chrome{cursor:default} .conteneur_lives .lives.grand .chrome{background-color:#000b15} .conteneur_lives .live .bandeau .voir,.conteneur_lives .lives .chrome a{display:inline-block;text-decoration:none;float:right;margin:4px 0 0 5px;height:15px;width:14px} @@ -1333,7 +1333,7 @@ label i{font-style:normal;display:none} #nav .international:hover{background:#0386c3;border-top-color:#026b9C} #nav .international:hover a{border-color:#0386c3} #nav.international,#nav.international li{border-top:3px solid #0386c3} -#nav_ariane.international .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right 0 no-repeat} +#nav_ariane.international .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right 0 no-repeat} #nav_ariane.international .ariane>a{color:#68b6db} .international #ariane_az .obf:hover,.international #ariane_az a:hover,.international .couleur_rubrique,.international .jour_parution,.international .tt_rubrique,.ombrelle.international .tt_rubrique_ombrelle,.ombrelle.international h2 .obf,.ombrelle.international h2 .obf:hover{color:#0386c3} .global.politique{border-top:3px solid #1f0d67} @@ -1343,7 +1343,7 @@ label i{font-style:normal;display:none} #nav.accueil .politique{border-top-color:#1f0d67} #nav .politique:hover a{border-color:#1f0d67} #nav.politique,#nav.politique li{border-top:3px solid #1f0d67} -#nav_ariane.politique .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -35px no-repeat} +#nav_ariane.politique .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -35px no-repeat} #nav_ariane.politique .ariane>a{color:#796ea4} .ombrelle.politique .tt_rubrique_ombrelle,.ombrelle.politique h2 .obf,.ombrelle.politique h2 .obf:hover,.politique #ariane_az .obf:hover,.politique #ariane_az a:hover,.politique .couleur_rubrique,.politique .tt_rubrique{color:#1f0d67} .global.societe{border-top:3px solid #d50303} @@ -1352,7 +1352,7 @@ label i{font-style:normal;display:none} #nav .societe:hover{background:#d50303;border-top-color:#AA0202} #nav .societe:hover a,#nav.accueil .societe{border-color:#d50303} #nav.societe,#nav.societe li{border-top:3px solid #d50303} -#nav_ariane.societe .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -70px no-repeat} +#nav_ariane.societe .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -70px no-repeat} #nav_ariane.societe .ariane>a{color:#fe9b9b} .ombrelle.societe .tt_rubrique_ombrelle,.ombrelle.societe h2 .obf,.ombrelle.societe h2 .obf:hover,.societe #ariane_az .obf:hover,.societe #ariane_az a:hover,.societe .couleur_rubrique,.societe .jour_parution,.societe .tt_rubrique{color:#d50303} .global.economie{border-top:3px solid #fe2f2f} @@ -1361,7 +1361,7 @@ label i{font-style:normal;display:none} #nav .economie:hover{background:#fe2f2f;border-top-color:#CB2626} #nav .economie:hover a,#nav.accueil .economie{border-color:#fe2f2f} #nav.economie,#nav.economie li{border-top:3px solid #fe2f2f} -#nav_ariane.economie .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -105px no-repeat} +#nav_ariane.economie .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -105px no-repeat} #nav_ariane.economie .ariane>a{color:#ffacac} #nav_ariane.economie .ariane .obf:hover,#nav_ariane.economie .ariane a:hover{color:#fff} .economie #ariane_az .obf:hover,.economie #ariane_az a:hover,.economie .couleur_rubrique,.economie .jour_parution,.economie .tt_rubrique,.ombrelle.economie .tt_rubrique_ombrelle,.ombrelle.economie h2 .obf,.ombrelle.economie h2 .obf:hover{color:#fe2f2f} @@ -1372,7 +1372,7 @@ label i{font-style:normal;display:none} #nav.culture,#nav.culture li{border-top:3px solid #C20447} #nav .culture:hover a{border-color:#f20559} #nav.accueil .culture{border-top-color:#f20559} -#nav_ariane.culture .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -140px no-repeat} +#nav_ariane.culture .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -140px no-repeat} #nav_ariane.culture .ariane>a{color:#fa9bbd} .culture #ariane_az .obf:hover,.culture #ariane_az a:hover,.culture .couleur_rubrique,.culture .jour_parution,.culture .tt_rubrique,.ombrelle.culture .tt_rubrique_ombrelle,.ombrelle.culture h2 .obf,.ombrelle.culture h2 .obf:hover{color:#f20559} #ariane_az .obf:hover,#ariane_az a:hover,.couleur_rubrique,.global .entete_deroule,.jour_parution,.ombrelle .tt_rubrique_ombrelle,.ombrelle h2 .obf,.ombrelle h2 .obf:hover,.tt_rubrique{color:#2e3942} @@ -1381,14 +1381,14 @@ label i{font-style:normal;display:none} #nav .debats:hover{background:#2e3942;border-top-color:#16212C} #nav,#nav li{border-top:3px solid #2e3942} #nav li:hover a{border-color:#2e3942} -#nav_ariane .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -175px no-repeat} +#nav_ariane .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -175px no-repeat} .global.education{border-top:3px solid #ff6e17} .global.education .entete_deroule{color:#ff6e17} .global.education .bandeau{background:#ff6e17!important} #nav .education:hover{background:#ff6e17;border-top-color:#16212C} #nav.education,#nav.education li{border-top:3px solid #ff6e17} #nav .education:hover a,#nav.accueil .education{border-color:#ff6e17} -#nav_ariane.education .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -490px no-repeat} +#nav_ariane.education .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -490px no-repeat} #nav_ariane.education .ariane>a{color:#f79b6e} .education #ariane_az .obf:hover,.education #ariane_az a:hover,.education .couleur_rubrique,.education .jour_parution,.education .tt_rubrique,.ombrelle.education .tt_rubrique_ombrelle,.ombrelle.education h2 .obf,.ombrelle.education h2 .obf:hover{color:#ff6e17} .education .col_droite .bloc_base .entete.theme{background:#ff6e17;color:#fff;border-top:none} @@ -1400,7 +1400,7 @@ label i{font-style:normal;display:none} #nav .planete:hover{background:#30932e;border-top-color:#16212C} #nav.planete,#nav.planete li{border-top:3px solid #30932e} #nav .planete:hover a,#nav.accueil .planete{border-color:#30932e} -#nav_ariane.planete .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -420px no-repeat} +#nav_ariane.planete .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -420px no-repeat} #nav_ariane.planete .ariane>a{color:#a3c383} .ombrelle.planete .tt_rubrique_ombrelle,.ombrelle.planete h2 .obf,.ombrelle.planete h2 .obf:hover,.planete #ariane_az .obf:hover,.planete #ariane_az a:hover,.planete .couleur_rubrique,.planete .jour_parution,.planete .tt_rubrique{color:#30932e} .global.sante{border-top:3px solid #189494} @@ -1409,7 +1409,7 @@ label i{font-style:normal;display:none} #nav .sante:hover{background:#189494;border-top-color:#16212C} #nav.sante,#nav.sante li{border-top:3px solid #189494} #nav .sante:hover a,#nav.accueil .sante{border-color:#189494} -#nav_ariane.sante .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -455px no-repeat} +#nav_ariane.sante .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -455px no-repeat} #nav .sport:hover,.global.sport .bandeau{background:#6faa12} #nav_ariane.sante .ariane>a{color:#83bbc3} .ombrelle.sante .tt_rubrique_ombrelle,.ombrelle.sante h2 .obf,.ombrelle.sante h2 .obf:hover,.sante #ariane_az .obf:hover,.sante #ariane_az a:hover,.sante .couleur_rubrique,.sante .jour_parution,.sante .tt_rubrique{color:#189494} @@ -1419,7 +1419,7 @@ label i{font-style:normal;display:none} #nav .sport:hover{border-top-color:#59880E} #nav .sport:hover a{border-color:#6faa12} #nav.sport,#nav.sport li,body.sport nav#nav,body.sport nav#nav li{border-top:3px solid #6faa12} -#nav_ariane.sport .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -210px no-repeat} +#nav_ariane.sport .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -210px no-repeat} #nav_ariane.sport .ariane>a{color:#b1e264} .ombrelle.sport .tt_rubrique_ombrelle,.ombrelle.sport h2 .obf,.ombrelle.sport h2 .obf:hover,.sport #ariane_az .obf:hover,.sport #ariane_az a:hover,.sport .couleur_rubrique,.sport .jour_parution,.sport .tt_rubrique{color:#6faa12} .global.sciences{border-top:3px solid #0cb4ae} @@ -1429,7 +1429,7 @@ label i{font-style:normal;display:none} #nav .sciences:hover{background:#0cb4ae;border-top-color:#0A908B} #nav .sciences:hover a{border-color:#0cb4ae} #nav.sciences,#nav.sciences li{border-top:3px solid #0cb4ae} -#nav_ariane.sciences .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -245px no-repeat} +#nav_ariane.sciences .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -245px no-repeat} #nav .techno:hover,.global.techno .bandeau{background:#006169} #nav_ariane.sciences .ariane>a{color:#9ee1df} .ombrelle.sciences .tt_rubrique_ombrelle,.ombrelle.sciences h2 .obf,.ombrelle.sciences h2 .obf:hover,.sciences #ariane_az .obf:hover,.sciences #ariane_az a:hover,.sciences .jour_parution,.sciences .tt_rubrique,.sicences .couleur_rubrique{color:#0cb4ae} @@ -1439,7 +1439,7 @@ label i{font-style:normal;display:none} #nav .techno:hover{border-top-color:#004E54} #nav .techno:hover a{border-color:#006169} #nav.techno,#nav.techno li{border-top:3px solid #006169} -#nav_ariane.techno .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -280px no-repeat} +#nav_ariane.techno .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -280px no-repeat} #nav .style:hover,.global.style .bandeau{background:#020818} #nav_ariane.techno .ariane>a{color:#89c1c6} .ombrelle.techno .tt_rubrique_ombrelle,.ombrelle.techno h2 .obf,.ombrelle.techno h2 .obf:hover,.techno #ariane_az .obf:hover,.techno #ariane_az a:hover,.techno .couleur_rubrique,.techno .jour_parution,.techno .tt_rubrique{color:#006169} @@ -1449,7 +1449,7 @@ label i{font-style:normal;display:none} #nav .style:hover{border-top-color:#050F31} #nav .style:hover a{border-color:#020818} #nav.style,#nav.style li{border-top:3px solid #020818} -#nav_ariane.style .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -315px no-repeat} +#nav_ariane.style .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -315px no-repeat} #nav .vous:hover,.global.vous .bandeau{background:#820250} #nav_ariane.style .ariane>a{color:#6a718b} .ombrelle.style .tt_rubrique_ombrelle,.ombrelle.style h2 .obf,.ombrelle.style h2 .obf:hover,.style .couleur_rubrique,.style .jour_parution,.style .tt_rubrique{color:#020818} @@ -1460,7 +1460,7 @@ label i{font-style:normal;display:none} #nav .vous:hover{border-top-color:#680240} #nav .vous:hover a{border-color:#820250} #nav.vous,#nav.vous li{border-top:3px solid #820250} -#nav_ariane.vous .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -350px no-repeat} +#nav_ariane.vous .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -350px no-repeat} .bg_abo,.global.abonnes .bandeau{background:#ffd500} #nav_ariane.vous .ariane>a{color:#fa9bbd} .ombrelle.vous .tt_rubrique_ombrelle,.ombrelle.vous h2 .obf,.ombrelle.vous h2 .obf:hover,.vous #ariane_az .obf:hover,.vous #ariane_az a:hover,.vous .couleur_rubrique,.vous .jour_parution,.vous .tt_rubrique{color:#820250} @@ -1472,30 +1472,30 @@ label i{font-style:normal;display:none} #nav.abonnes,#nav.abonnes li{border-top:3px solid #ffd500} #nav .abonnes{float:none;overflow:hidden} #alerte_election_coldroite .contenu_bloc_droit,.boite_recherche{overflow:visible} -#nav_ariane.abonnes .ariane{background:url(/medias/web/img/sprites/sous_nav.png)right -525px no-repeat} +#nav_ariane.abonnes .ariane{background:url(/medias/web/img/sprites/sous_nav.png) right -525px no-repeat} #nav_ariane.abonnes .ariane>a{color:#ca0} .ombrelle.vous .tt_rubrique_ombrelle,.ombrelle.vous h2 .obf,.ombrelle.vous h2 .obf:hover,.vous #ariane_az .obf:hover,.vous #ariane_az a:hover,.vous .jour_parution,.vous .tt_rubrique{color:#820250} .abonnes #ariane_az .obf:hover,.abonnes #ariane_az a:hover,.abonnes .couleur_rubrique,.abonnes .jour_parution,.abonnes .tt_rubrique,.ombrelle.abonnes .tt_rubrique_ombrelle,.ombrelle.abonnes h2 .obf,.ombrelle.abonnes h2 .obf:hover{color:#ffd500} #ariane_az .ariane .obf:hover,#ariane_az .ariane a:hover,#nav_ariane .ariane.actif a,#nav_ariane .ariane.actif span{color:#fff} .global.presidentielle{border-top:0} -.global.presidentielle .entete_deroule,.global.presidentielle .entete_deroule:hover{background:url(/medias/web/img/textes/elections/bandeau_deroule_presidentielles2012.png)no-repeat;text-indent:-9999px} +.global.presidentielle .entete_deroule,.global.presidentielle .entete_deroule:hover{background:url(/medias/web/img/textes/elections/bandeau_deroule_presidentielles2012.png) no-repeat;text-indent:-9999px} .global.presidentielle .entete_deroule:hover{background-position:0 -33px} .titre_bulle_2012{color:#d50303} .bulle_2012_39x27{display:inline-block;width:39px;height:27px;background:url(/medias/web/img/textes/elections/bulle_2012_39x27.png)} .bulle_2012_73x51{display:inline-block;width:73px;height:51px;margin-left:4px;text-indent:-9999px;vertical-align:bottom;background:url(/medias/web/img/textes/elections/bulle_2012_73x51.png)} -.deroule_fleuve .logo_annee_france{height:76px;padding:10px 0 0 115px;background:url(/medias/web/img/habillage/logo_annee_france.png)left top no-repeat} -.deroule_fleuve .carte_annee_france{padding-right:204px;height:226px;margin-bottom:15px;background:url(/medias/web/img/habillage/carte_annee_france.jpg)right top no-repeat} +.deroule_fleuve .logo_annee_france{height:76px;padding:10px 0 0 115px;background:url(/medias/web/img/habillage/logo_annee_france.png) left top no-repeat} +.deroule_fleuve .carte_annee_france{padding-right:204px;height:226px;margin-bottom:15px;background:url(/medias/web/img/habillage/carte_annee_france.jpg) right top no-repeat} .deroule_fleuve .carte_annee_france a{display:block;font-size:11px;font-weight:700;line-height:.96rem;margin-bottom:1.7rem;margin-left:4px} .col_droite .alerte_election{display:block;width:312px;height:48px;background:url(/medias/web/img/textes/elections/tetiere-bloc-formulaire-alerte.png);text-indent:-9999px} .col_droite .erreur{display:block;width:292px} #alerte_election_coldroite .conteneur_autocompletion,.col_droite .inscription_alerte_election .saisie{width:272px} -.boite_recherche{background:url(/medias/web/img/evenementiel/presidentielle_2012/bg_recherche_elections.png)center 0 no-repeat #f8f9fb;padding:16px 16px 10px;color:#fff} +.boite_recherche{background:url(/medias/web/img/evenementiel/presidentielle_2012/bg_recherche_elections.png) center 0 no-repeat #f8f9fb;padding:16px 16px 10px;color:#fff} .boite_recherche .bord_double_gris_blanc{margin:0 4px;display:inline-block;line-height:20px;font-weight:700} .bord_top3_politique .boite_recherche input:first-child{width:265px} .boite_recherche .bord_double_gris_blanc span{padding:0 3px} .bord_top3_politique select{width:175px} .boite_recherche .conteneur_autocompletion .ui-state-hover{font-weight:700} -.boite_recherche .txt15_120{background:url(/medias/web/img/textes/elections/bulle_2012_39x27_bg_fonce.png)no-repeat;padding-left:50px;height:30px;line-height:26px} +.boite_recherche .txt15_120{background:url(/medias/web/img/textes/elections/bulle_2012_39x27_bg_fonce.png) no-repeat;padding-left:50px;height:30px;line-height:26px} .boite_recherche strong{display:inline-block} .boite_inline .boite_recherche>p,.une_edito .boite_recherche>p{display:inline} .une_edito .grid_12 .boite_recherche>p{display:block;margin:5px 0 0} @@ -1586,7 +1586,7 @@ img.spacer{width:1px;height:1px} #header-liberation .header-base .sites-info-search .info span{display:block;color:grey;font-size:11.2px;font-family:Arial,Verdana,sans-serif;padding-top:9px} #header-liberation .header-base .sites-info-search .search{display:block;width:278px;height:22px;border:1px solid grey} #header-liberation .header-base .sites-info-search .search input[type=text]{border:0;color:grey;height:22px;width:220px;padding:0 5px} -#header-liberation .header-base .sites-info-search .search input[type=submit]{background:url(http://s0.libe.com/libe/img/common/_sprites_header/header.png?df8de01457fa)0 -32px no-repeat;display:block;float:right;width:29px;height:22px;border:0} +#header-liberation .header-base .sites-info-search .search input[type=submit]{background:url(http://s0.libe.com/libe/img/common/_sprites_header/header.png?df8de01457fa) 0 -32px no-repeat;display:block;float:right;width:29px;height:22px;border:0} #header-liberation .header-base .nav .nav2 li,#header-liberation .header-base .nav li{display:block;float:left} #header-liberation .header-base .links h2{font-weight:400;text-transform:uppercase;font-size:11px;height:16px} #header-liberation .header-base .links ul li{font-family:Arial,Verdana,sans-serif;font-size:11.5px} @@ -1703,11 +1703,11 @@ body.iframe{padding-top:0} .site-liberation #header-liberation h1,.site-liberation #header-liberation h2{font-family:Verdana,Arial,Helvetica,sans-serif} .site-liberation .hot-topics{display:block;clear:both;margin:14px 10px 0;padding:14px 0;font-size:11px} .site-liberation .hot-topics h1{border-right:1px dotted;float:left;margin:0 0 0 21px;padding:0 21px 0 0;text-transform:uppercase;font-size:20px} -.site-liberation .hot-topics h5{float:left;margin:0 0 0 21px;padding:5px 21px 5px 0;background:url(http://s0.libe.com/libe/img/common/bg-puce-losange.png?099dfb8021ab)center right no-repeat;text-transform:uppercase;font-size:12px} +.site-liberation .hot-topics h5{float:left;margin:0 0 0 21px;padding:5px 21px 5px 0;background:url(http://s0.libe.com/libe/img/common/bg-puce-losange.png?099dfb8021ab) center right no-repeat;text-transform:uppercase;font-size:12px} .site-liberation .hot-topics ul{float:left;margin:-1px 0 0 7px} .site-liberation .hot-topics li{display:block;float:left;padding:3px 7px 5px;margin:3px 10px 3px 0} #header-liberation .header-base .digitalpaper,#header-liberation .header-base .home,#header-liberation .header-base .links,#header-liberation .header-base .sites-info-search{height:120px} -#header-liberation .header-base .home .logo{background:url(http://s0.libe.com/libe/img/common/logo-liberation-150.png?f613aa3caae2)no-repeat;width:150px;height:55px;margin-top:33px} +#header-liberation .header-base .home .logo{background:url(http://s0.libe.com/libe/img/common/logo-liberation-150.png?f613aa3caae2) no-repeat;width:150px;height:55px;margin-top:33px} #header-liberation .header-base .links{display:block;width:280px;height:110px;padding-top:10px} #header-liberation .header-base .links .lnk1,#header-liberation .header-base .links .lnk2{float:left} #header-liberation .header-base .links .lnk1{position:relative;width:123px} @@ -1900,8 +1900,8 @@ body.auth-unlogged #core-liberation .form-monlibe-unlogged form{opacity:.3;-ms-f .col-part .block .follow-libe .fb p,.col-part .block .follow-libe .nv-rss p,.col-part .block .follow-libe .twitter p{font-size:10px} .col-part .block .follow-libe .twitter p{padding:0 5px 0 10px} .col-part .block .follow-libe .nv-rss a.nv,.col-part .block .follow-libe .nv-rss a.rss{display:inline-block;height:18px;padding:2px 0 0 23px} -.col-part .block .follow-libe .nv-rss a.rss{background:url(http://s0.libe.com/libe/img/common/ico-rss.jpg?e5d7b4c9c034)0 1px no-repeat} -.col-part .block .follow-libe .nv-rss a.nv{background:url(http://s0.libe.com/libe/img/common/ico-netvibes.jpg?f74e57884286)0 1px no-repeat;padding-right:3px} +.col-part .block .follow-libe .nv-rss a.rss{background:url(http://s0.libe.com/libe/img/common/ico-rss.jpg?e5d7b4c9c034) 0 1px no-repeat} +.col-part .block .follow-libe .nv-rss a.nv{background:url(http://s0.libe.com/libe/img/common/ico-netvibes.jpg?f74e57884286) 0 1px no-repeat;padding-right:3px} .col-part .block .follow-libe img.clear{display:block;margin-top:5px} .col-part .block .follow-libe img.visual{margin-top:7px} .block-basic-rounded{margin-bottom:20px} @@ -1962,7 +1962,7 @@ body.auth-unlogged #core-liberation .form-monlibe-unlogged form{opacity:.3;-ms-f #core-liberation .block-comments .comment_level_0>.comment_outer,#core-liberation .flat-comments .comment>.comment_outer{margin-left:-1px;border:1px solid;border-top:none} #core-liberation .block-comments .block-content .detail_comment{border-top:1px solid;margin-top:-1px} #core-liberation .block-comments .block-content .detail_comment>.comment_outer{margin-left:-1px;border:1px solid;border-top:none} -#core-liberation .block-comments .block-content .comment_selected>.comment_outer .icon{position:absolute;right:0;top:0;display:block;width:28px;height:25px;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49)-59px -36px no-repeat} +#core-liberation .block-comments .block-content .comment_selected>.comment_outer .icon{position:absolute;right:0;top:0;display:block;width:28px;height:25px;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49) -59px -36px no-repeat} #core-liberation .block-comments .block-content .comment_selected>.comment_outer .meta .details,#core-liberation .block-comments .block-content .comment_selected>.comment_outer .meta .note,#core-liberation .block-comments .block-content .comment_selected>.comment_outer .meta .who{padding-right:35px} #core-liberation .block-comments .block-content .comment_draft>.comment_outer{background-image:url(http://s0.libe.com/libe/img/common/bg-comment-draft.png?4158f727c626)} #core-liberation .block-comments .block-content .comment_collapsed>.comment_content>*,#core-liberation .block-comments .block-content .comment_collapsed>.visual{display:none} @@ -1979,10 +1979,10 @@ body.auth-unlogged #core-liberation .form-monlibe-unlogged form{opacity:.3;-ms-f #core-liberation .block-comments .block-content .comment_reply_links .comment_flag .icon{position:static;display:block;width:13px;height:12px;float:left;background-image:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49);background-repeat:no-repeat;background-position:-33px -2px;margin:3px 6px 0 0} #core-liberation .block-comments .block-content .comment_reply_links .comment_flag:hover .icon{background-position:-33px -18px} #core-liberation .block-comments .block-content .comment_reply_links .comment_reply{display:none;float:right;padding:5px 10px 7px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px} -#core-liberation .block-comments .block-content .comment_libe>.comment_outer .meta .icon{position:absolute;right:0;top:0;display:block;width:36px;height:13px;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49)0 -84px no-repeat} +#core-liberation .block-comments .block-content .comment_libe>.comment_outer .meta .icon{position:absolute;right:0;top:0;display:block;width:36px;height:13px;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49) 0 -84px no-repeat} #core-liberation .block-comments .block-content .comment_libe>.comment_outer .meta .details,#core-liberation .block-comments .block-content .comment_libe>.comment_outer .meta .note,#core-liberation .block-comments .block-content .comment_libe>.comment_outer .meta .who{padding-right:41px} #core-liberation .block-comments .block-content .is_removed>.comment_outer{padding:3px 8px 5px} -#core-liberation .block-comments .block-content .is_removed>.comment_outer .icon{float:left;display:block;width:12px;height:11px;margin:3px 8px 0 0;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49)no-repeat} +#core-liberation .block-comments .block-content .is_removed>.comment_outer .icon{float:left;display:block;width:12px;height:11px;margin:3px 8px 0 0;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49) no-repeat} #core-liberation .block-comments .comment_replies{padding:10px;display:none;border-bottom:1px solid} #core-liberation .block-comments .comment_cutoff,#core-liberation .block-usercomments .comment_replies{display:block} #core-liberation .block-usercomments .noreplies{display:none} @@ -2004,17 +2004,17 @@ a.god:hover{background:#3c3c3c;color:#fff} #bar-liberation .other .god a{padding:5px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box} #bar-liberation .other .god a:hover{background-color:#ff0;color:#000} #bar-liberation .god .godenabled a{background:#3c3c3c;color:#fff} -#bar-liberation .god a.godenter{background:url(http://s0.libe.com/libe/img/common/icon_godenter.png?9ffa63824b5c)center center no-repeat #fff} -#bar-liberation .god a.godquit{background:url(http://s0.libe.com/libe/img/common/icon_godquit.png?a59104f30cfb)center center no-repeat #000} -#bar-liberation .god a.godquit:hover{background:url(http://s0.libe.com/libe/img/common/icon_godenter.png?9ffa63824b5c)center center no-repeat #ff0} -#bar-liberation .god a.jumptoadmin{background:url(http://s0.libe.com/back/img/icon_home.png?c1de55b52ccc)center center no-repeat #fff} -#bar-liberation .god a.jumptoedit{background:url(http://s0.libe.com/back/img/icon_changelink.png?4a31d309d5db)center center no-repeat #fff} +#bar-liberation .god a.godenter{background:url(http://s0.libe.com/libe/img/common/icon_godenter.png?9ffa63824b5c) center center no-repeat #fff} +#bar-liberation .god a.godquit{background:url(http://s0.libe.com/libe/img/common/icon_godquit.png?a59104f30cfb) center center no-repeat #000} +#bar-liberation .god a.godquit:hover{background:url(http://s0.libe.com/libe/img/common/icon_godenter.png?9ffa63824b5c) center center no-repeat #ff0} +#bar-liberation .god a.jumptoadmin{background:url(http://s0.libe.com/back/img/icon_home.png?c1de55b52ccc) center center no-repeat #fff} +#bar-liberation .god a.jumptoedit{background:url(http://s0.libe.com/back/img/icon_changelink.png?4a31d309d5db) center center no-repeat #fff} #mainContent .god{font-size:10px;padding:6px;border-radius:2px;-moz-border-radius:4px;-webkit-border-radius:4px} #core-liberation .block-partnership .block-content img.visual{display:block;float:left;width:140px;margin-top:4px;margin-bottom:10px} #core-liberation .block-partnership .block-content h4{font-family:Verdana,sans-serif;font-size:12px;font-weight:700;margin:0 0 11px 150px} #core-liberation .block-partnership .block-content p{margin:0 0 10px 154px} #core-liberation .block-partnership .block-content ul{clear:both;margin:10px 0 0} -#core-liberation .block-partnership .block-content a.arrow,#core-liberation .block-partnership .block-content ul li a{background:url(http://s0.libe.com/libe/img/common/ico-lnk-arrow-red.gif?feba6ff926a7)0 4px no-repeat;padding-left:15px} +#core-liberation .block-partnership .block-content a.arrow,#core-liberation .block-partnership .block-content ul li a{background:url(http://s0.libe.com/libe/img/common/ico-lnk-arrow-red.gif?feba6ff926a7) 0 4px no-repeat;padding-left:15px} #core-liberation .block-pager-labo{padding:14px} #core-liberation .block-pager-labo .block-content,#core-liberation .block-pager-labo .block-top{margin-bottom:14px} #core-liberation .block-pager-labo .list li{margin-bottom:0} @@ -2029,7 +2029,7 @@ a.god:hover{background:#3c3c3c;color:#fff} #core-liberation .w29unit .block-pager-labo .list img.visual{width:252px;height:142px} #core-liberation .col .block-pager-labo .list li.new-line,#core-liberation .col .block-pager-labo .list li:first-child{margin-left:0} #core-liberation .block-podcast .block-content p.note{font-size:10px} -#core-liberation .block-podcast .block-content p.logo-pc{background:url(http://s0.libe.com/libe/img/common/bg-podcast.png?bc9501afa40e)left center no-repeat;padding:0 0 0 85px} +#core-liberation .block-podcast .block-content p.logo-pc{background:url(http://s0.libe.com/libe/img/common/bg-podcast.png?bc9501afa40e) left center no-repeat;padding:0 0 0 85px} #core-liberation .block-podcast .block-content p{margin-bottom:10px} #core-liberation .block-podcast .block-content .lnk-podcast p{font-size:12px;margin-bottom:5px;text-align:right;text-decoration:underline;font-weight:700} #core-liberation .block-podcast .block-content .lnk-podcast ul{display:block;height:20px} @@ -2073,7 +2073,7 @@ a.god:hover{background:#3c3c3c;color:#fff} #core-liberation .block-np .from ul li.r{width:133px;float:right;text-align:left} #core-liberation .block-np .from ul li img.visual{display:block;height:148px;border:1px solid} .w11unit .block-np .from .btn-read-digitalpaper a,.w11unit .block-np .from .btn-read-digitalpaper span{display:table-cell;vertical-align:middle;width:214px;height:32px} -.col-contextual .block-subscribe-newsletter .visual{display:block;float:left;margin:3px 14px 14px 0;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49)-144px -36px no-repeat;width:56px;height:37px} +.col-contextual .block-subscribe-newsletter .visual{display:block;float:left;margin:3px 14px 14px 0;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49) -144px -36px no-repeat;width:56px;height:37px} .col-contextual .block-subscribe-newsletter p{margin:0 0 14px 74px} .col-contextual .block-subscribe-newsletter p strong{display:inline-block;margin-bottom:7px} .col-contextual .block-subscribe-newsletter input[type=submit]{float:right} @@ -2082,7 +2082,7 @@ a.god:hover{background:#3c3c3c;color:#fff} #core-liberation .col-contextual .block-promo .block-content h4{font-family:Verdana,sans-serif;font-size:12px;font-weight:700;margin:0 0 11px 154px} #core-liberation .col-contextual .block-promo .block-content p{margin:0 0 10px 154px} #core-liberation .col-contextual .block-promo .block-content ul{clear:both;margin:10px 0 0} -#core-liberation .col-contextual .block-promo .block-content a.arrow,#core-liberation .col-contextual .block-promo .block-content ul li a{background:url(http://s0.libe.com/libe/img/common/ico-lnk-arrow-red.gif?feba6ff926a7)0 4px no-repeat;padding-left:15px} +#core-liberation .col-contextual .block-promo .block-content a.arrow,#core-liberation .col-contextual .block-promo .block-content ul li a{background:url(http://s0.libe.com/libe/img/common/ico-lnk-arrow-red.gif?feba6ff926a7) 0 4px no-repeat;padding-left:15px} #core-liberation .block-all-forums .headrest{margin:0 0 7px;border-bottom:1px solid} #core-liberation .block-all-forums .headrest h5{border-bottom:0;text-transform:none;padding:0 0 7px} #core-liberation .block-all-forums .headrest .community-bubble{float:left;margin:4px 10px 0 0} @@ -2114,7 +2114,7 @@ a.god:hover{background:#3c3c3c;color:#fff} #core-liberation .block-all-blogs .block-content .list li{clear:none} #core-liberation .block-all-blogs .block-content .list li.new-line{clear:both} #core-liberation .block-all-blogs .block-content .list .blog h5 .icon{display:none} -#core-liberation .block-all-blogs .block-content .list .blog-libe h5 .icon{display:block;position:absolute;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49)-38px -84px no-repeat;width:20px;height:7px;margin-top:4px;top:7px;right:7px} +#core-liberation .block-all-blogs .block-content .list .blog-libe h5 .icon{display:block;position:absolute;background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49) -38px -84px no-repeat;width:20px;height:7px;margin-top:4px;top:7px;right:7px} #core-liberation .block-all-blogs .block-content .list .blog-libe{padding-top:3px} #core-liberation .block-all-blogs .block-content .list .blog-libe h5{position:relative;display:block;padding:7px 40px 7px 7px} #core-liberation .block-all-blogs .block-content .list .blog-libe img.visual{margin-top:0} @@ -2184,7 +2184,7 @@ a.god:hover{background:#3c3c3c;color:#fff} #core-liberation .headrest h5{border-bottom:1px solid;text-transform:uppercase;padding:7px 0} #core-liberation .headrest h4{margin-bottom:7px;font-weight:700} #core-liberation .headrest .links-inline{padding-left:30px;font-size:10px;font-weight:400;text-transform:none} -#core-liberation .headrest .folder{background:url(http://s0.libe.com/libe/img/common/bg-headrest-triangle.png?589ad9ce9011)right center no-repeat} +#core-liberation .headrest .folder{background:url(http://s0.libe.com/libe/img/common/bg-headrest-triangle.png?589ad9ce9011) right center no-repeat} #core-liberation .headrest .folder img.visual{display:block;float:left;margin-right:14px} #core-liberation .headrest .folder h5{border-bottom:none;padding:5px 5px 7px} #core-liberation .headrest .folder h2{margin-left:14px;padding-top:3px;font-weight:400} @@ -2240,7 +2240,7 @@ form .btn-monlibe input[type=reset]{opacity:.9} #bar-liberation a:hover,.site-liberation .toolbox .comment:hover,.site-liberation .toolbox .facebook:hover,.site-liberation .toolbox .twitter,.site-liberation .toolbox .txt-min:hover,.site-liberation .toolbox .txt-plus:hover,.site-liberation .toolbox .txt-reset:hover,form .btn-rounded-degraded input[type=button]:focus,form .btn-rounded-degraded input[type=button]:hover,form .btn-rounded-degraded input[type=submit]:focus,form .btn-rounded-degraded input[type=submit]:hover{text-decoration:none} form .btn-rounded-degraded input[type=button],form .btn-rounded-degraded input[type=submit]{border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border:0;padding:0 10px 6px;height:35px;cursor:pointer;cursor:hand;font-size:13px;font-family:Verdana,sans-serif;font-weight:700} .btn-read-digitalpaper{display:block;border:1px solid;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;padding:5px 7px 7px} -.btn-read-digitalpaper a,.btn-read-digitalpaper span{display:block;min-height:32px;background:url(http://s0.libe.com/libe/img/common/reader_picto.png?8fdcc4850538)right top no-repeat;padding-right:50px;font-size:12px} +.btn-read-digitalpaper a,.btn-read-digitalpaper span{display:block;min-height:32px;background:url(http://s0.libe.com/libe/img/common/reader_picto.png?8fdcc4850538) right top no-repeat;padding-right:50px;font-size:12px} #core-liberation .pagination{float:none;margin-bottom:14px;margin-top:21px;border-top:1px dotted;border-bottom:1px dotted;padding-top:3px;text-align:center} #core-liberation .pagination .first{float:left;background-image:url(http://s0.libe.com/libe/img/common/bg-search-pagination-first.png?71b3279ad5d6);background-repeat:no-repeat;background-position:0 5px;margin-left:10px;padding-left:20px} #core-liberation .pagination .prev{float:left;background-image:url(http://s0.libe.com/libe/img/common/bg-search-pagination-prev.png?0ae4b5772718);background-repeat:no-repeat;background-position:0 6px;margin-left:10px;padding-left:15px} @@ -2304,9 +2304,9 @@ body.init-bar-is-closed #bar-liberation{height:15px} #bar-liberation .content .activities-stream,#bar-liberation .content .close,#bar-liberation .content .login,#bar-liberation .content .mail-box,#bar-liberation .content .open,#bar-liberation .content .other,#bar-liberation .content .personal-options{display:none;border-left:1px solid;border-right:1px solid;border-bottom:1px solid;position:absolute;top:0;height:40px} #bar-liberation .content .activities-stream .list .more{display:none} #bar-liberation .content .activities-stream .list .text,#bar-liberation .content .activities-stream .list p{display:inline} -#bar-liberation .content a.displayer .arrow{background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ferme.png?1ecaa0c231c9)no-repeat;display:block;position:absolute;right:10px;top:16px;width:10px;height:10px} -#bar-liberation .content a.displayer:hover .arrow{background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ferme_grey.png?a9a52344ba82)no-repeat} -#bar-liberation .content a.displayer .arrow-displayed,#bar-liberation .content a.displayer:hover .arrow-displayed{background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ouvert.png?c782eb482038)1px 1px no-repeat} +#bar-liberation .content a.displayer .arrow{background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ferme.png?1ecaa0c231c9) no-repeat;display:block;position:absolute;right:10px;top:16px;width:10px;height:10px} +#bar-liberation .content a.displayer:hover .arrow{background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ferme_grey.png?a9a52344ba82) no-repeat} +#bar-liberation .content a.displayer .arrow-displayed,#bar-liberation .content a.displayer:hover .arrow-displayed{background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ouvert.png?c782eb482038) 1px 1px no-repeat} #bar-liberation .content ul.list li{margin:0 10px;min-height:32px;padding:6px 0 2px;border-bottom:1px solid;line-height:16px} #bar-liberation .content ul.list li a,#bar-liberation .content ul.list li a:hover,#core-liberation .block-activities .block-content ul li a,#core-liberation .block-activities .block-content ul li a:hover{text-decoration:underline} #bar-liberation .content ul.list li:last-of-type{border-bottom:none} @@ -2315,7 +2315,7 @@ body.init-bar-is-closed #bar-liberation{height:15px} #bar-liberation .content .close a{display:block;text-align:center;padding-top:12px;height:28px} #bar-liberation .content .open{display:none;height:15px;left:0;z-index:10010;border:none} #bar-liberation .content .open a{display:block;height:100%;padding-left:40px;font-size:10px} -#bar-liberation .content .open a .arrow{position:absolute;display:block;width:28px;height:100%;left:0;top:0;border-left:1px solid;border-right:1px solid;background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ouvert.png?c782eb482038)center center no-repeat} +#bar-liberation .content .open a .arrow{position:absolute;display:block;width:28px;height:100%;left:0;top:0;border-left:1px solid;border-right:1px solid;background:url(http://s0.libe.com/libe/img/common/_sprites_header/triangle_ouvert.png?c782eb482038) center center no-repeat} #bar-liberation .content .login{left:29px;width:1037px;z-index:10020} #bar-liberation .content .login h3{font-family:Verdana,sans-serif;font-weight:400;font-size:12px;padding:12px 10px 0} #bar-liberation .content .login a.subscribe{position:absolute;display:block;top:10px;right:230px;padding:3px 10px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px} @@ -2360,7 +2360,7 @@ body.init-bar-is-closed #bar-liberation{height:15px} #page-404 .text{padding-top:5px} #page-404 form{display:block;margin:21px 0 0 140px;width:298px;height:22px;border:1px solid} #page-404 form input[type=text]{border:0;height:22px;width:250px;padding:0 5px} -#page-404 form input[type=submit]{background:url(http://s0.libe.com/libe/img/common/_sprites_header/header.png?df8de01457fa)0 -32px no-repeat;display:block;float:right;width:29px;height:22px;border:0} +#page-404 form input[type=submit]{background:url(http://s0.libe.com/libe/img/common/_sprites_header/header.png?df8de01457fa) 0 -32px no-repeat;display:block;float:right;width:29px;height:22px;border:0} #page-mailfriend{font-size:11px} #page-mailfriend .content{width:280px;padding:10px;margin:auto} #page-mailfriend .content h2{margin-bottom:10px} @@ -2373,7 +2373,7 @@ body.init-bar-is-closed #bar-liberation{height:15px} #page-paywall .content .arguments .arg .price,#page-paywall .content .arguments .arg h4,#page-paywall .content .video h5{font-family:Georgia,"Times New Roman",Times,serif} #page-paywall .content{position:relative;padding:20px 0} #page-paywall .content a.close{display:block;float:right} -#page-paywall .content a.close span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49)-20px -98px no-repeat;display:block;margin:auto;width:15px;height:15px} +#page-paywall .content a.close span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49) -20px -98px no-repeat;display:block;margin:auto;width:15px;height:15px} #page-paywall .content a.close strong{text-transform:uppercase;font-size:8px} #page-paywall .content .video{margin-bottom:20px;width:437px} #page-paywall .content .video h5{margin-bottom:15px;padding:3px 0 5px;border-top:1px dotted;border-bottom:1px dotted;float:right;font-size:16px;font-style:italic;font-weight:400} @@ -2431,12 +2431,12 @@ body.access-ess #page-paywall .content .arguments .arg{float:none;margin:auto} .site-liberation .text-item p.essential a:hover{color:#E20000} .site-liberation .text-item p.others{margin:21px 0;border:1px dotted #b3b3b3;border-left:0;border-right:0;padding:7px 0 9px} .site-liberation .text-item p.others span{text-transform:uppercase;padding-right:7px} -.site-liberation .slug{background:url(http://s0.libe.com/libe/img/common/bg-puce-losange.png?099dfb8021ab)right center no-repeat;padding-right:18px;margin-right:3px;text-transform:uppercase;font-size:10px} +.site-liberation .slug{background:url(http://s0.libe.com/libe/img/common/bg-puce-losange.png?099dfb8021ab) right center no-repeat;padding-right:18px;margin-right:3px;text-transform:uppercase;font-size:10px} .site-liberation .author{font-size:10px} .site-liberation .author strong{text-transform:uppercase} .site-liberation a,.site-liberation a p{text-decoration:none;outline:0} .site-liberation .block-call-items .mini-tpl .whosaid h5 a.theme:hover,.site-liberation .block-call-items .tpl-search-results h4 a:hover span,.site-liberation a:hover,.site-liberation a:hover h2,.site-liberation a:hover h3,.site-liberation a:hover h4,.site-liberation a:hover h5,.site-liberation a:hover h6,.site-liberation a:hover p{text-decoration:underline} -.site-liberation .lnk-comments{background:url(http://s0.libe.com/libe/img/common/ico-lnk-comment.png?48525c2557e6)left 2px no-repeat;padding-left:20px;font-size:10px;line-height:15px} +.site-liberation .lnk-comments{background:url(http://s0.libe.com/libe/img/common/ico-lnk-comment.png?48525c2557e6) left 2px no-repeat;padding-left:20px;font-size:10px;line-height:15px} .site-liberation .block-call-items .block-top{margin-bottom:10px} .site-liberation .block-call-items .block-top h5{padding:3px 10px;background-color:#e20000;color:#fff} .site-liberation .block-call-items .mini-tpl .lnk-libeplus,.site-liberation .block-call-items .mini-tpl .lnk-libeplus-big,.site-liberation .col-contextual .block-call-items .block-top h5{background:0 0;padding:0} @@ -2444,8 +2444,8 @@ body.access-ess #page-paywall .content .arguments .arg{float:none;margin:auto} .site-liberation .block-call-items .mini-tpl{border-bottom:1px dotted;margin-bottom:14px;clear:both} .site-liberation .block-call-items .mini-tpl:last-of-type{border-bottom:0;margin-bottom:0:} .site-liberation .block-call-items .mini-tpl .right{float:right} -.site-liberation .block-call-items .mini-tpl h2.lnk-libeplus:after,.site-liberation .block-call-items .mini-tpl h3.lnk-libeplus:after{content:'';display:inline-block;width:56px;height:14px;margin-left:10px;background:url(http://s0.libe.com/libe/img/common/ico-lnk-libeplus-big2.png?d4d49ea9ef21)no-repeat} -.site-liberation .block-call-items .mini-tpl .list-linked-items a.lnk-libeplus:after,.site-liberation .block-call-items .mini-tpl h5.lnk-libeplus:after{content:'';display:inline-block;width:56px;height:10px;margin-left:5px;background:url(http://s0.libe.com/libe/img/common/ico-lnk-libeplus2.png?39fe048f4782)no-repeat} +.site-liberation .block-call-items .mini-tpl h2.lnk-libeplus:after,.site-liberation .block-call-items .mini-tpl h3.lnk-libeplus:after{content:'';display:inline-block;width:56px;height:14px;margin-left:10px;background:url(http://s0.libe.com/libe/img/common/ico-lnk-libeplus-big2.png?d4d49ea9ef21) no-repeat} +.site-liberation .block-call-items .mini-tpl .list-linked-items a.lnk-libeplus:after,.site-liberation .block-call-items .mini-tpl h5.lnk-libeplus:after{content:'';display:inline-block;width:56px;height:10px;margin-left:5px;background:url(http://s0.libe.com/libe/img/common/ico-lnk-libeplus2.png?39fe048f4782) no-repeat} * html .site-liberation .block-call-items .mini-tpl h2.lnk-libeplus,* html .site-liberation .block-call-items .mini-tpl h3.lnk-libeplus{background-image:url(http://s0.libe.com/libe/img/common/ico-lnk-libeplus-big2.png?d4d49ea9ef21);background-repeat:no-repeat;background-position:right 4px;padding-right:60px} * html .site-liberation .block-call-items .mini-tpl .list-linked-items a.lnk-libeplus,* html .site-liberation .block-call-items .mini-tpl h5.lnk-libeplus{background-image:url(http://s0.libe.com/libe/img/common/ico-lnk-libeplus2.png?39fe048f4782);background-repeat:no-repeat;background-position:right 4px;padding-right:60px} .site-liberation .block-call-items .mini-tpl h1,.site-liberation .block-call-items .mini-tpl h2{margin-bottom:14px} @@ -2466,13 +2466,13 @@ body.access-ess #page-paywall .content .arguments .arg{float:none;margin:auto} .site-liberation .block-call-items .mini-tpl .subtitle .slug{font-weight:700} .site-liberation .block-call-items .mini-tpl .author{display:block;margin-bottom:5px;padding-top:1px} .site-liberation .block-call-items .list-linked-items span{text-transform:uppercase;font-size:11px;padding-right:7px} -.site-liberation .block-call-items .mini-tpl .label{background:url(http://s0.libe.com/libe/img/common/bg-separateur.gif?e78a16835c55)right center no-repeat;border:2px solid;min-height:45px} +.site-liberation .block-call-items .mini-tpl .label{background:url(http://s0.libe.com/libe/img/common/bg-separateur.gif?e78a16835c55) right center no-repeat;border:2px solid;min-height:45px} .site-liberation .block-call-items .mini-tpl .label h3{font-size:21px;font-weight:400;margin-bottom:0;margin-top:8px;margin-left:10px} .site-liberation .block-call-items .mini-tpl .label .visual{width:45px;margin:0 10px 0 0} .site-liberation .block-call-items .mini-tpl .whosaid{position:relative;margin-bottom:7px;padding:14px} .site-liberation .block-call-items .mini-tpl .whosaid h5 .theme{font-size:14px} .site-liberation .block-call-items .mini-tpl .whosaid h3{font-size:26px;font-weight:400;margin-bottom:28px} -.site-liberation .block-call-items .mini-tpl .whosaid a.zap{display:block;position:absolute;width:78px;height:21px;background:url(http://s0.libe.com/libe/img/common/btn_shaker.gif?6340e450364b)no-repeat;bottom:14px;right:14px} +.site-liberation .block-call-items .mini-tpl .whosaid a.zap{display:block;position:absolute;width:78px;height:21px;background:url(http://s0.libe.com/libe/img/common/btn_shaker.gif?6340e450364b) no-repeat;bottom:14px;right:14px} .site-liberation .block-call-items .mini-tpl .whosaid .answer{margin-top:10px} .site-liberation .block-call-items .mini-tpl .whosaid .answer h4{margin-bottom:10px} .site-liberation .block-call-items .mini-tpl .whosaid .answer a{float:right;font-size:14px} @@ -2523,7 +2523,7 @@ body.access-ess #page-paywall .content .arguments .arg{float:none;margin:auto} .site-liberation .block-call-items .tpl-labo-spotlight:first-of-type{padding-top:8px} .site-liberation .block-call-items .tpl-labo-spotlight .subscribe{margin-bottom:5px} .site-liberation .block-call-items .tpl-labo-spotlight .subscribe .toggle{font-size:10px;float:right;margin-right:10px} -.site-liberation .block-call-items .tpl-labo-spotlight .subscribe p.toggle a{background:url(http://s0.libe.com/libe/img/common/pi_arrow-down.gif?83c2b5fdcd15)0 5px no-repeat;padding-left:15px} +.site-liberation .block-call-items .tpl-labo-spotlight .subscribe p.toggle a{background:url(http://s0.libe.com/libe/img/common/pi_arrow-down.gif?83c2b5fdcd15) 0 5px no-repeat;padding-left:15px} .site-liberation .block-call-items .tpl-labo-spotlight .subscribe .sb-podcasts{font-size:10px;float:right;clear:both;display:none} .site-liberation .block-call-items .tpl-labo-podcast{border-left:6px solid #b30804;margin-bottom:0;padding:8px 0 7px 10px} .site-liberation .block-call-items .tpl-labo-podcast:first-of-type{padding-top:0} @@ -2568,7 +2568,7 @@ body.access-ess #page-paywall .content .arguments .arg{float:none;margin:auto} .site-liberation .block-call-items .tpl-visual-square-left-arround .visual{display:block;float:left;margin:3px 10px 0 0;width:84px;height:84px} .site-liberation .block-call-items .tpl-visual-square-left-arround h5{margin-bottom:0} .site-liberation .block-call-items .tpl-visual-square-left-arround p.subtitle{font-size:11px} -body.barry-white{background:url(http://s0.libe.com/libe/img/common/bg-body-fff.gif?62ad83bcadf5)center 0 repeat-y #f8f8f8} +body.barry-white{background:url(http://s0.libe.com/libe/img/common/bg-body-fff.gif?62ad83bcadf5) center 0 repeat-y #f8f8f8} body.slideshow{background-color:#333} body.iframe{background-color:#fff} body.slideshow .ad-top .megaban{background:#333} @@ -2648,9 +2648,9 @@ body.slideshow .ad-top .megaban{background:#333} #header-liberation .header-base .nav .cat-monlibe .nav2 .on,#header-liberation .header-base .nav .cat-monlibe .nav2 a:hover{color:#fe9900} #header-liberation .header-base .nav .cat-zoneabo .nav2 .on,#header-liberation .header-base .nav .cat-zoneabo .nav2 a:hover{color:#a00} #header-liberation .header-base .nav .cat-food .nav2 .on,#header-liberation .header-base .nav .cat-food .nav2 a:hover{color:#000} -#header-liberation .header-simple .header{background:url(http://s0.libe.com/libe/img/common/bg-e20000.png?020f61e6035c)0 39px repeat-x} +#header-liberation .header-simple .header{background:url(http://s0.libe.com/libe/img/common/bg-e20000.png?020f61e6035c) 0 39px repeat-x} #header-liberation .header-simple .back,#header-liberation .header-simple .logo{background-color:#fff} -#header-liberation .header-simple .back a{color:#858585;background:url(http://s0.libe.com/libe/img/common/ico-lnk-arrow-back-grey.png?c8d5a4458a2c)0 16px no-repeat} +#header-liberation .header-simple .back a{color:#858585;background:url(http://s0.libe.com/libe/img/common/ico-lnk-arrow-back-grey.png?c8d5a4458a2c) 0 16px no-repeat} #header-liberation .header-annex h1{border-bottom-color:#e20000} #header-liberation .header-annex h1 a{color:#000} #footer-liberation .abo,#footer-liberation .monlibe h5,#footer-liberation .news h5,#footer-liberation .services h5,#footer-liberation a{color:#818181} @@ -2842,7 +2842,7 @@ body.slideshow .ad-top .megaban{background:#333} .site-liberation .toolbox li.spacer span{background-color:#d7d7d7} .site-liberation .toolbox .comment,.site-liberation .toolbox .facebook,.site-liberation .toolbox .twitter,.site-liberation .toolbox .txt-min,.site-liberation .toolbox .txt-plus,.site-liberation .toolbox .txt-reset{color:#818181} .site-liberation .toolbox .comment:hover,.site-liberation .toolbox .txt-min:hover,.site-liberation .toolbox .txt-plus:hover,.site-liberation .toolbox .txt-reset:hover{color:#000} -.site-liberation .toolbox li a span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49)no-repeat} +.site-liberation .toolbox li a span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons.png?9914d0d70a49) no-repeat} .site-liberation .toolbox li a.print span{background-position:-76px -118px} .site-liberation .toolbox li a.print:hover span{background-position:-94px -118px} .site-liberation .toolbox li a.favorite span{background-position:-22px -120px} @@ -2851,8 +2851,8 @@ body.slideshow .ad-top .megaban{background:#333} .site-liberation .toolbox li a.comment:hover span{background-position:-205px -84px} .site-liberation .toolbox li a.mail span{background-position:-89px 0} .site-liberation .toolbox li a.mail:hover span{background-position:-89px -16px} -.site-liberation .toolbox li a.facebook span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons_share.png?edeb5617b880)-74px 0 no-repeat} -.site-liberation .toolbox li a.twitter span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons_share.png?edeb5617b880)-74px -14px no-repeat} +.site-liberation .toolbox li a.facebook span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons_share.png?edeb5617b880) -74px 0 no-repeat} +.site-liberation .toolbox li a.twitter span{background:url(http://s0.libe.com/libe/img/common/_sprites_icons/icons_share.png?edeb5617b880) -74px -14px no-repeat} .site-liberation .toolbox li a.facebook,.site-liberation .toolbox li a.twitter{background-color:#f7f7f7;border-color:#d7d7d7} .site-liberation .toolbox li a.facebook:hover,.site-liberation .toolbox li a.twitter:hover{background-color:#818181;color:#F7F7F7} .site-liberation .toolbox li.abo-1-euro,.site-liberation .toolbox li.btn-comment{background:#f8f8f8} diff --git a/test/fixtures/bootstrap-min.css b/test/fixtures/bootstrap-min.css index 096fbeb7..b4fad43e 100644 --- a/test/fixtures/bootstrap-min.css +++ b/test/fixtures/bootstrap-min.css @@ -32,8 +32,8 @@ td,th{padding:0} @media print{blockquote,img,pre,tr{page-break-inside:avoid} *,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important} a,a:visited{text-decoration:underline} -a[href]:after{content:" (" attr(href)")"} -abbr[title]:after{content:" (" attr(title)")"} +a[href]:after{content:" (" attr(href) ")"} +abbr[title]:after{content:" (" attr(title) ")"} a[href^="javascript:"]:after,a[href^="#"]:after{content:""} blockquote,pre{border:1px solid #999} thead{display:table-header-group} @@ -50,7 +50,7 @@ select{background:#fff!important} } .img-thumbnail,body{background-color:#fff} .btn,.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-warning.active,.btn-warning:active,.btn.active,.btn:active,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover,.form-control,.navbar-toggle,.open>.dropdown-toggle.btn-danger,.open>.dropdown-toggle.btn-default,.open>.dropdown-toggle.btn-info,.open>.dropdown-toggle.btn-primary,.open>.dropdown-toggle.btn-warning{background-image:none} -@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix)format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2)format('woff2'),url(../fonts/glyphicons-halflings-regular.woff)format('woff'),url(../fonts/glyphicons-halflings-regular.ttf)format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular)format('svg')} +@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')} .glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale} .glyphicon-asterisk:before{content:"\2a"} .glyphicon-plus:before{content:"\2b"} @@ -929,7 +929,7 @@ select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.i } .embed-responsive,.modal,.modal-open,.progress{overflow:hidden} .navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px} -@media (max-device-width:480px)and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px} +@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px} } .container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px} .navbar-static-top{z-index:1000;border-width:0 0 1px} @@ -1377,7 +1377,7 @@ td.visible-xs,th.visible-xs{display:table-cell!important} .visible-xs-inline{display:inline!important} .visible-xs-inline-block{display:inline-block!important} } -@media (min-width:768px)and (max-width:991px){.visible-sm{display:block!important} +@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important} table.visible-sm{display:table} tr.visible-sm{display:table-row!important} td.visible-sm,th.visible-sm{display:table-cell!important} @@ -1385,7 +1385,7 @@ td.visible-sm,th.visible-sm{display:table-cell!important} .visible-sm-inline{display:inline!important} .visible-sm-inline-block{display:inline-block!important} } -@media (min-width:992px)and (max-width:1199px){.visible-md{display:block!important} +@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important} table.visible-md{display:table} tr.visible-md{display:table-row!important} td.visible-md,th.visible-md{display:table-cell!important} @@ -1403,9 +1403,9 @@ td.visible-lg,th.visible-lg{display:table-cell!important} } @media (max-width:767px){.hidden-xs{display:none!important} } -@media (min-width:768px)and (max-width:991px){.hidden-sm{display:none!important} +@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important} } -@media (min-width:992px)and (max-width:1199px){.hidden-md{display:none!important} +@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important} } @media (min-width:1200px){.hidden-lg{display:none!important} } diff --git a/test/fixtures/charset-mixed-with-fonts-min.css b/test/fixtures/charset-mixed-with-fonts-min.css index 1377fb2d..2afac612 100644 --- a/test/fixtures/charset-mixed-with-fonts-min.css +++ b/test/fixtures/charset-mixed-with-fonts-min.css @@ -1,3 +1,3 @@ @charset "UTF-8"; -@font-face{font-family:ProximaNova-Regular;src:url(/assets/thirdParty/css/1415F2_1.eot);src:url(/assets/thirdParty/css/1415F2_1IE.eot)format('embedded-opentype'),url(/assets/thirdParty/css/1415F2_1.woff)format('woff'),url(/assets/thirdParty/css/1415F2_1.ttf)format('truetype'),url(/assets/thirdParty/css/1415F2_1.svg)format('svg')} +@font-face{font-family:ProximaNova-Regular;src:url(/assets/thirdParty/css/1415F2_1.eot);src:url(/assets/thirdParty/css/1415F2_1IE.eot) format('embedded-opentype'),url(/assets/thirdParty/css/1415F2_1.woff) format('woff'),url(/assets/thirdParty/css/1415F2_1.ttf) format('truetype'),url(/assets/thirdParty/css/1415F2_1.svg) format('svg')} blockquote small:before{content:'\2014 \00A0'} \ No newline at end of file diff --git a/test/fixtures/font-awesome-min.css b/test/fixtures/font-awesome-min.css index 104c8a46..b8d5cd05 100644 --- a/test/fixtures/font-awesome-min.css +++ b/test/fixtures/font-awesome-min.css @@ -20,7 +20,7 @@ * Twitter: http://twitter.com/fortaweso_me * Work: Lead Product Designer @ http://kyruus.com */ -@font-face{font-family:FontAwesome;src:url(../font/fontawesome-webfont.eot?v=3.0.1);src:url(../font/fontawesome-webfont.eot?#iefix&v=3.0.1)format('embedded-opentype'),url(../font/fontawesome-webfont.woff?v=3.0.1)format('woff'),url(../font/fontawesome-webfont.ttf?v=3.0.1)format('truetype');font-weight:400;font-style:normal} +@font-face{font-family:FontAwesome;src:url(../font/fontawesome-webfont.eot?v=3.0.1);src:url(../font/fontawesome-webfont.eot?#iefix&v=3.0.1) format('embedded-opentype'),url(../font/fontawesome-webfont.woff?v=3.0.1) format('woff'),url(../font/fontawesome-webfont.ttf?v=3.0.1) format('truetype');font-weight:400;font-style:normal} [class*=" icon-"],[class^=icon-]{font-family:FontAwesome;font-weight:400;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0} .btn [class*=" icon-"].icon-large,.btn [class^=icon-].icon-large,.nav [class*=" icon-"].icon-large,.nav [class^=icon-].icon-large,.nav-pills [class*=" icon-"],.nav-pills [class*=" icon-"].icon-large,.nav-pills [class^=icon-],.nav-pills [class^=icon-].icon-large,.nav-tabs [class*=" icon-"],.nav-tabs [class*=" icon-"].icon-large,.nav-tabs [class^=icon-],.nav-tabs [class^=icon-].icon-large{line-height:.9em} .dropdown-menu>.active>a>[class*=" icon-"],.dropdown-menu>.active>a>[class^=icon-],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^=icon-],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^=icon-],.icon-white,.nav-list>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^=icon-],.nav-pills>.active>a>[class*=" icon-"],.nav-pills>.active>a>[class^=icon-],.navbar-inverse .nav>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^=icon-]{background-image:none} @@ -321,4 +321,4 @@ ul.icons li [class*=" icon-"],ul.icons li [class^=icon-]{width:.75em} .icon-reply:before{content:"\f112"} .icon-github-alt:before{content:"\f113"} .icon-folder-close-alt:before{content:"\f114"} -.icon-folder-open-alt:before{content:"\f115"} +.icon-folder-open-alt:before{content:"\f115"} \ No newline at end of file diff --git a/test/fixtures/issue-117-snippet-min.css b/test/fixtures/issue-117-snippet-min.css index 98320d1b..a33b6d83 100644 --- a/test/fixtures/issue-117-snippet-min.css +++ b/test/fixtures/issue-117-snippet-min.css @@ -1,4 +1,4 @@ @media only print{a,a:visited{text-decoration:underline} -a[href]:after{content:" (" attr(href)")"} -abbr[title]:after{content:" (" attr(title)")"} -} +a[href]:after{content:" (" attr(href) ")"} +abbr[title]:after{content:" (" attr(title) ")"} +} \ No newline at end of file diff --git a/test/fixtures/issue-232-min.css b/test/fixtures/issue-232-min.css index 8e2c501a..da28adf5 100644 --- a/test/fixtures/issue-232-min.css +++ b/test/fixtures/issue-232-min.css @@ -1,2 +1,2 @@ .bar{padding:0} -.bug-selector,.bug-selector1{background:url(images/b-toolbar.gif)#000;background:linear-gradient(#5e6081,#353340)} \ No newline at end of file +.bug-selector,.bug-selector1{background:url(images/b-toolbar.gif) #000;background:linear-gradient(#5e6081,#353340)} \ No newline at end of file diff --git a/test/fixtures/issue-304-2-min.css b/test/fixtures/issue-304-2-min.css index e7974d8a..97b7cc8c 100644 --- a/test/fixtures/issue-304-2-min.css +++ b/test/fixtures/issue-304-2-min.css @@ -1,2 +1,2 @@ -.one{background:url(one.png)right 10px top 10px no-repeat,linear-gradient(0deg,#efefef 0,#fff 100%)} -.two{background:url(two.png)right 9px top 15px/9px 7px no-repeat,linear-gradient(-179deg,#FFF 0,#F9F9F9 100%)} \ No newline at end of file +.one{background:url(one.png) right 10px top 10px no-repeat,linear-gradient(0deg,#efefef 0,#fff 100%)} +.two{background:url(two.png) right 9px top 15px/9px 7px no-repeat,linear-gradient(-179deg,#FFF 0,#F9F9F9 100%)} \ No newline at end of file diff --git a/test/fixtures/issue-304-min.css b/test/fixtures/issue-304-min.css index f3fd7fcc..4f8eeca0 100644 --- a/test/fixtures/issue-304-min.css +++ b/test/fixtures/issue-304-min.css @@ -1 +1 @@ -.test{background:url(top.png)left 0 top -12px no-repeat,url(bottom.png)left 0 bottom -12px no-repeat,url(middle.png)left 0 top 0 no-repeat} \ No newline at end of file +.test{background:url(top.png) left 0 top -12px no-repeat,url(bottom.png) left 0 bottom -12px no-repeat,url(middle.png) left 0 top 0 no-repeat} \ No newline at end of file diff --git a/test/fixtures/issue-312-min.css b/test/fixtures/issue-312-min.css index 6bc9383a..84699e19 100644 --- a/test/fixtures/issue-312-min.css +++ b/test/fixtures/issue-312-min.css @@ -1 +1 @@ -.envelope{background:url(one.png)top center repeat-x,url(one.png)bottom center repeat-x,url(two.png)110% 10px no-repeat #eee;background-size:35px 4px,35px 4px,101px 61px} \ No newline at end of file +.envelope{background:url(one.png) top center repeat-x,url(one.png) bottom center repeat-x,url(two.png) 110% 10px no-repeat #eee;background-size:35px 4px,35px 4px,101px 61px} \ No newline at end of file diff --git a/test/fixtures/issue-543-min.css b/test/fixtures/issue-543-min.css index 580fa2c0..f4ae973d 100644 --- a/test/fixtures/issue-543-min.css +++ b/test/fixtures/issue-543-min.css @@ -2,4 +2,4 @@ /*! IE6-IE8 */ /*! chrome, firefox */ /*! chrome, firefox, opera, Safari, Android, iOS 4.2+ */ -src:url(../font/myfont.eot?#iefix)format("embedded-opentype"),url(../font/myfont.woff)format("woff"),url(../font/myfont.ttf)format("truetype"),url(../font/myfont.svg#myfont)format("svg");font-style:normal;font-weight:400} \ No newline at end of file +src:url(../font/myfont.eot?#iefix) format("embedded-opentype"),url(../font/myfont.woff) format("woff"),url(../font/myfont.ttf) format("truetype"),url(../font/myfont.svg#myfont) format("svg");font-style:normal;font-weight:400} \ No newline at end of file diff --git a/test/integration-test.js b/test/integration-test.js index 67cb740f..bf5925a8 100644 --- a/test/integration-test.js +++ b/test/integration-test.js @@ -98,7 +98,7 @@ vows.describe('integration tests').addBatch({ 'div{margin:-moz-calc(50% + 15px);margin:calc(50% + .5rem)}' ], 'not inside calc method with more parentheses': [ - 'div{height:-moz-calc((10% + 12px)/2 + 10em)}', + 'div{height:-moz-calc((10% + 12px)/ 2 + 10em)}', 'div{height:-moz-calc((10% + 12px)/ 2 + 10em)}' ], 'not inside calc method with multiplication': [ @@ -136,9 +136,9 @@ vows.describe('integration tests').addBatch({ '@media ( min-width: 980px ) {\n#page .span4 {\nwidth: 250px;\n}\n\n.row {\nmargin-left: -10px;\n}\n}', '@media (min-width:980px){#page .span4{width:250px}.row{margin-left:-10px}}' ], - 'line breaks in media queries': [ + 'line breaks in media queries123': [ '@media\nonly screen and (max-width: 1319px) and (min--moz-device-pixel-ratio: 1.5),\nonly screen and (max-width: 1319px) and (-moz-min-device-pixel-ratio: 1.5)\n{ a { color:#000 } }', - '@media only screen and (max-width:1319px)and (min--moz-device-pixel-ratio:1.5),only screen and (max-width:1319px)and (-moz-min-device-pixel-ratio:1.5){a{color:#000}}' + '@media only screen and (max-width:1319px) and (min--moz-device-pixel-ratio:1.5),only screen and (max-width:1319px) and (-moz-min-device-pixel-ratio:1.5){a{color:#000}}' ], 'in content preceded by #content': '#content{display:block}#foo{content:"\0BB "}', 'in content preceded by .content': '.content{display:block}#foo{content:"\0BB "}', @@ -152,13 +152,16 @@ vows.describe('integration tests').addBatch({ ], 'after rgba': [ 'a{text-shadow:rgba(255,0,0,1) 0 1px}', - 'a{text-shadow:rgba(255,0,0,1)0 1px}' + 'a{text-shadow:rgba(255,0,0,1) 0 1px}' ], 'after hsl': [ 'a{text-shadow:hsl(240,100%,40%) -1px 1px}', 'a{text-shadow:#00c -1px 1px}' ], - 'after hsla': 'a{text-shadow:hsla(240,100%,40%,.5)-1px 1px}', + 'after hsla': [ + 'a{text-shadow:hsla(240,100%,40%,.5) -1px 1px}', + 'a{text-shadow:hsla(240,100%,40%,.5) -1px 1px}' + ], 'inside background': [ 'a{background:calc(100% - 2px) 10px no-repeat}', 'a{background:calc(100% - 2px) 10px no-repeat}' @@ -167,10 +170,22 @@ vows.describe('integration tests').addBatch({ 'a{background:calc(100% - 2px) .5em no-repeat}', 'a{background:calc(100% - 2px) .5em no-repeat}' ], + 'inside background with urls': [ + 'a{background:url(image.png) no-repeat}', + 'a{background:url(image.png) no-repeat}' + ], + 'inside background with rgba': [ + 'a{background:calc(100% - 10px) no-repeat}', + 'a{background:calc(100% - 10px) no-repeat}' + ], 'inside margin': [ 'a{margin:calc(100% - 2px) calc(100% - 5px)}', 'a{margin:calc(100% - 2px) calc(100% - 5px)}' ], + 'inside transform': [ + 'a{transform:translateX(10px) translateY(10px)}', + 'a{transform:translateX(10px) translateY(10px)}' + ], 'after :not #1': [ 'li:not(.foo).bar{color:red}', 'li:not(.foo).bar{color:red}' @@ -184,6 +199,52 @@ vows.describe('integration tests').addBatch({ 'li:not(.foo)#id{color:red}' ] }), + 'whitespace with spaceAfterClosingBrace': cssContext({ + 'after rgb': [ + 'a{text-shadow:rgb(255,0,1) 1px 1px}', + 'a{text-shadow:#ff0001 1px 1px}' + ], + 'after rgba': [ + 'a{text-shadow:rgba(255,0,0,1) 0 1px}', + 'a{text-shadow:rgba(255,0,0,1) 0 1px}' + ], + 'after hsl': [ + 'a{text-shadow:hsl(240,100%,40%) -1px 1px}', + 'a{text-shadow:#00c -1px 1px}' + ], + 'after hsla': [ + 'a{text-shadow:hsla(240,100%,40%,.5) -1px 1px}', + 'a{text-shadow:hsla(240,100%,40%,.5) -1px 1px}' + ], + 'inside background': [ + 'a{background:calc(100% - 2px) 10px no-repeat}', + 'a{background:calc(100% - 2px)10px no-repeat}' + ], + 'inside background with fraction unit': [ + 'a{background:calc(100% - 2px) .5em no-repeat}', + 'a{background:calc(100% - 2px).5em no-repeat}' + ], + 'inside background with urls': [ + 'a{background:url(image.png) no-repeat}', + 'a{background:url(image.png)no-repeat}' + ], + 'inside background with rgba': [ + 'a{background:calc(100% - 10px) no-repeat}', + 'a{background:calc(100% - 10px)no-repeat}' + ], + 'inside margin': [ + 'a{margin:calc(100% - 2px) calc(100% - 5px)}', + 'a{margin:calc(100% - 2px) calc(100% - 5px)}' + ], + 'inside transform': [ + 'a{transform:translateX(10px) translateY(10px)}', + 'a{transform:translateX(10px)translateY(10px)}' + ], + 'inside @media': [ + '@media only screen and (max-width:1319px) and (min--moz-device-pixel-ratio:1.5){a{color:red}}', + '@media only screen and (max-width:1319px)and (min--moz-device-pixel-ratio:1.5){a{color:red}}' + ] + }, { compatibility: { properties: { spaceAfterClosingBrace: false } } }), 'line breaks': cssContext({ 'line breaks #1': [ 'div\na\r\n{width:500px}', @@ -963,7 +1024,7 @@ vows.describe('integration tests').addBatch({ 'not add a space before url\'s hash': "a{background:url(/fonts/d90b3358-e1e2-4abb-ba96-356983a54c22.svg#d90b3358-e1e2-4abb-ba96-356983a54c22)}", 'keep urls from being stripped down #1': 'a{background:url(/image-1.0.png)}', 'keep urls from being stripped down #2': "a{background:url(/image-white.png)}", - 'keep urls from being stripped down #3': 'a{background:url(/libraries/jquery-ui-1.10.1.custom/images/ui-bg_highlight-soft_100_eeeeee_1x100.png)50% top #eee}', + 'keep urls from being stripped down #3': 'a{background:url(/libraries/jquery-ui-1.10.1.custom/images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top #eee}', 'keep special markers in comments (so order is important)': '/*! __ESCAPED_URL_CLEAN_CSS0__ */a{display:block}', 'strip new line in urls': [ 'a{background:url(/very/long/\ @@ -992,19 +1053,19 @@ path")}', 'urls rewriting - no root or target': cssContext({ 'no @import': [ 'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}', - 'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}' ], 'relative @import': [ '@import url(test/fixtures/partials-relative/base.css);', - 'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}' ], 'relative @import twice': [ '@import url(test/fixtures/partials-relative/extra/included.css);', - 'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}' ], 'absolute @import': [ '@import url(/test/fixtures/partials-relative/base.css);', - 'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}' ], 'document-local reference': [ 'svg{marker-end:url(#arrow)}', 'svg{marker-end:url(#arrow)}' @@ -1013,15 +1074,15 @@ path")}', 'urls rewriting - root but no target': cssContext({ 'no @import': [ 'a{background:url(../partials/extra/down.gif) no-repeat}', - 'a{background:url(/test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(/test/fixtures/partials/extra/down.gif) no-repeat}' ], 'relative @import': [ '@import url(base.css);', - 'a{background:url(/test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(/test/fixtures/partials/extra/down.gif) no-repeat}' ], 'absolute @import': [ '@import url(/test/fixtures/partials-relative/base.css);', - 'a{background:url(/test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(/test/fixtures/partials/extra/down.gif) no-repeat}' ], 'document-local reference': [ 'svg{marker-end:url(#arrow)}', 'svg{marker-end:url(#arrow)}' @@ -1033,15 +1094,15 @@ path")}', 'urls rewriting - no root but target': cssContext({ 'no @import': [ 'a{background:url(../partials/extra/down.gif) no-repeat}', - 'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}' ], 'relative @import': [ '@import url(base.css);', - 'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}' ], 'absolute @import': [ '@import url(/test/fixtures/partials-relative/base.css);', - 'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}' ], 'document-local reference': [ 'svg{marker-end:url(#arrow)}', 'svg{marker-end:url(#arrow)}' @@ -1053,15 +1114,15 @@ path")}', 'urls rewriting - no root but target as a directory': cssContext({ 'no @import': [ 'a{background:url(../partials/extra/down.gif) no-repeat}', - 'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}' ], 'relative @import': [ '@import url(base.css);', - 'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}' ], 'absolute @import': [ '@import url(/test/fixtures/partials-relative/base.css);', - 'a{background:url(test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(test/fixtures/partials/extra/down.gif) no-repeat}' ], 'document-local reference': [ 'svg{marker-end:url(#arrow)}', 'svg{marker-end:url(#arrow)}' @@ -1073,15 +1134,15 @@ path")}', 'urls rewriting - root and target': cssContext({ 'no @import': [ 'a{background:url(../partials/extra/down.gif) no-repeat}', - 'a{background:url(/test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(/test/fixtures/partials/extra/down.gif) no-repeat}' ], 'relative @import': [ '@import url(base.css);', - 'a{background:url(/test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(/test/fixtures/partials/extra/down.gif) no-repeat}' ], 'absolute @import': [ '@import url(/test/fixtures/partials-relative/base.css);', - 'a{background:url(/test/fixtures/partials/extra/down.gif)no-repeat}' + 'a{background:url(/test/fixtures/partials/extra/down.gif) no-repeat}' ], 'document-local reference': [ 'svg{marker-end:url(#arrow)}', 'svg{marker-end:url(#arrow)}' @@ -1094,7 +1155,7 @@ path")}', 'urls rewriting - rebase off': cssContext({ 'keeps urls the same': [ '@import url(base.css);', - 'a{background:url(../partials/extra/down.gif)no-repeat}' + 'a{background:url(../partials/extra/down.gif) no-repeat}' ] }, { target: path.join(process.cwd(), 'test.css'), @@ -1102,7 +1163,10 @@ path")}', rebase: false }), 'fonts': cssContext({ - 'keep format quotation': "@font-face{font-family:PublicVintage;src:url(/PublicVintage.otf)format('opentype')}", + 'keep format quotation': [ + "@font-face{font-family:PublicVintage;src:url(/PublicVintage.otf) format('opentype')}", + "@font-face{font-family:PublicVintage;src:url(/PublicVintage.otf) format('opentype')}" + ], 'remove font family quotation': [ "a{font-family:\"Helvetica\",'Arial'}", "a{font-family:Helvetica,Arial}" @@ -1880,12 +1944,12 @@ title']{display:block}", 'a{background:0;background-color:inherit}' ], 'should NOT merge background with background-color set to none': [ - 'a{background:url(logo.png)center no-repeat;background-color:none}', - 'a{background:url(logo.png)center no-repeat;background-color:none}' + 'a{background:url(logo.png) center no-repeat;background-color:none}', + 'a{background:url(logo.png) center no-repeat;background-color:none}' ], 'should merge background with background-image': [ 'a{background:0;background-image:url(hello_world)}', - 'a{background:url(hello_world)0}' + 'a{background:url(hello_world) 0}' ], 'should NOT merge background with inherited background-image': [ 'a{background:0;background-image:inherit}', @@ -1993,15 +2057,15 @@ title']{display:block}", '@counter-style': '@counter-style triangle{system:cyclic;symbols:‣;suffix:" "}' }), 'background size': cssContext({ - 'with background-position': 'a{background:url(top.jpg)50% 0/auto 25% no-repeat}', + 'with background-position': 'a{background:url(top.jpg) 50% 0/auto 25% no-repeat}', 'with background-position and spaces': [ 'a{background:url(top.jpg) 50% 0 / auto 25% no-repeat}', - 'a{background:url(top.jpg)50% 0/auto 25% no-repeat}' + 'a{background:url(top.jpg) 50% 0/auto 25% no-repeat}' ], - 'with background-position shorthands': 'a{background:url(top.jpg)50px/25% no-repeat}', + 'with background-position shorthands': 'a{background:url(top.jpg) 50px/25% no-repeat}', 'with background-position shorthands and spaces': [ 'a{background:url(top.jpg) 0 / cover no-repeat}', - 'a{background:url(top.jpg)0/cover no-repeat}' + 'a{background:url(top.jpg) 0/cover no-repeat}' ], 'with background-size property': [ 'a{background:none;background-image:url(1.png);background-size:28px 28px}', @@ -2051,11 +2115,11 @@ title']{display:block}", 'background size with +properties.backgroundSizeMerging': cssContext({ 'with background-size property': [ 'a{background:none;background-image:url(1.png);background-size:28px 28px}', - 'a{background:url(1.png)0 0/28px 28px}' + 'a{background:url(1.png) 0 0/28px 28px}' ], 'important overriding': [ 'a{background:url(a.jpg) !important; background-color:#fff !important; background-size:10px 10px !important}', - 'a{background:url(a.jpg)0 0/10px 10px #fff!important}' + 'a{background:url(a.jpg) 0 0/10px 10px #fff!important}' ] }, { compatibility: '+properties.backgroundSizeMerging' }), 'multiple backgrounds': cssContext({ @@ -2082,7 +2146,7 @@ title']{display:block}", 'border radius H+V': 'a{border-radius:50%/100%}', 'lost background position': [ '.one{background:50% no-repeat}.one{background-image:url(/img.png)}', - '.one{background:url(/img.png)50% no-repeat}' + '.one{background:url(/img.png) 50% no-repeat}' ], 'unknown @ rule': '@unknown "test";h1{color:red}', 'property without a value': [ diff --git a/test/selectors/optimizer-test.js b/test/selectors/optimizer-test.js index bacd5642..1e7a8fc0 100644 --- a/test/selectors/optimizer-test.js +++ b/test/selectors/optimizer-test.js @@ -363,7 +363,7 @@ vows.describe(SelectorsOptimizer) optimizerContext('@font-face', { 'rebuilding': [ '@font-face{font-family:PublicVintage;src:url(/PublicVintage.otf) format(\'opentype\')}', - '@font-face{font-family:PublicVintage;src:url(/PublicVintage.otf)format(\'opentype\')}' + '@font-face{font-family:PublicVintage;src:url(/PublicVintage.otf) format(\'opentype\')}' ] }) ) diff --git a/test/source-map-test.js b/test/source-map-test.js index f369d133..d682f64e 100644 --- a/test/source-map-test.js +++ b/test/source-map-test.js @@ -1766,7 +1766,7 @@ vows.describe('source-map') return new CleanCSS({ sourceMap: true }).minify('a{background:url(image.png);background-color:#eee;background-repeat:repeat-x}'); }, 'has right output': function (minified) { - assert.equal(minified.styles, 'a{background:url(image.png)repeat-x #eee}'); + assert.equal(minified.styles, 'a{background:url(image.png) repeat-x #eee}'); }, 'has 5 mappings': function (minified) { assert.lengthOf(minified.sourceMap._mappings._array, 5); @@ -1796,7 +1796,7 @@ vows.describe('source-map') 'has a `repeat-x` mapping': function (minified) { var mapping = { generatedLine: 1, - generatedColumn: 27, + generatedColumn: 28, originalLine: 1, originalColumn: 68, source: '$stdin', @@ -1807,7 +1807,7 @@ vows.describe('source-map') 'has a `#eee` mapping': function (minified) { var mapping = { generatedLine: 1, - generatedColumn: 36, + generatedColumn: 37, originalLine: 1, originalColumn: 45, source: '$stdin', diff --git a/test/utils/compatibility-test.js b/test/utils/compatibility-test.js index cfca0ce7..b4c87f25 100644 --- a/test/utils/compatibility-test.js +++ b/test/utils/compatibility-test.js @@ -15,7 +15,7 @@ vows.describe(Compatibility) assert.isFalse(options.selectors.ie7Hack); assert.isFalse(options.properties.backgroundSizeMerging); assert.isTrue(options.properties.merging); - assert.isFalse(options.properties.spaceAfterClosingBrace); + assert.isTrue(options.properties.spaceAfterClosingBrace); assert.isFalse(options.properties.urlQuotes); assert.isTrue(options.units.rem); assert.isTrue(options.colors.opacity); @@ -41,7 +41,7 @@ vows.describe(Compatibility) assert.isFalse(options.selectors.ie7Hack); assert.isFalse(options.properties.backgroundSizeMerging); assert.isTrue(options.properties.merging); - assert.isFalse(options.properties.spaceAfterClosingBrace); + assert.isTrue(options.properties.spaceAfterClosingBrace); assert.isTrue(options.properties.zeroUnits); assert.isFalse(options.units.rem); assert.isTrue(options.colors.opacity); @@ -124,7 +124,7 @@ vows.describe(Compatibility) assert.isFalse(options.selectors.ie7Hack); assert.isFalse(options.properties.backgroundSizeMerging); assert.isTrue(options.properties.merging); - assert.isFalse(options.properties.spaceAfterClosingBrace); + assert.isTrue(options.properties.spaceAfterClosingBrace); assert.isTrue(options.units.rem); assert.isTrue(options.colors.opacity); assert.deepEqual(options.selectors.special, /(\-moz\-|\-ms\-|\-o\-|\-webkit\-|:dir\([a-z-]*\)|:first(?![a-z-])|:fullscreen|:left|:read-only|:read-write|:right)/); @@ -140,7 +140,7 @@ vows.describe(Compatibility) assert.isFalse(options.selectors.ie7Hack); assert.isFalse(options.properties.backgroundSizeMerging); assert.isTrue(options.properties.merging); - assert.isFalse(options.properties.spaceAfterClosingBrace); + assert.isTrue(options.properties.spaceAfterClosingBrace); assert.isFalse(options.units.rem); assert.isTrue(options.colors.opacity); assert.deepEqual(options.selectors.special, /(\-moz\-|\-ms\-|\-o\-|\-webkit\-|:dir\([a-z-]*\)|:first(?![a-z-])|:fullscreen|:left|:read-only|:read-write|:right)/);