- Nouvelle palette : #080c14 fond, accents néon par type (#00d4d4 item, #ff3d5a kungfu, #4a9eff spell, #cc44ff supernatural) - Nouveaux composants LESS : .cde-neon-header (clip-path angulaire + accent line), .cde-avatar (clip-path), .cde-stat-grid/.cde-stat-cell (style terminal), .cde-badge (parallélogramme), .cde-neon-tabs (underline néon animé), .cde-check-cell - Fix layout : .cde-sheet width: 100% + height: 100% + overflow: hidden, .cde-tab-body flex: 1 + min-height: 0, .cde-notes-editor flex stretch - Fix positions : DEFAULT_OPTIONS height explicite pour tous les types (item 620x580, spell 660x680, kungfu 720x680, supernatural 560x520) - 4 templates items reécrits avec nouvelles classes et structure épurée Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<form class="flexcol {{cssClass}}" autocomplete="off">
|
|
<header class="sheet-header">
|
|
<div class="name">
|
|
<label><b>{{ localize "CDE.SkillPromptName" }}</b></label>
|
|
</div>
|
|
</header>
|
|
|
|
{{!-- Sheet Body --}}
|
|
<section class="sheet-body" style="background-image: url('/systems/fvtt-chroniques-de-l-etrange/images/cde_fond_transp.png')";
|
|
>
|
|
|
|
{{!-- Frame --}}
|
|
<div class="frame">
|
|
<div class="select">
|
|
<label><b>{{localize "CDE.InitiativeNPCSpeciality"}}</b></label>
|
|
<select name="speciality">
|
|
{{#select speciality }}
|
|
<option value="0">{{ localize "CDE.Physical" }}</option>
|
|
<option value="1">{{ localize "CDE.Martial" }}</option>
|
|
<option value="2">{{ localize "CDE.Mental" }}</option>
|
|
<option value="3">{{ localize "CDE.Social" }}</option>
|
|
<option value="4">{{ localize "CDE.Spiritual" }}</option>
|
|
{{/select}}
|
|
</select>
|
|
</div>
|
|
<br>
|
|
</div>
|
|
</section>
|
|
</form> |