Mise à jour design
This commit is contained in:
parent
95ef798797
commit
a8c58dd397
@ -1,5 +1,15 @@
|
||||
<p>Etablissements : Tous / Seulement les actifs / Seulement les inactifs </p>
|
||||
<p>Type Etablissements : Tous / Uniquement les sièges / Uniquement les secondaires</p>
|
||||
<p>Entreprises appartenant à un groupe français</p>
|
||||
<p>Entreprise appartenant à un groupe étranger</p>
|
||||
<p>
|
||||
<label>Etablissements :</label>
|
||||
<select name="Entreprise[Etablissements]">
|
||||
<option value="">Tous</option>
|
||||
<option value="">Actifs</option>
|
||||
<option value="">Inactifs</option>
|
||||
</select>
|
||||
</p>
|
||||
<p><label>Type d'établissements</label>
|
||||
<select name="Entreprise[Etablissements]">
|
||||
<option value="">Tous</option>
|
||||
<option value="">Uniquement les sièges</option>
|
||||
<option value="">Uniquement les secondaires</option>
|
||||
</select>
|
||||
<p>Téléphone renseigné / non renseigné</p>
|
@ -1,3 +1,18 @@
|
||||
<h1>Odea</h1>
|
||||
<div id="primaryNavigation" class="clearfix">
|
||||
<ul>
|
||||
<li><a href="<?=$this->url(array('controller'=>'index', 'action'=>'index'), null, true)?>">Accueil</a></li>
|
||||
<li><a href="<?=$this->url(array('controller'=>'index', 'action'=>'index'), null, true)?>">Tableau de bord</a></li>
|
||||
<li><a href="<?=$this->url(array('controller'=>'index', 'action'=>'index'), null, true)?>">Aide</a></li>
|
||||
<li><a href="<?=$this->url(array('controller'=>'index', 'action'=>'index'), null, true)?>">A propos de</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div id="logo">
|
||||
<h1>Odea</h1>
|
||||
</div>
|
||||
|
||||
<div id="message">
|
||||
Message d'information
|
||||
</div>
|
||||
|
||||
|
||||
<a href="<?=$this->url(array('controller'=>'index', 'action'=>'index'), null, true)?>">Accueil</a>
|
||||
|
@ -14,16 +14,17 @@
|
||||
</div>
|
||||
|
||||
<div id="result">
|
||||
TEST
|
||||
Résultat
|
||||
</div>
|
||||
|
||||
|
||||
<script>
|
||||
$(function() {
|
||||
$( "#tabs" ).tabs({
|
||||
cache: true,
|
||||
ajaxOptions: {
|
||||
error: function( xhr, status, index, anchor ) {
|
||||
$( anchor.hash ).html("Erreur lors du chargement...Contactez le support.");
|
||||
$( anchor.hash ).html("Erreur lors du chargement...");
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -9,7 +9,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<div id="global">
|
||||
<div id="header">
|
||||
<div id="header" class="clearfix">
|
||||
<?php echo $this->render('header.phtml') ?>
|
||||
</div>
|
||||
<div id="content" class="clearfix">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="shortcut icon" type="image/x-icon" href="<?='http://'.$_SERVER['SERVER_NAME']?>/favicon.ico" />
|
||||
</head>
|
||||
<body>
|
||||
<h2>CONNEXION EXTRANET</h2>
|
||||
<h2>CONNEXION ODEA</h2>
|
||||
<?=$this->message?>
|
||||
<?=$this->form?>
|
||||
</body>
|
||||
|
BIN
public/themes/default/images/bg-home-tile.jpg
Normal file
BIN
public/themes/default/images/bg-home-tile.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 660 B |
BIN
public/themes/default/images/menu/bg_primaryNav_left.gif
Normal file
BIN
public/themes/default/images/menu/bg_primaryNav_left.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
BIN
public/themes/default/images/menu/bg_primaryNav_right.gif
Normal file
BIN
public/themes/default/images/menu/bg_primaryNav_right.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 207 B |
BIN
public/themes/default/images/menu/bg_secondaryNav_left.gif
Normal file
BIN
public/themes/default/images/menu/bg_secondaryNav_left.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 495 B |
BIN
public/themes/default/images/menu/bg_secondaryNav_right.gif
Normal file
BIN
public/themes/default/images/menu/bg_secondaryNav_right.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 112 B |
@ -1,4 +1,11 @@
|
||||
body { font:0.8em/100% Arial,Helvetica,sans-serif;}
|
||||
body {
|
||||
background: url("/themes/default/images/bg-home-tile.jpg") repeat-x scroll 50% 0 #39414A;
|
||||
color: #FFFFFF;
|
||||
font: 62.5% "Trebuchet MS",Verdana,Helvetica,Arial,sans-serif !important;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
ul, ul li {
|
||||
margin: 0 5px;
|
||||
@ -11,15 +18,103 @@ ul, ul li {
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
}
|
||||
#header {}
|
||||
|
||||
#header {
|
||||
height: 156px;
|
||||
padding: 0 40px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#header #message {
|
||||
background: #ffffff;
|
||||
color: #000000;
|
||||
clear: right;
|
||||
float: right;
|
||||
margin-top: 34px;
|
||||
font-size: 1.2em;
|
||||
line-height: 25px;
|
||||
margin-bottom: 2px;
|
||||
padding: 0 1em;
|
||||
min-width:300px;
|
||||
}
|
||||
|
||||
#header h1 {
|
||||
border: 0 none;
|
||||
bottom: 15px;
|
||||
color: #DDDDDD;
|
||||
font-size: 2em;
|
||||
font-weight: normal;
|
||||
left: 60px;
|
||||
line-height: 1;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
|
||||
#header h1 {
|
||||
font-size:18px;
|
||||
margin:10px 5px;
|
||||
}
|
||||
|
||||
#logo {
|
||||
border: 0 none !important;
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 80px;
|
||||
}
|
||||
|
||||
|
||||
#primaryNavigation {
|
||||
background: url("/themes/default/images/menu/bg_primaryNav_left.gif") no-repeat scroll left bottom #192839;
|
||||
float: right;
|
||||
}
|
||||
|
||||
#primaryNavigation ul {
|
||||
background: url("/themes/default/images/menu/bg_primaryNav_right.gif") no-repeat scroll right bottom transparent;
|
||||
float: left;
|
||||
margin: 0;
|
||||
padding: 0 0.8em 2px;
|
||||
}
|
||||
|
||||
#primaryNavigation li {
|
||||
background: none repeat scroll 0 0 transparent;
|
||||
float: left;
|
||||
list-style: none outside none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#primaryNavigation li a {
|
||||
color: #D0D0D0;
|
||||
float: left;
|
||||
font-size: 1.2em;
|
||||
line-height: 25px;
|
||||
margin-bottom: 2px;
|
||||
padding: 0 1em;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#primaryNavigation li.jq-ui, #primaryNavigation li.jq-blog {
|
||||
border-right: 1px solid #0F1924;
|
||||
}
|
||||
|
||||
#primaryNavigation li.jq-current a, #primaryNavigation li.jq-current a:hover {
|
||||
background: none repeat scroll 0 0 #192839;
|
||||
border-bottom: 2px solid #176092;
|
||||
color: #D0D0D0;
|
||||
cursor: default;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#primaryNavigation li a:hover {
|
||||
border-bottom: 2px solid #4082AE;
|
||||
color: #FFFFFF;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#content {
|
||||
margin:10px 5px;
|
||||
border:1px solid #000000;
|
||||
margin:0;
|
||||
}
|
||||
|
||||
#content h1 {font-size:16px; text-decoration:underline;}
|
||||
@ -60,15 +155,17 @@ h3 {
|
||||
|
||||
#tabs {
|
||||
float:left;
|
||||
margin: 2px;
|
||||
margin: 2px;
|
||||
width:700px;
|
||||
}
|
||||
|
||||
#result {
|
||||
background: #ffffff;
|
||||
color: #000000;
|
||||
float:left;
|
||||
width:250px;
|
||||
margin:2px;
|
||||
padding:2px;
|
||||
border:1px solid #000000;
|
||||
}
|
||||
|
||||
.clearfix:after {
|
||||
|
Loading…
Reference in New Issue
Block a user