Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

No changes between revisions

Ignore whitespace Rev 1422 → Rev 1423

/trunk/modules/mobile/Mobile.php
66,6 → 66,9
$donnees['famille'] = $this->nom_retenu->getTaxonSupRang('180');
$donnees = array_merge($this->obtenirDonnees(), $donnees);
$donnees['url_absolue'] = "http://".$_SERVER['SERVER_NAME'].'/'.$_SERVER['REQUEST_URI'];
$donnees['url_logos'] = "modules/mobile/presentations/logos/";
$donnees['lien'] = $this->url->obtenirUrlMobile($this->parametres['num_nom']);
$donnees['lien_fiche'] = $this->url->obtenirUrlFiche($this->parametres['num_nom']);
 
/trunk/modules/mobile/presentations/logos/logo-fondation-nd.jpg
Cannot display: file marked as a binary type.
svn:mime-type = image/jpeg
/trunk/modules/mobile/presentations/logos/logo-fondation-nd.jpg
New file
Property changes:
Added: svn:mime-type
+image/jpeg
\ No newline at end of property
/trunk/modules/mobile/presentations/logos/logo-msjs.jpg
Cannot display: file marked as a binary type.
svn:mime-type = image/jpeg
/trunk/modules/mobile/presentations/logos/logo-msjs.jpg
New file
Property changes:
Added: svn:mime-type
+image/jpeg
\ No newline at end of property
/trunk/modules/mobile/presentations/css/smartflore.css
117,7 → 117,32
display: none;
}
 
#smartflore-partenaires {
padding-left: 0px;
padding-right: 0px;
margin-top: 20px;
}
 
#smartflore-footer #smartflore-partenaires #smartflore-accordeon-partenaires {
background-color: #EEE;
color: black;
font-size: 2em;
margin-bottom: 0;
text-align: center;
}
 
#smartflore-footer #collapse-partenaires {
padding-bottom: 10px;
}
 
#smartflore-footer #smartflore-partenaires #smartflore-accordeon-partenaires h4 {
font-size: 1.2em;
}
 
#smartflore-footer .smartflore-footer-partenaires-logo {
height: 30vh;
}
 
/**
*
* Media Queries
141,7 → 166,7
font-size: 0.6em;
}
#smartflore-fiche #smartflore-footer .smartflore-footer-bouton .btn {
#smartflore-fiche #smartflore-footer .smartflore-footer-bouton .btn, #smartflore-footer .smartflore-titre-partenaires {
font-size: 0.9em;
}
/trunk/modules/mobile/presentations/js/mobile.js
7,6 → 7,7
voirSources();
});
// Pas sur que window.innerWidth puisse jamais être indéfini mais on ne sait jamais
if(!!window.innerWidth) {
var largeurFenetre = window.innerWidth;
// Tablettes / écran moyens, On met du L
/trunk/modules/mobile/squelettes/smartflore.tpl.html
107,7 → 107,7
<div id="smartflore-sections">
<div class="panel-group" id="smartflore-accordeon-sections" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div>
<? foreach($texte['corps'] as $titre_section => $texte_section) : ?>
<div class="panel-heading smartflore-titre-section" role="tab" id="heading<?= md5($titre_section); ?>">
<h4 class="panel-title">
153,6 → 153,29
</button>
</div>
</div>
<div class="col-md-12" id="smartflore-partenaires">
<div class="panel-group" id="smartflore-accordeon-partenaires" role="tablist" aria-multiselectable="true">
<div class="panel-heading smartflore-titre-partenaires" role="tab" id="heading-partenaires">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#smartflore-accordeon-partenaires" href="#collapse-partenaires" aria-expanded="true" aria-controls="collapse-partenaires">
<span class="glyphicon glyphicon-linkglyphicon glyphicon-link smartflore-titre-partenaires-icone margin-left-1em margin-top-03em"></span>
Partenaires
</a>
</h4>
</div>
<div id="collapse-partenaires" class="panel-collapse collapse smartflore-contenu-partenaires" role="tabpanel" aria-labelledby="heading-partenaires">
<div class="panel-body">
<div class="col-md-6 col-xs-6">
<img class="smartflore-footer-partenaires-logo" src="<?= $url_logos; ?>logo-msjs.jpg" />
</div>
<div class="col-md-6 col-xs-6">
<img class="smartflore-footer-partenaires-logo" src="<?= $url_logos; ?>logo-fondation-nd.jpg" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>