modifications cosmétiques onglet config

FossilOrigin-Name: a793835de1eacfb9d0e12ab06772a669ebc5fc22545375444bd4ab81f2b645a4
This commit is contained in:
engel 2022-05-05 07:58:55 +00:00
parent 6165ff531e
commit 556a75d1f8
2 changed files with 45 additions and 13 deletions

View File

@ -92,10 +92,11 @@
<div>
{foreach from=$champsNom key="nom" item="champ"}
<div>
<input type="checkbox" name="champsNom[]" value={$nom} class="choix" {if $nbChamps == 1 || $champ.position != 0}checked{/if} >
<label>{$champ.titre}</label>
<div class="actions">
<div class="champnom">
<div class="actions"></div>
<div class="infos">
<input type="checkbox" name="champsNom[]" id="champ_{$nom}" value={$nom} class="choix" {if $nbChamps == 1 || $champ.position != 0}checked{/if} >
<label for="champ_{$nom}">{$champ.titre}</label>
</div>
</div>
{/foreach}

View File

@ -1,10 +1,11 @@
/* liste des versements */
div.impair {
background: rgba(var(--gSecondColor), 0.15);
div.pair {
background-color: rgba(var(--gSecondColor), 0.15);
}
fieldset.versements
{
margin-left : 4em;
margin-bottom : 0;
margin-right : 0.5em;
-webkit-border-radius:8px;
border-radius:8px;
}
@ -33,10 +34,15 @@ summary.personne
padding-top : 0;
padding-bottom : 0;
}
div.personne, div.activite
div.activite
{
font-weight : normal;
background: rgba(var(--gSecondColor), 0.25);
background-color: rgba(var(--gSecondColor), 0.4);
}
div.personne
{
font-weight : normal;
background-color: rgba(var(--gSecondColor), 0.25);
}
h3.activite
{
@ -52,10 +58,6 @@ p.activite
max-width: 300px;
max-height: 150px;
}
dl.config
{
padding : 1ex 0;
}
div.explications ul
{
@ -70,3 +72,32 @@ input.check_global
{
margin : 0.2em 0.5em;
}
dl#menu
{
min-width : 40em;
width : 50%;
}
div.versements
{
margin-left : 4em;
display: flex;
flex-wrap: wrap;
}
/* config */
dl.config
{
padding : 1ex 0;
}
div.champnom
{
display : flex;
margin-top : 0.25rem;
}
div.infos
{
border : 1px solid rgba(var(--gMainColor));
border-radius : 0.25rem;
padding : 0.4rem;
margin-left : 1em;
width : 20em;
}