Files
fvtt-chroniques-de-l-etrange/templates/actor/cde-tinji-sheet.html
LeRatierBretonnier 068fca00e5 Neo-Tokyo Neon Noir design pour fiches items
- 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>
2026-03-26 00:18:04 +01:00

47 lines
2.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<form class="flexcol cde-sheet cde-actor {{cssClass}}" autocomplete="off">
{{log 'tinji-sheet' this}}
<header class="cde-header cde-actor-header">
<img class="profile-img" src="{{actor.img}}" data-edit="img" title="{{actor.name}}" />
<div class="header-fields">
<h1 class="charname">
<input name="name" type="text" value="{{actor.name}}" placeholder="{{ localize 'CDE.TinJiName' }}" />
</h1>
<div class="cde-tag">
<span class="cde-pill supernatural">{{ localize "CDE.TinJi2" }}</span>
<span>{{ localize "CDE.ModernJapan" }}</span>
</div>
</div>
</header>
<nav class="sheet-tabs tabs cde-tabs" data-group="primary">
<a class="item" data-action="tab" data-group="primary" data-tab="tinji">{{ localize "CDE.TinJi2" }}</a>
<a class="item" data-action="tab" data-group="primary" data-tab="description">{{ localize "CDE.Description" }}</a>
</nav>
<section class="sheet-body cde-tab-body">
<div class="tab" data-group="primary" data-tab="tinji">
<div class="cde-card cde-centered-card tinji_wrap">
<div class="tinji schema">
<div class="tinji-value">
<label>{{ localize "CDE.TinJi2" }}</label>
<input type="number" name="system.value" value="{{systemData.value}}" title="{{ localize 'CDE.TinJi2' }}" />
</div>
<img
class="logo"
src="systems/fvtt-chroniques-de-l-etrange/images/logo_jeu.png"
title="奇闻异事 ● Hong Kong Les Chroniques de l'&Eacute;trange ● R.dHuissier & C.Lameire ● Antre Monde &Eacute;ditions"
alt="Logo"
/>
</div>
<img class="tinji-visual" src="systems/fvtt-chroniques-de-l-etrange/images/tinji.webp" title="Tin Ji" alt="Tin Ji" />
</div>
</div>
<div class="tab" data-group="primary" data-tab="description">
<div class="cde-card cde-notes-editor">
{{editor descriptionHTML target="system.description" button=true editable=editable engine="prosemirror"}}
</div>
</div>
</section>
</form>