forked from ZwiiCMS-Team/ZwiiCMS
Aspect des boutons dans theme / index
This commit is contained in:
parent
39ae37dc29
commit
9fb7dd41a5
@ -3,6 +3,8 @@
|
||||
## Préversion 9.0.0
|
||||
- Modification :
|
||||
- Stockage distinct du thème et des autres données (core, config, page, module et users ) avec import des données d'une version 8
|
||||
- Exporter un thème (avec les images) sous forme d'une archive ZIP à télécharger ou stocker dans Fichiers.
|
||||
- Importer un thème à partir des fichiers
|
||||
|
||||
## Verison 8.5.3
|
||||
* Modification :
|
||||
|
@ -5,7 +5,7 @@
|
||||
): ?>
|
||||
<?php echo template::speech('Cliquez sur une zone afin d\'accéder à ses options de personnalisation. Vous pouvez également afficher les zones cachées à l\'aide du bouton ci-dessous.'); ?>
|
||||
<div class="row">
|
||||
<div class="col2 offset2">
|
||||
<div class="col3">
|
||||
<?php echo template::button('themeBack', [
|
||||
'class' => 'buttonGrey',
|
||||
'href' => helper::baseUrl(false),
|
||||
@ -13,21 +13,21 @@
|
||||
'value' => 'Accueil'
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col2">
|
||||
<div class="col3">
|
||||
<?php echo template::button('themeManage', [
|
||||
'href' => helper::baseUrl() . $this->getUrl(0) . '/manage',
|
||||
'ico' => 'download',
|
||||
'value' => 'Importer/Exporter'
|
||||
'value' => 'Gestion des thèmes'
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col2">
|
||||
<div class="col3">
|
||||
<?php echo template::button('themeAdvanced', [
|
||||
'href' => helper::baseUrl() . $this->getUrl(0) . '/advanced',
|
||||
'value' => 'Mode avancé',
|
||||
'ico' => 'code'
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col2">
|
||||
<div class="col3">
|
||||
<?php echo template::button('themeShowAll', [
|
||||
'ico' => 'eye',
|
||||
'value' => 'Zones cachées'
|
||||
@ -37,7 +37,7 @@
|
||||
<?php else: ?>
|
||||
<?php echo template::speech('Cliquez sur une zone afin d\'accéder à ses options de personnalisation.'); ?>
|
||||
<div class="row">
|
||||
<div class="col2 offset3">
|
||||
<div class="col3 offset2">
|
||||
<?php echo template::button('themeBack', [
|
||||
'class' => 'buttonGrey',
|
||||
'href' => helper::baseUrl(false),
|
||||
@ -45,14 +45,14 @@
|
||||
'value' => 'Accueil'
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col2">
|
||||
<div class="col3">
|
||||
<?php echo template::button('themeManage', [
|
||||
'href' => helper::baseUrl() . $this->getUrl(0) . '/manage',
|
||||
'ico' => 'download',
|
||||
'value' => 'Importer/Exporter'
|
||||
'value' => 'Gestion des thèmes'
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col2">
|
||||
<div class="col3">
|
||||
<?php echo template::button('themeAdvanced', [
|
||||
'href' => helper::baseUrl() . $this->getUrl(0) . '/advanced',
|
||||
'value' => 'Mode avancé',
|
||||
|
@ -1,126 +1 @@
|
||||
/**
|
||||
* Voici une feuille de style type, bien entendu vous pouvez ajouter
|
||||
* ou supprimer des propriétés CSS en fonction de vos besoins.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Éléments principaux
|
||||
*/
|
||||
|
||||
/* Fond du site */
|
||||
body {
|
||||
}
|
||||
|
||||
/* Site */
|
||||
#site {
|
||||
}
|
||||
|
||||
/* Bannière */
|
||||
header {
|
||||
}
|
||||
|
||||
/* Titre de la bannière */
|
||||
header span {
|
||||
}
|
||||
|
||||
/* Menu */
|
||||
nav {
|
||||
}
|
||||
|
||||
/* Items du menu */
|
||||
nav a {
|
||||
}
|
||||
|
||||
/* Items au survol du menu */
|
||||
nav a:hover {
|
||||
}
|
||||
|
||||
/* Item courant du menu */
|
||||
nav a.active {
|
||||
}
|
||||
|
||||
/* Bas de page */
|
||||
footer {
|
||||
}
|
||||
|
||||
/* Liens du bas de page */
|
||||
footer a {
|
||||
}
|
||||
|
||||
/* footer bloc gauche */
|
||||
#footersiteLeft, #footerbodyLeft {
|
||||
}
|
||||
|
||||
/* footer bloc central */
|
||||
#footersiteCenter, #footerbodyCenter {
|
||||
}
|
||||
|
||||
/* footer bloc droite */
|
||||
#footersiteRight, #footerbodyRight {
|
||||
}
|
||||
|
||||
/**
|
||||
* Éléments de contenu
|
||||
*/
|
||||
|
||||
/* Titres */
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4 {
|
||||
}
|
||||
|
||||
/* Liens */
|
||||
a {
|
||||
}
|
||||
|
||||
/* Liens au survol */
|
||||
a:hover {
|
||||
}
|
||||
|
||||
/* Liens au clic */
|
||||
a:active {
|
||||
}
|
||||
|
||||
/* Boutons */
|
||||
.button,
|
||||
button[type='submit'],
|
||||
.pagination a {
|
||||
}
|
||||
|
||||
/* Boutons au survol */
|
||||
.button:hover,
|
||||
button[type='submit']:hover,
|
||||
.pagination a:hover {
|
||||
}
|
||||
|
||||
/* Boutons au clic */
|
||||
.button:active,
|
||||
button[type='submit']:active,
|
||||
.pagination a:active {
|
||||
}
|
||||
|
||||
/* Cases à cocher */
|
||||
input[type='checkbox']:checked + label:before {
|
||||
}
|
||||
|
||||
/* Cases à cocher au survol */
|
||||
input[type='checkbox']:not(:active):checked:hover + label:before,
|
||||
input[type='checkbox']:active + label:before {
|
||||
}
|
||||
|
||||
/* Champs de formulaire */
|
||||
input[type='text'],
|
||||
input[type='password'],
|
||||
.inputFile,
|
||||
select,
|
||||
textarea {
|
||||
}
|
||||
|
||||
/* Champs de formulaire au survol */
|
||||
input[type='text']:hover,
|
||||
input[type='password']:hover,
|
||||
.inputFile:hover,
|
||||
select:hover,
|
||||
textarea:hover {
|
||||
}
|
||||
{"theme":{"body":{"backgroundColor":"rgba(138, 187, 244, 1)","image":"","imageAttachment":"scroll","imagePosition":"top center","imageRepeat":"no-repeat","imageSize":"auto"},"button":{"backgroundColor":"rgba(71, 123, 184, 1)"},"footer":{"backgroundColor":"rgba(138, 187, 244, 1)","copyrightAlign":"center","height":"5px","loginLink":"1","margin":false,"position":"body","socialsAlign":"center","text":"<a href=\"https:\/\/www.datacargo.fr\/?a-propos\">A propos<\/a>","textAlign":"center","textColor":"rgba(33, 34, 35, 1)","copyrightPosition":"center","textPosition":"center","socialsPosition":"hide"},"header":{"backgroundColor":"rgba(255, 255, 255, 0)","font":"Marvel","fontSize":"1.6em","fontWeight":"bold","height":"150px","image":"","imagePosition":"center center","imageRepeat":"no-repeat","margin":false,"position":"site","textAlign":"center","textColor":"rgba(132, 68, 7, 1)","textHide":false,"textTransform":"none","linkHome":false,"imageContainer":"auto"},"link":{"textColor":"rgba(71, 123, 184, 1)"},"menu":{"backgroundColor":"rgba(138, 187, 244, 1)","font":"Arimo","fontSize":"1em","fontWeight":"normal","height":"10px","loginLink":"","margin":false,"position":"body-top","textAlign":"left","textColor":"rgba(117, 106, 98, 1)","textTransform":"none"},"site":{"backgroundColor":"rgba(9, 47, 91, 1)","radius":"15px","shadow":"1px 1px 10px","width":"1170px"},"text":{"font":"Arvo","fontSize":"14px","textColor":"rgba(33, 34, 35, 1)"},"title":{"font":"Oswald","textColor":"rgba(71, 123, 184, 1)","fontWeight":"normal","textTransform":"none"}}}
|
Loading…
Reference in New Issue
Block a user