
Hello,
I didn't find any information on the forum, so I'm asking here.
I am requiring your help about the fieldset feature. I want to adapt the new inputs style added by the fieldset with the previous cases, but it's like impossible, even with the [class], or the [name] tag on the CSS tab. My character sheet is in French, but that's not important here.
HTLM
<div class="sheet-row skills">
<h3 class="sheet-titre-4">Capacités</h3><h4 class="sheet-sous-titre-1">(Vous avez 40 % à répartir entre 3 capacités.)</h4>
<div class="sheet-col">
<input style="margin-bottom: 1px" type="text" placeholder="Première technique" name="attr_char_skill_Nom_1"/><input style="margin-bottom: 1px" type="text" placeholder="Effet" name="attr_char_skill_Effet_1"/><br />
<input style="margin-bottom: 1px" type="text" placeholder="Deuxième compétence" name="attr_char_skill_Nom_2"/><input style="margin-bottom: 1px" type="text" placeholder="Effet" name="attr_char_skill_Effet_2"/><br />
<input style="margin-bottom: 1px" type="text" placeholder="Troisième aptitude" name="attr_char_skill_Nom_3"/><input style="margin-bottom: 1px" type="text" placeholder="Effet" name="attr_char_skill_Effet_3"/><br />
<fieldset class="repeating_matos">
<input style="margin-bottom: 1px" type="text" class="repeating_skill_Nom" placeholder="Nouvelle technique" name="attr_char_skill_Nom_4"/><input style="margin-bottom: 1px" type="text" class="repeating_skill_Effet" placeholder="Effet" name="attr_char_skill_Effet_4"/><br />
</fieldset>
</div>
</div>
And the CSS :
.charsheet .sheet-skills .sheet-col input[name*="attr_char_skill_Nom"],
.repeating_matos input.repeating_skill_Nom{
width: 30%;
}
.charsheet .sheet-skills .sheet-col input[name*="attr_char_skill_Effet"],
.repeating_matos input.repeating_skill_Effet{
width: 67%;
}
What it looks like today :
I tried many many things, like:
input.repeating_skill_Nom{
width: 30%;
}
or even
.charsheet .sheet-skills .sheet-col input[name*="attr_char_skill_Nom"],
.charsheet .sheet-skills .sheet-col .repeating_matos .repeating_skill_Nom input[name*="attr_char_skill_Nom"],
input.repeating_skill_Nom{
width: 30%;
}
.charsheet .sheet-skills .sheet-col input[name*="attr_char_skill_Effet"],
.charsheet .sheet-skills .sheet-col .repeating_matos .repeating_skill_Effet input[name*="attr_char_skill_Effet"],
input.repeating_skill_Effet{
width: 67%;
}
but impossible to change anything and I don't understand why... So, is it even possible to modify the style of this feature?? I'm getting crazy :O
Thanks for your help!