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> <div>
{foreach from=$champsNom key="nom" item="champ"} {foreach from=$champsNom key="nom" item="champ"}
<div> <div class="champnom">
<input type="checkbox" name="champsNom[]" value={$nom} class="choix" {if $nbChamps == 1 || $champ.position != 0}checked{/if} > <div class="actions"></div>
<label>{$champ.titre}</label> <div class="infos">
<div class="actions"> <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>
</div> </div>
{/foreach} {/foreach}

View File

@ -1,10 +1,11 @@
/* liste des versements */ /* liste des versements */
div.impair { div.pair {
background: rgba(var(--gSecondColor), 0.15); background-color: rgba(var(--gSecondColor), 0.15);
} }
fieldset.versements fieldset.versements
{ {
margin-left : 4em; margin-bottom : 0;
margin-right : 0.5em;
-webkit-border-radius:8px; -webkit-border-radius:8px;
border-radius:8px; border-radius:8px;
} }
@ -33,10 +34,15 @@ summary.personne
padding-top : 0; padding-top : 0;
padding-bottom : 0; padding-bottom : 0;
} }
div.personne, div.activite div.activite
{ {
font-weight : normal; 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 h3.activite
{ {
@ -52,10 +58,6 @@ p.activite
max-width: 300px; max-width: 300px;
max-height: 150px; max-height: 150px;
} }
dl.config
{
padding : 1ex 0;
}
div.explications ul div.explications ul
{ {
@ -70,3 +72,32 @@ input.check_global
{ {
margin : 0.2em 0.5em; 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;
}