config systeme de tabulation

This commit is contained in:
Fred Tempez 2022-03-01 19:39:24 +01:00
parent 487e42394e
commit c8f2648009
2 changed files with 54 additions and 33 deletions

View File

@ -22,10 +22,30 @@
}
.activeButton {
filter : brightness(150%);
filter : brightness(180%);
}
.buttonTab:hover {
filter : brightness(140%);
}
.buttonNotice {
border: 2px solid red !important;
border-radius: 2px;
}
/* Style the tab */
.tab {
overflow: hidden;
display: inline-block;
}
.buttonTab {
float: left;
transition: 0.3s;
border-radius: 10px 10px 0px 0px;
width: 160px;
/*background-color: #ccc;*/
margin: 0 1px;
}

View File

@ -20,37 +20,38 @@
<?php echo template::submit('Submit'); ?>
</div>
</div>
<div class="row">
<div class="col12">
<div class="row textAlignCenter">
<div class="col2">
<div class="tab">
<?php echo template::button('configSetupButton', [
'value' => 'Configuration'
'value' => 'Configuration',
'class' => 'buttonTab'
]); ?>
</div>
<div class="col2">
<div class="tab">
<?php echo template::button('configLocaleButton', [
'value' => 'Localisation'
'value' => 'Localisation',
'class' => 'buttonTab'
]); ?>
</div>
<div class="col2">
<div class="tab">
<?php echo template::button('configSocialButton', [
'value' => 'Référencement'
'value' => 'Référencement',
'class' => 'buttonTab'
]); ?>
</div>
<div class="col2">
<div class="tab">
<?php echo template::button('configConnectButton', [
'value' => 'Connexion'
'value' => 'Connexion',
'class' => 'buttonTab'
]); ?>
</div>
<div class="col2">
<div class="tab">
<?php echo template::button('configNetworkButton', [
'value' => 'Réseau'
'value' => 'Réseau',
'class' => 'buttonTab'
]); ?>
</div>
</div>
</div>
</div>
<?php include ('core/module/config/view/setup/setup.php') ?>