diff --git a/packs/aides-de-jeu.SAVED b/_deprecated/aides-de-jeu.SAVED similarity index 100% rename from packs/aides-de-jeu.SAVED rename to _deprecated/aides-de-jeu.SAVED diff --git a/packs/armes.db b/_deprecated/armes.db similarity index 100% rename from packs/armes.db rename to _deprecated/armes.db diff --git a/packs/artefacts.db b/_deprecated/artefacts.db similarity index 100% rename from packs/artefacts.db rename to _deprecated/artefacts.db diff --git a/packs/competences-creatures.db b/_deprecated/competences-creatures.db similarity index 100% rename from packs/competences-creatures.db rename to _deprecated/competences-creatures.db diff --git a/packs/competences.db b/_deprecated/competences.db similarity index 100% rename from packs/competences.db rename to _deprecated/competences.db diff --git a/packs/equipement.db b/_deprecated/equipement.db similarity index 100% rename from packs/equipement.db rename to _deprecated/equipement.db diff --git a/packs/historiques.db b/_deprecated/historiques.db similarity index 100% rename from packs/historiques.db rename to _deprecated/historiques.db diff --git a/packs/profils.db b/_deprecated/profils.db similarity index 100% rename from packs/profils.db rename to _deprecated/profils.db diff --git a/packs/protections.db b/_deprecated/protections.db similarity index 100% rename from packs/protections.db rename to _deprecated/protections.db diff --git a/packs/tables.db b/_deprecated/tables.db similarity index 100% rename from packs/tables.db rename to _deprecated/tables.db diff --git a/packs/talents-cellule.db b/_deprecated/talents-cellule.db similarity index 100% rename from packs/talents-cellule.db rename to _deprecated/talents-cellule.db diff --git a/packs/talents.db b/_deprecated/talents.db similarity index 100% rename from packs/talents.db rename to _deprecated/talents.db diff --git a/assets/icons/mutation.webp b/assets/icons/mutation.webp new file mode 100644 index 0000000..89eb641 Binary files /dev/null and b/assets/icons/mutation.webp differ diff --git a/lang/fr.json b/lang/fr.json index 018cee9..937209e 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -16,8 +16,8 @@ "monnaie": "Monnaie", "equipement": "Equipement", "ressource": "Ressource", - "contact": "Contact" - + "contact": "Contact", + "mutation": "Mutation" } }, "HAWKMOON": { diff --git a/modules/hawkmoon-actor-sheet.js b/modules/hawkmoon-actor-sheet.js index 13404df..d51915b 100644 --- a/modules/hawkmoon-actor-sheet.js +++ b/modules/hawkmoon-actor-sheet.js @@ -44,6 +44,7 @@ export class HawkmoonActorSheet extends ActorSheet { protections: duplicate(this.actor.getArmors()), historiques: duplicate(this.actor.getHistoriques() || []), talents: duplicate(this.actor.getTalents() || []), + mutations: duplicate(this.actor.getMutations() || []), talentsCell: this.getCelluleTalents(), profils: duplicate(this.actor.getProfils() || []), combat: this.actor.getCombatValues(), diff --git a/modules/hawkmoon-actor.js b/modules/hawkmoon-actor.js index 6a8bf16..abed56b 100644 --- a/modules/hawkmoon-actor.js +++ b/modules/hawkmoon-actor.js @@ -138,6 +138,9 @@ export class HawkmoonActor extends Actor { getContacts() { return this.getItemSorted(["contact"]) } + getMutations() { + return this.getItemSorted(["mutation"]) + } /* -------------------------------------------- */ getSkills() { diff --git a/modules/hawkmoon-combat.js b/modules/hawkmoon-combat.js index 92ad0f6..3ac9941 100644 --- a/modules/hawkmoon-combat.js +++ b/modules/hawkmoon-combat.js @@ -6,7 +6,7 @@ export class HawkmoonCombat extends Combat { /* -------------------------------------------- */ async rollInitiative(ids, formula = undefined, messageOptions = {} ) { ids = typeof ids === "string" ? [ids] : ids; - for (let cId = 0; cId < ids.length; cId++) { + for (let cId of ids) { const c = this.combatants.get(ids[cId]); //console.log("Init for combattant", c ) let id = c._id || c.id @@ -21,5 +21,4 @@ export class HawkmoonCombat extends Combat { _onUpdate(changed, options, userId) { } - } diff --git a/modules/hawkmoon-item.js b/modules/hawkmoon-item.js index b55a8fd..62cd4f2 100644 --- a/modules/hawkmoon-item.js +++ b/modules/hawkmoon-item.js @@ -13,6 +13,7 @@ export const defaultItemImg = { artefact: "systems/fvtt-hawkmoon-cyd/assets/icons/artefact.webp", contact: "systems/fvtt-hawkmoon-cyd/assets/icons/contacts.webp", ressource: "systems/fvtt-hawkmoon-cyd/assets/icons/ressources.webp", + mutation: "systems/fvtt-hawkmoon-cyd/assets/icons/mutation.webp", } /** diff --git a/modules/hawkmoon-main.js b/modules/hawkmoon-main.js index 30597e3..6025a18 100644 --- a/modules/hawkmoon-main.js +++ b/modules/hawkmoon-main.js @@ -18,7 +18,6 @@ import { HawkmoonCombat } from "./hawkmoon-combat.js"; import { HawkmoonItem } from "./hawkmoon-item.js"; import { HawkmoonAutomation } from "./hawkmoon-automation.js"; import { HawkmoonTokenHud } from "./hawkmoon-hud.js"; -import { ClassCounter} from "https://www.uberwald.me/fvtt_appcount/count-class-ready.js" /* -------------------------------------------- */ /* Foundry VTT Initialization */ @@ -99,7 +98,13 @@ Hooks.once("ready", function () { }); } - ClassCounter.registerUsageCount(); + import("https://www.uberwald.me/fvtt_appcount/count-class-ready.js").then(moduleCounter=>{ + console.log("ClassCounter loaded", moduleCounter) + moduleCounter.ClassCounter.registerUsageCount() + }).catch(err=> + console.log("No stats available, giving up.") + ) + welcomeMessage() }); diff --git a/styles/simple.css b/styles/simple.css index 5a425e0..75bcce2 100644 --- a/styles/simple.css +++ b/styles/simple.css @@ -4,9 +4,9 @@ font-family: "Charlemagne"; src: url('../assets/fonts/CharlemagneStd-Bold.otf') format("otf"); } - + :root { - /* =================== 1. ACTOR SHEET FONT STYLES =========== */ + /* =================== 1. ACTOR SHEET FONT STYLES =========== */ --window-header-font-family: Charlemagne; --window-header-title-font-size: 1.1rem; --window-header-title-font-weight: normal; @@ -31,7 +31,7 @@ --actor-label-font-weight: 700; --actor-label-color: #464331c4; - /* =================== 2. DEBUGGING HIGHLIGHTERS ============ */ + /* =================== 2. DEBUGGING HIGHLIGHTERS ============ */ --debug-background-color-red: #ff000054; --debug-background-color-blue: #1d00ff54; --debug-background-color-green: #54ff0054; @@ -40,958 +40,1064 @@ --debug-box-shadow-blue: inset 0 0 2px blue; --debug-box-shadow-green: inset 0 0 2px green; } -/*@import url("https://fonts.googleapis.com/css2?family=Martel:wght@400;800&family=Roboto:wght@300;400;500&display=swap");*/ -/* Global styles & Font */ -.window-app { - font-family: Charlemagne; - text-align: justify; - font-size: 12px; - letter-spacing: 1px; - background-image: url("../assets/ui/pc_sheet_bg.webp"); - background-repeat: repeat; -} -/* Fonts */ -.window-app .window-header, #actors .directory-list, #navigation #scene-list .scene.nav-item { - font-family: "Charlemagne"; - font-size: 0.8rem; -} /* For title, sidebar character and scene */ -.sheet header.sheet-header h1 input { - font-family: "Charlemagne"; - font-size: 0.8rem; - color: lightgray; -} -.sheet nav.sheet-tabs { - font-family: "Charlemagne"; - font-size: 0.8rem; - color: #151c1f; -} /* For nav and title */ -.window-app input, .fvtt-hawkmoon-cyd .item-form, .sheet header.sheet-header .flex-group-center.flex-compteurs, .sheet header.sheet-header .flex-group-center.flex-fatigue, select, button, .item-checkbox, #sidebar, #players, #navigation #nav-toggle { - font-size: 0.8rem; -} -.fvtt-hawkmoon-cyd .sheet-header select option { - background-color: rgb(68, 25, 25); -} -.fvtt-hawkmoon-cyd .sheet-header input, .fvtt-hawkmoon-cyd .sheet-header select { - color: lightgray; -} -.window-header{ - background: rgba(0,0,0,0.75); -} -.window-app.sheet .window-content { - margin: 0; - padding: 0; - background-image: url("../assets/ui/pc_sheet_bg.webp"); - background-repeat: repeat; -} -.strong-text{ - font-weight: bold; -} - -.tabs .item.active, .blessures-list li ul li:first-child:hover, a:hover { - text-shadow: 1px 0px 0px #ff6600; -} - -.rollable:hover, .rollable:focus { - color: #000; - text-shadow: 0 0 10px red; - cursor: pointer; -} -input:disabled { - color:#1c2058; -} -select:disabled { - color:#1c2058; -} -table {border: 1px solid #7a7971;} - -.grid, .grid-2col { - display: grid; - grid-column: span 2 / span 2; - grid-template-columns: repeat(2, minmax(0, 1fr)); - gap: 10px; - margin: 10px 0; - padding: 0; -} - -.grid-3col { - grid-column: span 3 / span 3; - grid-template-columns: repeat(3, minmax(0, 1fr)); -} - -.grid-4col { - grid-column: span 4 / span 4; - grid-template-columns: repeat(4, minmax(0, 1fr)); -} - -.grid-5col { - grid-column: span 5 / span 5; - grid-template-columns: repeat(5, minmax(0, 1fr)); -} - -.grid-6col { - grid-column: span 5 / span 5; - grid-template-columns: repeat(5, minmax(0, 1fr)); -} - -.grid-7col { - grid-column: span 7 / span 7; - grid-template-columns: repeat(7, minmax(0, 1fr)); -} - -.grid-8col { - grid-column: span 8 / span 8; - grid-template-columns: repeat(8, minmax(0, 1fr)); -} - -.grid-9col { - grid-column: span 9 / span 9; - grid-template-columns: repeat(9, minmax(0, 1fr)); -} - -.grid-10col { - grid-column: span 10 / span 10; - grid-template-columns: repeat(10, minmax(0, 1fr)); -} - -.grid-11col { - grid-column: span 11 / span 11; - grid-template-columns: repeat(11, minmax(0, 1fr)); -} - -.grid-12col { - grid-column: span 12 / span 12; - grid-template-columns: repeat(12, minmax(0, 1fr)); -} - -.flex-group-center, -.flex-group-left, -.flex-group-right { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - text-align: center; - padding: 5px; -} - -.flex-group-left { - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - text-align: left; -} - -.flex-group-right { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - text-align: right; -} - -.flex-center { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - text-align: center; -} - -.table-create-actor { - font-size: 0.8rem; -} - -.flex-between { - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; -} - -.flex-shrink { - flex: 'flex-shrink' ; -} - -/* Styles limited to foundryvtt-vadentis sheets */ - -.fvtt-hawkmoon-cyd .sheet-header { - -webkit-box-flex: 0; - -ms-flex: 0 0 210px; - flex: 0 0 210px; - overflow: hidden; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - margin-bottom: 10px; - background-image: url("../assets/ui/hawkmoon_background_01.png"); -} - -.background-sheet-header { - background-image: url("../assets/ui/hawkmoon_background_01.png"); - background-blend-mode: soft-light; - color: lightgray; -} - -.fvtt-hawkmoon-cyd .sheet-header .profile-img { - -webkit-box-flex: 0; - -ms-flex: 0 0 128px; - flex: 0 0 128px; - height: 128px; - width: 128px; - margin-right: 10px; - object-fit: cover; - object-position: 50% 0; -} - -.button-img { - vertical-align: baseline; - width: 8%; - height: 8%; - max-height: 48px; - border-width: 0; - border: 1px solid rgba(0, 0, 0, 0); -} -.button-img:hover { - color: rgba(255, 255, 128, 0.7); - border: 1px solid rgba(255, 128, 0, 0.8); - cursor: pointer; -} - -.button-effect-img { - vertical-align: baseline; - width: 16px; - max-height: 16px; - height: 16; - border-width: 0; -} - -.small-button-container { - height: 16px; - width: 16px; - border: 0; - vertical-align: bottom; -} - -.fvtt-hawkmoon-cyd .sheet-header .header-fields { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; -} - -.fvtt-hawkmoon-cyd .sheet-header h1.charname { - height: 50px; - padding: 0px; - margin: 5px 0; - border-bottom: 0; - font-weight: bold; - font-size: 2rem; - font-family: "Charlemagne"; - color: lightgray; -} - -.fvtt-hawkmoon-cyd .sheet-header h1.charname input { - width: 100%; - height: 100%; - margin: 0; - font-weight: bold; - font-family: "Charlemagne"; - font-size: 2rem; - color: lightgray; -} - -.fvtt-hawkmoon-cyd .sheet-tabs { - -webkit-box-flex: 0; - -ms-flex: 0; - flex: 0; -} - -.fvtt-hawkmoon-cyd .sheet-body, -.fvtt-hawkmoon-cyd .sheet-body .tab, -.fvtt-hawkmoon-cyd .sheet-body .tab .editor { - height: 100%; - font-size: 0.8rem; - color:rgba(0,0,0,0.9) -} - -.fvtt-hawkmoon-cyd .sheet-body input, .fvtt-hawkmoon-cyd .sheet-body select { - color:rgba(0,0,0,0.9) -} - -.editor { - border: 2; - height: 300px; - padding: 0 3px; -} - -.medium-editor { - border: 2; - height: 240px; - padding: 0 3px; -} - -.small-editor { - border: 2; - height: 120px; - padding: 0 3px; -} - -.fvtt-hawkmoon-cyd .tox .tox-editor-container { - background: #fff; -} - -.fvtt-hawkmoon-cyd .tox .tox-edit-area { - padding: 0 8px; -} - -.fvtt-hawkmoon-cyd .resource-label { - font-weight: bold; - text-transform: uppercase; -} - -.fvtt-hawkmoon-cyd .tabs { - height: 40px; - border-top: 1px solid #AAA; - border-bottom: 1px solid #AAA; - color: #000000; -} - -.fvtt-hawkmoon-cyd .tabs .item { - /*line-height: 40px;*/ - font-weight: bold; -} - -.fvtt-hawkmoon-cyd .tabs .item.active { - text-decoration: underline; - text-shadow: none; -} - -.fvtt-hawkmoon-cyd .items-list { - list-style: none; - margin: 1px 0; - padding: 0; - overflow-y: auto; -} - -.fvtt-hawkmoon-cyd .items-list .item-header { - font-weight: bold; -} - -.fvtt-hawkmoon-cyd .items-list .item { - height: 30px; - line-height: 24px; - padding: 1px 0; - border-bottom: 1px solid #BBB; -} - -.fvtt-hawkmoon-cyd .items-list .item .item-image { - -webkit-box-flex: 0; - -ms-flex: 0 0 24px; - flex: 0 0 24px; - margin-right: 5px; -} - -.fvtt-hawkmoon-cyd .items-list .item img { - display: block; -} - -.fvtt-hawkmoon-cyd .items-list .item-name { - margin: 0; -} - -.fvtt-hawkmoon-cyd .items-list .item-controls { - -webkit-box-flex: 0; - -ms-flex: 0 0 86px; - flex: 0 0 86px; - text-align: right; -} - - -/* ======================================== */ -/* Sheet */ -.window-app.sheet .window-content .sheet-header{ - /*background: #011d33 url("../images/ui/fond1.webp") repeat left top;*/ - background: url("../assets/ui/pc_sheet_bg.webp"); - background-repeat: repeat; -} - -.window-app.sheet .window-content .sheet-header input[type="text"], .window-app.sheet .window-content .sheet-header input[type="number"], .window-app.sheet .window-content .sheet-header input[type="password"], .window-app.sheet .window-content .sheet-header input[type="date"], .window-app.sheet .window-content .sheet-header input[type="time"] { - /*color: rgba(36, 37, 37, 0.75);*/ - /*background: rgba(255, 255, 255, 0.05);*/ - /*border: 2px saddlebrown;*/ - /*color: lightgray;*/ - border-width: 1px; - margin-bottom: 0.25rem; -} - -.window-app .window-content, .window-app.sheet .window-content .sheet-body{ - font-size: 0.8rem; - background: url("../assets/ui/pc_sheet_bg.webp"); - background-repeat: repeat-y; - color: black; -} - -/*section.sheet-body{ - padding: 0.25rem 0.5rem;}*/ - -.sheet header.sheet-header .profile-img { - object-fit: cover; - object-position: 50% 0; - margin: 0.5rem 0 0.5rem 0.5rem; - padding: 0; - border:0px; -} - -.sheet nav.sheet-tabs { - font-size: 0.70rem; - font-weight: bold; - height: 2.5rem; - flex: 0 0 3rem; - margin: 0; - padding: 0 0 0 0.25rem; - text-align: center; - text-transform: uppercase; - line-height: 1.5rem; - border-top: 0 none; - border-bottom: 0 none; - /*background-color:#2e5561;*/ - color: #151c1f; - /*background-image: url("../assets/ui/hawkmoon_background_02.png");*/ -} - -/* background: rgb(245,245,240) url("../images/ui/fond4.webp") repeat left top;*/ -nav.sheet-tabs .item { - position: relative; - padding: 0 0.25rem; -} - -nav.sheet-tabs .item:after { - content: ""; - position: absolute; - top: 0; - right: 0; - height: 2rem; - width: 1px; - /*border-right: 1px dashed rgba(52, 52, 52, 0.25);*/ -} - -.sheet .tab[data-tab] { - padding: 0; -} - -section.sheet-body:after { - content: ""; - display: block; - clear: both; -} - -.sheet header.sheet-header .flex-compteurs {text-align: right;} -.sheet header.sheet-header .resource-content {width: 2rem;} - -.select-diff { - display: inline-block; - text-align: left; - width: 50px; -} - -.window-app.sheet .window-content .tooltip:hover .tooltiptext { - top: 2rem; - left: 2rem; - margin: 0; - padding: 0.25rem; -} - -.window-app.sheet .window-content .carac-value, .window-app.sheet .window-content .competence-xp { - margin: 0.05rem; - flex-basis: 3rem; - text-align: center; -} - -/* ======================================== */ -/* Global UI elements */ - -/* ======================================== */ - -h1, h2, h3, h4 { - font-weight: bold; -} -ul, ol { + * { + scrollbar-color: initial; + } + + ::-webkit-scrollbar-thumb { + border-color: #ff6400; + } + + @-moz-document url-prefix() { + * { + scrollbar-color: #782e22 transparent; + scrollbar-width: thin; + } + } + + /*@import url("https://fonts.googleapis.com/css2?family=Martel:wght@400;800&family=Roboto:wght@300;400;500&display=swap");*/ + /* Global styles & Font */ + .window-app { + font-family: Charlemagne; + text-align: justify; + font-size: 12px; + letter-spacing: 1px; + background-image: url("../assets/ui/pc_sheet_bg.webp"); + background-repeat: repeat; + } + + /* Fonts */ + .window-app .window-header, + #actors .directory-list, + #navigation #scene-list .scene.nav-item { + font-family: "Charlemagne"; + font-size: 0.8rem; + } + + /* For title, sidebar character and scene */ + .sheet header.sheet-header h1 input { + font-family: "Charlemagne"; + font-size: 0.8rem; + color: lightgray; + } + + .sheet nav.sheet-tabs { + font-family: "Charlemagne"; + font-size: 0.8rem; + color: #151c1f; + } + + /* For nav and title */ + .window-app input, + .fvtt-hawkmoon-cyd .item-form, + .sheet header.sheet-header .flex-group-center.flex-compteurs, + .sheet header.sheet-header .flex-group-center.flex-fatigue, + select, + button, + .item-checkbox, + #sidebar, + #players, + #navigation #nav-toggle { + font-size: 0.8rem; + } + + .fvtt-hawkmoon-cyd .sheet-header select option { + background-color: rgb(68, 25, 25); + } + + .fvtt-hawkmoon-cyd .sheet-header input, + .fvtt-hawkmoon-cyd .sheet-header select { + color: lightgray; + } + + .window-header { + background: rgba(0, 0, 0, 0.75); + } + + .window-app.sheet .window-content { margin: 0; padding: 0; -} -ul, li { - list-style-type: none; -} + background-image: url("../assets/ui/pc_sheet_bg.webp"); + background-repeat: repeat; + } -.sheet li { - margin: 0.010rem; - padding: 0.25rem; -} -.header-fields li { - margin: 0; - padding: 0; -} + .strong-text { + font-weight: bold; + } -.alterne-list > .list-item:hover { - background: rgba(100, 100, 50, 0.25); -} -.alterne-list > .list-item:nth-child(even) { - background: rgba(80, 60, 0, 0.10); -} -.alterne-list > .list-item:nth-child(odd) { - background: rgb(160, 130, 100, 0.05); -} + .tabs .item.active, + .blessures-list li ul li:first-child:hover, + a:hover { + text-shadow: 1px 0px 0px #ff6600; + } -.specialisation-label { - font-size: 0.8rem; -} + .rollable:hover, + .rollable:focus { + color: #000; + text-shadow: 0 0 10px red; + cursor: pointer; + } -.carac-label, -.attr-label { - font-weight: bold; -} + input:disabled { + color: #1c2058; + } -.list-item { - margin: 0.125rem; - box-shadow: inset 0px 0px 1px #00000096; - border-radius: 0.25rem; - padding: 0.125rem; - flex: 1 1 5rem; -} -.item-display-show { - display: block; -} -.item-display-hide { - display: none; -} -.conteneur-type { - background: rgb(200, 10, 100, 0.25); -} + select:disabled { + color: #1c2058; + } -.item-quantite { - margin-left: 0.5rem; -} + table { + border: 1px solid #7a7971; + } -.list-item-margin1 { - margin-left: 1rem; -} -.list-item-margin2 { - margin-left: 2rem; -} -.list-item-margin3 { - margin-left: 3rem; -} -.list-item-margin4 { - margin-left: 4rem; -} + .grid, + .grid-2col { + display: grid; + grid-column: span 2 / span 2; + grid-template-columns: repeat(2, minmax(0, 1fr)); + gap: 10px; + margin: 10px 0; + padding: 0; + } -.sheet-competence-img { - width: 24px; - height: 24px; - flex-grow: 0; - margin-right: 0.25rem; -} -.competence-column { - flex-direction: column; - align-content: flex-start; - justify-content: flex-start; - flex-grow: 0; - flex-basis: 1; -} -.competence-header { - align-content: flex-start; - justify-content: flex-start; - font-weight: bold; - flex-grow: 0; -} -.secondaire-label, -.arme-label, -.generic-label, -.competence-label, -.devotion-label, -.sort-label, -.technique-label, -.stat-label, -.arme-label, -.armure-label, -.equipement-label, -.description-label { - flex-grow: 2; - margin-left: 4px; -} -.roll-dialog-label { - margin: 4px 0; - padding-top: 7px; -} + .grid-3col { + grid-column: span 3 / span 3; + grid-template-columns: repeat(3, minmax(0, 1fr)); + } -.short-label { - flex-grow: 1; -} -.keyword-label { - font-size: 0.85rem; -} + .grid-4col { + grid-column: span 4 / span 4; + grid-template-columns: repeat(4, minmax(0, 1fr)); + } -.item-sheet-label { - flex-grow: 1; -} + .grid-5col { + grid-column: span 5 / span 5; + grid-template-columns: repeat(5, minmax(0, 1fr)); + } -.item-text-long-line { - flex-grow: 3; -} + .grid-6col { + grid-column: span 5 / span 5; + grid-template-columns: repeat(5, minmax(0, 1fr)); + } -.score-label { - flex-grow: 2; - align-content: center; -} + .grid-7col { + grid-column: span 7 / span 7; + grid-template-columns: repeat(7, minmax(0, 1fr)); + } -.attribut-value, -.carac-value { - flex-grow: 0; - flex-basis: 64px; - margin-right: 4px; - margin-left: 4px; -} -.sante-value, -.competence-value { - flex-grow: 0; - flex-basis: 2rem; - margin-right: 0.25rem; - margin-left: 0.25rem; -} -.description-value { - flex-grow: 0; - flex-basis: 4rem; - margin-right: 0.25rem; - margin-left: 0.25rem; -} -.competence-xp { - flex-grow: 0; - flex-basis: 2rem; - margin-right: 0.25rem; - margin-left: 0.25rem; -} -.blessures-title { - font-weight: bold; -} -.alchimie-title { - font-weight: bold; -} -.blessure-data { - flex-direction: row; - align-content: flex-start; - justify-content: flex-start; -} -.blessures-soins { - flex-grow: 0; - flex-basis: 32px; - margin-right: 4px; - margin-left: 4px; -} -.blessures-loc { - flex-grow: 0; - flex-basis: 96px; - margin-right: 4px; - margin-left: 4px; -} -.pointsreve-value { - flex-grow: 0; - flex-basis: 64px; - margin-right: 4px; - margin-left: 4px; -} + .grid-8col { + grid-column: span 8 / span 8; + grid-template-columns: repeat(8, minmax(0, 1fr)); + } -.input-sante-header, -.stress-style { - flex-grow: 0; - flex-basis: 64px; - margin-right: 4px; - margin-left: 4px; -} + .grid-9col { + grid-column: span 9 / span 9; + grid-template-columns: repeat(9, minmax(0, 1fr)); + } -.small-label { - margin-top: 5px; -} + .grid-10col { + grid-column: span 10 / span 10; + grid-template-columns: repeat(10, minmax(0, 1fr)); + } -.padd-right { - margin-right: 8px; -} -.padd-left { - margin-left: 8px; -} + .grid-11col { + grid-column: span 11 / span 11; + grid-template-columns: repeat(11, minmax(0, 1fr)); + } -.stack-left { - align-items:center; - flex-shrink: 1; - flex-grow: 0; -} -.npc-stat-label { - flex-grow: 2; -} + .grid-12col { + grid-column: span 12 / span 12; + grid-template-columns: repeat(12, minmax(0, 1fr)); + } -.packed-left { - white-space: nowrap; - flex-grow: 0; -} + .flex-group-center, + .flex-group-left, + .flex-group-right { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + text-align: center; + padding: 5px; + } -.numeric-input { - text-align: right; - direction: rtl; - padding: 5px; -} + .flex-group-left { + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + text-align: left; + } -.input-numeric-short { - width: 40px; - max-width: 40px; - flex-grow: 0; - flex-shrink: 0; - flex-basis: 40px; - margin-right: 0.25rem; - margin-left: 0.25rem; -} + .flex-group-right { + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + text-align: right; + } -.stats-table { - align-content: flex-start; -} + .flex-center { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + text-align: center; + } -/* ======================================== */ -.tokenhudext { - display: flex; - flex: 0 !important; - font-weight: 600; -} -.tokenhudext.left { - justify-content: flex-start; - flex-direction: column; - position: absolute; - top: 2.75rem; - right: 4rem; -} -.tokenhudext.right { - justify-content: flex-start; - flex-direction: column; - position: absolute; - top: 2.75rem; - left: 4rem; -} -.control-icon.tokenhudicon { - width: fit-content; - height: fit-content; - min-width: 6rem; - min-height: 1.2rem; - flex-basis: auto; - padding: 0; - line-height: 1rem; - margin: 0.25rem; -} -.control-icon.tokenhudicon.right { - margin-left: 8px; -} -#token-hud .status-effects.active{ - z-index: 2; -} -/* ======================================== */ -.item-checkbox { - height: 25px; - border: 1px solid #736953a6; - border-left: none; - font-weight: 500; - font-size: 1rem; - color: black; - padding-top: 5px; - margin-right: 0px; - width: 45px; - position: relative; - left: 0px; - text-align: center; -} + .table-create-actor { + font-size: 0.8rem; + } + + .flex-between { + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + } + + .flex-shrink { + flex: 'flex-shrink'; + } + + /* Styles limited to foundryvtt-vadentis sheets */ + + .fvtt-hawkmoon-cyd .sheet-header { + -webkit-box-flex: 0; + -ms-flex: 0 0 210px; + flex: 0 0 210px; + overflow: hidden; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + margin-bottom: 10px; + background-image: url("../assets/ui/hawkmoon_background_01.png"); + } + + .background-sheet-header { + background-image: url("../assets/ui/hawkmoon_background_01.png"); + background-blend-mode: soft-light; + color: lightgray; + } + + .fvtt-hawkmoon-cyd .sheet-header .profile-img { + -webkit-box-flex: 0; + -ms-flex: 0 0 128px; + flex: 0 0 128px; + height: 128px; + width: 128px; + margin-right: 10px; + object-fit: cover; + object-position: 50% 0; + } + + .button-img { + vertical-align: baseline; + width: 8%; + height: 8%; + max-height: 48px; + border-width: 0; + border: 1px solid rgba(0, 0, 0, 0); + } + + .button-img:hover { + color: rgba(255, 255, 128, 0.7); + border: 1px solid rgba(255, 128, 0, 0.8); + cursor: pointer; + } + + .button-effect-img { + vertical-align: baseline; + width: 16px; + max-height: 16px; + height: 16; + border-width: 0; + } + + .small-button-container { + height: 16px; + width: 16px; + border: 0; + vertical-align: bottom; + } + + .fvtt-hawkmoon-cyd .sheet-header .header-fields { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + } + + .fvtt-hawkmoon-cyd .sheet-header h1.charname { + height: 50px; + padding: 0px; + margin: 5px 0; + border-bottom: 0; + font-weight: bold; + font-size: 2rem; + font-family: "Charlemagne"; + color: lightgray; + } + + .fvtt-hawkmoon-cyd .sheet-header h1.charname input { + width: 100%; + height: 100%; + margin: 0; + font-weight: bold; + font-family: "Charlemagne"; + font-size: 2rem; + color: lightgray; + } + + .fvtt-hawkmoon-cyd .sheet-tabs { + -webkit-box-flex: 0; + -ms-flex: 0; + flex: 0; + } + + .fvtt-hawkmoon-cyd .sheet-body, + .fvtt-hawkmoon-cyd .sheet-body .tab, + .fvtt-hawkmoon-cyd .sheet-body .tab .editor { + height: 100%; + font-size: 0.8rem; + color: rgba(0, 0, 0, 0.9) + } + + .fvtt-hawkmoon-cyd .sheet-body input, + .fvtt-hawkmoon-cyd .sheet-body select { + color: rgba(0, 0, 0, 0.9) + } + + .editor { + border: 2; + height: 300px; + padding: 0 3px; + } + + .medium-editor { + border: 2; + height: 240px; + padding: 0 3px; + } + + .small-editor { + border: 2; + height: 120px; + padding: 0 3px; + } + + .fvtt-hawkmoon-cyd .tox .tox-editor-container { + background: #fff; + } + + .fvtt-hawkmoon-cyd .tox .tox-edit-area { + padding: 0 8px; + } + + .fvtt-hawkmoon-cyd .resource-label { + font-weight: bold; + text-transform: uppercase; + } + + .fvtt-hawkmoon-cyd .tabs { + height: 40px; + border-top: 1px solid #AAA; + border-bottom: 1px solid #AAA; + color: #000000; + } + + .fvtt-hawkmoon-cyd .tabs .item { + /*line-height: 40px;*/ + font-weight: bold; + } + + .fvtt-hawkmoon-cyd .tabs .item.active { + text-decoration: underline; + text-shadow: none; + } + + .fvtt-hawkmoon-cyd .items-list { + list-style: none; + margin: 1px 0; + padding: 0; + overflow-y: auto; + } + + .fvtt-hawkmoon-cyd .items-list .item-header { + font-weight: bold; + } + + .fvtt-hawkmoon-cyd .items-list .item { + height: 30px; + line-height: 24px; + padding: 1px 0; + border-bottom: 1px solid #BBB; + } + + .fvtt-hawkmoon-cyd .items-list .item .item-image { + -webkit-box-flex: 0; + -ms-flex: 0 0 24px; + flex: 0 0 24px; + margin-right: 5px; + } + + .fvtt-hawkmoon-cyd .items-list .item img { + display: block; + } + + .fvtt-hawkmoon-cyd .items-list .item-name { + margin: 0; + } + + .fvtt-hawkmoon-cyd .items-list .item-controls { + -webkit-box-flex: 0; + -ms-flex: 0 0 86px; + flex: 0 0 86px; + text-align: right; + } -.flex-actions-bar { - flex-grow: 2; -} + /* ======================================== */ + /* Sheet */ + .window-app.sheet .window-content .sheet-header { + /*background: #011d33 url("../images/ui/fond1.webp") repeat left top;*/ + background: url("../assets/ui/pc_sheet_bg.webp"); + background-repeat: repeat; + } -/* ======================================== */ -/* Sidebar CSS */ -#sidebar { - font-size: 1rem; - background-position: 100%; -} + .window-app.sheet .window-content .sheet-header input[type="text"], + .window-app.sheet .window-content .sheet-header input[type="number"], + .window-app.sheet .window-content .sheet-header input[type="password"], + .window-app.sheet .window-content .sheet-header input[type="date"], + .window-app.sheet .window-content .sheet-header input[type="time"] { + /*color: rgba(36, 37, 37, 0.75);*/ + /*background: rgba(255, 255, 255, 0.05);*/ + /*border: 2px saddlebrown;*/ + /*color: lightgray;*/ + border-width: 1px; + margin-bottom: 0.25rem; + } -/* background: rgb(105,85,65) url("../images/ui/texture_feuille_perso_onglets.webp") no-repeat right bottom;*/ + .window-app .window-content, + .window-app.sheet .window-content .sheet-body { + font-size: 0.8rem; + background: url("../assets/ui/pc_sheet_bg.webp"); + background-repeat: repeat-y; + color: black; + } -#sidebar.collapsed { - height: 470px !important; -} + /*section.sheet-body{ + padding: 0.25rem 0.5rem;}*/ -#sidebar-tabs > .collapsed, #chat-controls .chat-control-icon { - color: rgba(220,220,220,0.75); - text-shadow: 1px 1px 0 rgba(0,0,0,0.75); -} + .sheet header.sheet-header .profile-img { + object-fit: cover; + object-position: 50% 0; + margin: 0.5rem 0 0.5rem 0.5rem; + padding: 0; + border: 0px; + } -.sidebar-tab .directory-list .entity { - border-top: 1px dashed rgba(0,0,0,0.25); + .sheet nav.sheet-tabs { + font-size: 0.70rem; + font-weight: bold; + height: 2.5rem; + flex: 0 0 3rem; + margin: 0; + padding: 0 0 0 0.25rem; + text-align: center; + text-transform: uppercase; + line-height: 1.5rem; + border-top: 0 none; border-bottom: 0 none; - padding: 0.25rem 0; -} + /*background-color:#2e5561;*/ + color: #151c1f; + /*background-image: url("../assets/ui/hawkmoon_background_02.png");*/ + } -.sidebar-tab .directory-list .entity:hover { - background: rgba(0,0,0,0.05); - cursor: pointer; -} -.chat-message-header { - background: rgba(220,220,210,0.5); - font-size: 1.1rem; - height: 48px; - text-align: center; - vertical-align: middle; - display: flex; - align-items: center; -} + /* background: rgb(245,245,240) url("../images/ui/fond4.webp") repeat left top;*/ + nav.sheet-tabs .item { + position: relative; + padding: 0 0.25rem; + } -.chat-message .message-header .flavor-text, .chat-message .message-header .whisper-to { - font-size: 0.9rem; -} -.chat-actor-name { - padding: 4px; -} + nav.sheet-tabs .item:after { + content: ""; + position: absolute; + top: 0; + right: 0; + height: 2rem; + width: 1px; + /*border-right: 1px dashed rgba(52, 52, 52, 0.25);*/ + } -.chat-img { - width: 64px; - height: 64px; -} + .sheet .tab[data-tab] { + padding: 0; + } -.roll-dialog-header { - height: 52px; -} + section.sheet-body:after { + content: ""; + display: block; + clear: both; + } -.adversite-text { - font-weight: bold; - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); -} -.icon-adversite-container { - position: relative; - text-align: center; - color: white; - width: 64px; - min-height: 48px; -} -.icon-adversite { - width: 48px; - border: 0px; -} + .sheet header.sheet-header .flex-compteurs { + text-align: right; + } -.hud-adversite-container { - position: relative; - text-align: center; - color: white; - width: 64px; - min-height: 64px; -} -.hud-adversite-text { - font-weight: bold; - font-size:0.9rem; - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -85%); -} + .sheet header.sheet-header .resource-content { + width: 2rem; + } -.actor-icon { - float: left; - width: 48px; - height: 48px; - padding: 2px 6px 2px 2px; -} + .select-diff { + display: inline-block; + text-align: left; + width: 50px; + } -.padding-dice { - padding-top: .2rem; - padding-bottom: .2rem; -} + .window-app.sheet .window-content .tooltip:hover .tooltiptext { + top: 2rem; + left: 2rem; + margin: 0; + padding: 0.25rem; + } -.dice-image { - box-sizing: border-box; - border: none; - border-radius: 0; - max-width: 100%; -} + .window-app.sheet .window-content .carac-value, + .window-app.sheet .window-content .competence-xp { + margin: 0.05rem; + flex-basis: 3rem; + text-align: center; + } -.dice-image-reroll { - background-color:rgba(115, 224, 115, 0.25); - border-color: #011d33; - box-sizing: border-box; - border: 1px; - border-radius: 0%; - max-width: 100%; -} + /* ======================================== */ + /* Global UI elements */ -.chat-dice { - width: 15%; - height: 15%; - font-size: 15px; - padding: 10px; - /*padding-bottom: 20px;*/ - padding-top: .2rem; - padding-bottom: .2rem; -} + /* ======================================== */ + + h1, + h2, + h3, + h4 { + font-weight: bold; + } + + ul, + ol { + margin: 0; + padding: 0; + } + + ul, + li { + list-style-type: none; + } + + .sheet li { + margin: 0.010rem; + padding: 0.25rem; + } + + .header-fields li { + margin: 0; + padding: 0; + } + + .alterne-list>.list-item:hover { + background: rgba(100, 100, 50, 0.25); + } + + .alterne-list>.list-item:nth-child(even) { + background: rgba(80, 60, 0, 0.10); + } + + .alterne-list>.list-item:nth-child(odd) { + background: rgb(160, 130, 100, 0.05); + } + + .specialisation-label { + font-size: 0.8rem; + } + + .carac-label, + .attr-label { + font-weight: bold; + } + + .list-item { + margin: 0.125rem; + box-shadow: inset 0px 0px 1px #00000096; + border-radius: 0.25rem; + padding: 0.125rem; + flex: 1 1 5rem; + } + + .item-display-show { + display: block; + } + + .item-display-hide { + display: none; + } + + .conteneur-type { + background: rgb(200, 10, 100, 0.25); + } + + .item-quantite { + margin-left: 0.5rem; + } + + .list-item-margin1 { + margin-left: 1rem; + } + + .list-item-margin2 { + margin-left: 2rem; + } + + .list-item-margin3 { + margin-left: 3rem; + } + + .list-item-margin4 { + margin-left: 4rem; + } + + .sheet-competence-img { + width: 24px; + height: 24px; + flex-grow: 0; + margin-right: 0.25rem; + } + + .competence-column { + flex-direction: column; + align-content: flex-start; + justify-content: flex-start; + flex-grow: 0; + flex-basis: 1; + } + + .competence-header { + align-content: flex-start; + justify-content: flex-start; + font-weight: bold; + flex-grow: 0; + } + + .secondaire-label, + .arme-label, + .generic-label, + .competence-label, + .devotion-label, + .sort-label, + .technique-label, + .stat-label, + .arme-label, + .armure-label, + .equipement-label, + .description-label { + flex-grow: 2; + margin-left: 4px; + } + + .roll-dialog-label { + margin: 4px 0; + padding-top: 7px; + } + + .short-label { + flex-grow: 1; + } + + .keyword-label { + font-size: 0.85rem; + } + + .item-sheet-label { + flex-grow: 1; + } + + .item-text-long-line { + flex-grow: 3; + } + + .score-label { + flex-grow: 2; + align-content: center; + } + + .attribut-value, + .carac-value { + flex-grow: 0; + flex-basis: 64px; + margin-right: 4px; + margin-left: 4px; + } + + .sante-value, + .competence-value { + flex-grow: 0; + flex-basis: 2rem; + margin-right: 0.25rem; + margin-left: 0.25rem; + } + + .description-value { + flex-grow: 0; + flex-basis: 4rem; + margin-right: 0.25rem; + margin-left: 0.25rem; + } + + .competence-xp { + flex-grow: 0; + flex-basis: 2rem; + margin-right: 0.25rem; + margin-left: 0.25rem; + } + + .blessures-title { + font-weight: bold; + } + + .alchimie-title { + font-weight: bold; + } + + .blessure-data { + flex-direction: row; + align-content: flex-start; + justify-content: flex-start; + } + + .blessures-soins { + flex-grow: 0; + flex-basis: 32px; + margin-right: 4px; + margin-left: 4px; + } + + .blessures-loc { + flex-grow: 0; + flex-basis: 96px; + margin-right: 4px; + margin-left: 4px; + } + + .pointsreve-value { + flex-grow: 0; + flex-basis: 64px; + margin-right: 4px; + margin-left: 4px; + } + + .input-sante-header, + .stress-style { + flex-grow: 0; + flex-basis: 64px; + margin-right: 4px; + margin-left: 4px; + } + + .small-label { + margin-top: 5px; + } + + .padd-right { + margin-right: 8px; + } + + .padd-left { + margin-left: 8px; + } + + .stack-left { + align-items: center; + flex-shrink: 1; + flex-grow: 0; + } + + .npc-stat-label { + flex-grow: 2; + } + + .packed-left { + white-space: nowrap; + flex-grow: 0; + } + + .numeric-input { + text-align: right; + direction: rtl; + padding: 5px; + } + + .input-numeric-short { + width: 40px; + max-width: 40px; + flex-grow: 0; + flex-shrink: 0; + flex-basis: 40px; + margin-right: 0.25rem; + margin-left: 0.25rem; + } + + .stats-table { + align-content: flex-start; + } + + /* ======================================== */ + .tokenhudext { + display: flex; + flex: 0 !important; + font-weight: 600; + } + + .tokenhudext.left { + justify-content: flex-start; + flex-direction: column; + position: absolute; + top: 2.75rem; + right: 4rem; + } + + .tokenhudext.right { + justify-content: flex-start; + flex-direction: column; + position: absolute; + top: 2.75rem; + left: 4rem; + } + + .control-icon.tokenhudicon { + width: fit-content; + height: fit-content; + min-width: 6rem; + min-height: 1.2rem; + flex-basis: auto; + padding: 0; + line-height: 1rem; + margin: 0.25rem; + } + + .control-icon.tokenhudicon.right { + margin-left: 8px; + } + + #token-hud .status-effects.active { + z-index: 2; + } + + /* ======================================== */ + .item-checkbox { + height: 25px; + border: 1px solid #736953a6; + border-left: none; + font-weight: 500; + font-size: 1rem; + color: black; + padding-top: 5px; + margin-right: 0px; + width: 45px; + position: relative; + left: 0px; + text-align: center; + } -.div-center { - align-self: center; -} + .flex-actions-bar { + flex-grow: 2; + } -.chat-message { - background: rgba(220,220,210,0.5); - font-size: 0.9rem; -} + /* ======================================== */ + /* Sidebar CSS */ + #sidebar { + font-size: 1rem; + background-position: 100%; + } -.chat-message.whisper { - background: rgba(220,220,210,0.75); - border: 2px solid #545469; -} -.chat-message .chat-icon { - border: 0; - padding: 2px 6px 2px 2px; - float: left; - width: 64px; - height: 64px; -} + /* background: rgb(105,85,65) url("../images/ui/texture_feuille_perso_onglets.webp") no-repeat right bottom;*/ -#sidebar-tabs { - flex: 0 0 32px; - box-sizing: border-box; - margin: 0 0 5px; - border-bottom: 1px solid rgba(0,0,0,0); - box-shadow: inset 0 0 2rem rgba(0,0,0,0.5); -} + #sidebar.collapsed { + height: 470px !important; + } -#sidebar-tabs > .item.active { - border: 1px solid rgba(114,98,72,1); - background: rgba(30, 25, 20, 0.75); - box-shadow: 0 0 6px inset rgba(114,98,72,1); -} + #sidebar-tabs>.collapsed, + #chat-controls .chat-control-icon { + color: rgba(220, 220, 220, 0.75); + text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75); + } -#sidebar #sidebar-tabs i{ - display: inline-block; - background-position:center; - background-size:cover; - text-shadow: 1px 1px 0 rgba(0,0,0,0.75); -} + .sidebar-tab .directory-list .entity { + border-top: 1px dashed rgba(0, 0, 0, 0.25); + border-bottom: 0 none; + padding: 0.25rem 0; + } -/*#sidebar #sidebar-tabs i.fa-comments:before, #sidebar #sidebar-tabs i.fa-fist-raised:before, #sidebar #sidebar-tabs i.fa-users:before, #sidebar #sidebar-tabs i.fa-map:before, #sidebar #sidebar-tabs i.fa-suitcase:before, #sidebar #sidebar-tabs i.fa-book-open:before, #sidebar #sidebar-tabs i.fa-th-list:before, #sidebar #sidebar-tabs i.fa-music:before, #sidebar #sidebar-tabs i.fa-atlas:before, #sidebar #sidebar-tabs i.fa-cogs:before {content: "";} + .sidebar-tab .directory-list .entity:hover { + background: rgba(0, 0, 0, 0.05); + cursor: pointer; + } + + .chat-message-header { + background: rgba(220, 220, 210, 0.5); + font-size: 1.1rem; + height: 48px; + text-align: center; + vertical-align: middle; + display: flex; + align-items: center; + } + + .chat-message .message-header .flavor-text, + .chat-message .message-header .whisper-to { + font-size: 0.9rem; + } + + .chat-actor-name { + padding: 4px; + } + + .chat-img { + width: 64px; + height: 64px; + } + + .roll-dialog-header { + height: 52px; + } + + .adversite-text { + font-weight: bold; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + } + + .icon-adversite-container { + position: relative; + text-align: center; + color: white; + width: 64px; + min-height: 48px; + } + + .icon-adversite { + width: 48px; + border: 0px; + } + + .hud-adversite-container { + position: relative; + text-align: center; + color: white; + width: 64px; + min-height: 64px; + } + + .hud-adversite-text { + font-weight: bold; + font-size: 0.9rem; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -85%); + } + + .actor-icon { + float: left; + width: 48px; + height: 48px; + padding: 2px 6px 2px 2px; + } + + .padding-dice { + padding-top: .2rem; + padding-bottom: .2rem; + } + + .dice-image { + box-sizing: border-box; + border: none; + border-radius: 0; + max-width: 100%; + } + + .dice-image-reroll { + background-color: rgba(115, 224, 115, 0.25); + border-color: #011d33; + box-sizing: border-box; + border: 1px; + border-radius: 0%; + max-width: 100%; + } + + .chat-dice { + width: 15%; + height: 15%; + font-size: 15px; + padding: 10px; + /*padding-bottom: 20px;*/ + padding-top: .2rem; + padding-bottom: .2rem; + } + + + .div-center { + align-self: center; + } + + .chat-message { + background: rgba(220, 220, 210, 0.5); + font-size: 0.9rem; + } + + .chat-message.whisper { + background: rgba(220, 220, 210, 0.75); + border: 2px solid #545469; + } + + .chat-message .chat-icon { + border: 0; + padding: 2px 6px 2px 2px; + float: left; + width: 64px; + height: 64px; + } + + #sidebar-tabs { + flex: 0 0 32px; + box-sizing: border-box; + margin: 0 0 5px; + border-bottom: 1px solid rgba(0, 0, 0, 0); + box-shadow: inset 0 0 2rem rgba(0, 0, 0, 0.5); + } + + #sidebar-tabs>.item.active { + border: 1px solid rgba(114, 98, 72, 1); + background: rgba(30, 25, 20, 0.75); + box-shadow: 0 0 6px inset rgba(114, 98, 72, 1); + } + + #sidebar #sidebar-tabs i { + display: inline-block; + background-position: center; + background-size: cover; + text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75); + } + + /*#sidebar #sidebar-tabs i.fa-comments:before, #sidebar #sidebar-tabs i.fa-fist-raised:before, #sidebar #sidebar-tabs i.fa-users:before, #sidebar #sidebar-tabs i.fa-map:before, #sidebar #sidebar-tabs i.fa-suitcase:before, #sidebar #sidebar-tabs i.fa-book-open:before, #sidebar #sidebar-tabs i.fa-th-list:before, #sidebar #sidebar-tabs i.fa-music:before, #sidebar #sidebar-tabs i.fa-atlas:before, #sidebar #sidebar-tabs i.fa-cogs:before {content: "";} #sidebar #sidebar-tabs i.fa-comments {background: url("img/ui/icon_sidebar_chat.svg") no-repeat;} #sidebar #sidebar-tabs i.fa-fist-raised {background: url("img/ui/icon_sidebar_fight.svg") no-repeat;} #sidebar #sidebar-tabs i.fa-users {background: url("img/ui/icon_sidebar_actor.svg") no-repeat;} @@ -1008,436 +1114,466 @@ ul, li { } */ -/*--------------------------------------------------------------------------*/ -/* Control, Tool, hotbar & navigation */ + /*--------------------------------------------------------------------------*/ + /* Control, Tool, hotbar & navigation */ -#controls .scene-control, #controls .control-tool { - box-shadow: 0 0 3px #000; - margin: 0 0 8px; - border-radius: 0; - background: rgba(30, 25, 20, 1); - background-origin: padding-box; - border-image: url(img/ui/footer-button.png) 10 repeat; - border-image-width: 4px; - border-image-outset: 0px; -} + #controls .scene-control, + #controls .control-tool { + box-shadow: 0 0 3px #000; + margin: 0 0 8px; + border-radius: 0; + background: rgba(30, 25, 20, 1); + background-origin: padding-box; + border-image: url(img/ui/footer-button.png) 10 repeat; + border-image-width: 4px; + border-image-outset: 0px; + } -#controls .scene-control.active, #controls .control-tool.active, #controls .scene-control:hover, #controls .control-tool:hover { - background: rgba(72, 46, 28, 1); - background-origin: padding-box; - border-image: url(img/ui/footer-button.png) 10 repeat; - border-image-width: 4px; - border-image-outset: 0px; - box-shadow: 0 0 3px #ff6400; -} + #controls .scene-control.active, + #controls .control-tool.active, + #controls .scene-control:hover, + #controls .control-tool:hover { + background: rgba(72, 46, 28, 1); + background-origin: padding-box; + border-image: url(img/ui/footer-button.png) 10 repeat; + border-image-width: 4px; + border-image-outset: 0px; + box-shadow: 0 0 3px #ff6400; + } -#hotbar #action-bar #macro-list { - border: 1px solid rgba(72, 46, 28, 1); - box-shadow: 2px 2px 5px #000000; -} + #hotbar #action-bar #macro-list { + border: 1px solid rgba(72, 46, 28, 1); + box-shadow: 2px 2px 5px #000000; + } -#hotbar #action-bar .macro { - border-image: url(img/ui/bg_control.jpg) 21 repeat; - border-image-slice: 6 6 6 6 fill; - border-image-width: 6px 6px 6px 6px; - border-image-outset: 0px 0px 0px 0px; - border-radius: 0px; -} + #hotbar #action-bar .macro { + border-image: url(img/ui/bg_control.jpg) 21 repeat; + border-image-slice: 6 6 6 6 fill; + border-image-width: 6px 6px 6px 6px; + border-image-outset: 0px 0px 0px 0px; + border-radius: 0px; + } -#hotbar .bar-controls { - background: rgba(30, 25, 20, 1); - border: 1px solid rgba(72, 46, 28, 1); -} + #hotbar .bar-controls { + background: rgba(30, 25, 20, 1); + border: 1px solid rgba(72, 46, 28, 1); + } -#players { - border-image: url(img/ui/footer-button.png) 10 repeat; - border-image-width: 4px; - border-image-outset: 0px; - background: rgba(30, 25, 20, 1); -} + #players { + border-image: url(img/ui/footer-button.png) 10 repeat; + border-image-width: 4px; + border-image-outset: 0px; + background: rgba(30, 25, 20, 1); + } -#navigation #scene-list .scene.nav-item.active { - background: rgba(72, 46, 28, 1); -} + #navigation #scene-list .scene.nav-item.active { + background: rgba(72, 46, 28, 1); + } -#navigation #scene-list .scene.nav-item { - background: rgba(30, 25, 20, 1); - background-origin: padding-box; - border-image: url(img/ui/footer-button.png) 10 repeat; - border-image-width: 4px; - border-image-outset: 0px; -} + #navigation #scene-list .scene.nav-item { + background: rgba(30, 25, 20, 1); + background-origin: padding-box; + border-image: url(img/ui/footer-button.png) 10 repeat; + border-image-width: 4px; + border-image-outset: 0px; + } -#navigation #scene-list .scene.view, #navigation #scene-list .scene.context { - background: rgba(72, 46, 28, 1); - background-origin: padding-box; - border-image: url(img/ui/footer-button.png) 10 repeat; - border-image-width: 4px; - border-image-outset: 0px; - box-shadow: 0 0 3px #ff6400; -} + #navigation #scene-list .scene.view, + #navigation #scene-list .scene.context { + background: rgba(72, 46, 28, 1); + background-origin: padding-box; + border-image: url(img/ui/footer-button.png) 10 repeat; + border-image-width: 4px; + border-image-outset: 0px; + box-shadow: 0 0 3px #ff6400; + } -#navigation #nav-toggle { - background: rgba(30, 25, 20, 1); - background-origin: padding-box; - border-image: url(img/ui/footer-button.png) 10 repeat; - border-image-width: 4px; - border-image-outset: 0px; -} + #navigation #nav-toggle { + background: rgba(30, 25, 20, 1); + background-origin: padding-box; + border-image: url(img/ui/footer-button.png) 10 repeat; + border-image-width: 4px; + border-image-outset: 0px; + } -/* Tooltip container */ -.tooltip { - position: relative; - display: inline-block; - /*border-bottom: 1px dotted black; /* If you want dots under the hoverable text */ -} + /* Tooltip container */ + .tooltip { + position: relative; + display: inline-block; + /*border-bottom: 1px dotted black; /* If you want dots under the hoverable text */ + } -/* Tooltip text */ -.tooltip .tooltiptext { - text-align: left; - background: rgba(231, 229, 226, 0.9); - width: 150px; - padding: 3px 0; - font-size: 0.9rem; + /* Tooltip text */ + .tooltip .tooltiptext { + text-align: left; + background: rgba(231, 229, 226, 0.9); + width: 150px; + padding: 3px 0; + font-size: 0.9rem; - /* Position the tooltip text */ - top: 1px; - position: absolute; - z-index: 1; - - /* Fade in tooltip */ - visibility: hidden; - opacity: 0; - transition: opacity 0.3s; -} + /* Position the tooltip text */ + top: 1px; + position: absolute; + z-index: 1; -.tooltip .ttt-fatigue{ - width: 360px; - - background: rgba(30, 25, 20, 0.9); - border-image: url(img/ui/bg_control.jpg) 21 repeat; - border-image-slice: 6 6 6 6 fill; - border-image-width: 6px 6px 6px 6px; - border-image-outset: 0px 0px 0px 0px; - border-radius: 0px; + /* Fade in tooltip */ + visibility: hidden; + opacity: 0; + transition: opacity 0.3s; + } - font-size: 0.8rem; - padding: 3px 0; -} + .tooltip .ttt-fatigue { + width: 360px; -.tooltip .ttt-ajustements { - width: 150px; - background: rgba(220,220,210,0.95); - border-radius: 6px; - font-size: 0.9rem; - padding: 3px 0; -} + background: rgba(30, 25, 20, 0.9); + border-image: url(img/ui/bg_control.jpg) 21 repeat; + border-image-slice: 6 6 6 6 fill; + border-image-width: 6px 6px 6px 6px; + border-image-outset: 0px 0px 0px 0px; + border-radius: 0px; -.tooltip-nobottom { - border-bottom: unset; /* If you want dots under the hoverable text */ -} -.tooltip .ttt-xp { - width: 250px; - background: rgba(220,220,210,0.95); - border-radius: 6px; - font-size: 0.9rem; - padding: 3px 0; -} + font-size: 0.8rem; + padding: 3px 0; + } -/* Show the tooltip text when you mouse over the tooltip container */ -.tooltip:hover .tooltiptext { - visibility: visible; - opacity: 1; -} + .tooltip .ttt-ajustements { + width: 150px; + background: rgba(220, 220, 210, 0.95); + border-radius: 6px; + font-size: 0.9rem; + padding: 3px 0; + } -.chat-card-button { - box-shadow: inset 0px 1px 0px 0px #a6827e; - background: linear-gradient(to bottom, #41545a 5%, #2e5561 100%); - background-color: #7d5d3b00; - border-radius: 3px; - border: 2px ridge #846109; - display: inline-block; - cursor: pointer; - color: #ffffff; - font-size: 0.8rem; - padding: 4px 4px 0px 4px; - text-decoration: none; - text-shadow: 0px 1px 0px #4d3534; - position: relative; - /*margin:2px;*/ -} + .tooltip-nobottom { + border-bottom: unset; + /* If you want dots under the hoverable text */ + } -.chat-card-button:hover { - background: linear-gradient(to bottom, #800000 5%, #3e0101 100%); - background-color: rgb(56, 33, 33); -} -.chat-card-button:active { - position:relative; - top:1px; -} + .tooltip .ttt-xp { + width: 250px; + background: rgba(220, 220, 210, 0.95); + border-radius: 6px; + font-size: 0.9rem; + padding: 3px 0; + } + + /* Show the tooltip text when you mouse over the tooltip container */ + .tooltip:hover .tooltiptext { + visibility: visible; + opacity: 1; + } + + .chat-card-button { + box-shadow: inset 0px 1px 0px 0px #a6827e; + background: linear-gradient(to bottom, #41545a 5%, #2e5561 100%); + background-color: #7d5d3b00; + border-radius: 3px; + border: 2px ridge #846109; + display: inline-block; + cursor: pointer; + color: #ffffff; + font-size: 0.8rem; + padding: 4px 4px 0px 4px; + text-decoration: none; + text-shadow: 0px 1px 0px #4d3534; + position: relative; + /*margin:2px;*/ + } + + .chat-card-button:hover { + background: linear-gradient(to bottom, #800000 5%, #3e0101 100%); + background-color: rgb(56, 33, 33); + } + + .chat-card-button:active { + position: relative; + top: 1px; + } -.button-sheet-roll { - box-shadow: inset 0px 1px 0px 0px #a6827e; - background: linear-gradient(to bottom, #41545a 5%, #2e5561 100%); - background-color: #7d5d3b00; - border-radius: 4px; - border: 1px ridge #846109; - display: inline-block; - cursor: pointer; - color: #ffffff; - font-size: 0.8rem; - padding: 1px 1px 0px 1px; - text-decoration: none; - text-shadow: 0px 1px 0px #4d3534; - position: relative; - max-height:1.7rem; - flex-grow:1; - max-width: 3.5rem; - min-width: 3.5rem; -} -.button-sheet-roll:hover { - background: linear-gradient(to bottom, #800000 5%, #3e0101 100%); - background-color: rgb(56, 33, 33); -} -.button-sheet-roll:active { - position:relative; - top:1px; -} + .button-sheet-roll { + box-shadow: inset 0px 1px 0px 0px #a6827e; + background: linear-gradient(to bottom, #41545a 5%, #2e5561 100%); + background-color: #7d5d3b00; + border-radius: 4px; + border: 1px ridge #846109; + display: inline-block; + cursor: pointer; + color: #ffffff; + font-size: 0.8rem; + padding: 1px 1px 0px 1px; + text-decoration: none; + text-shadow: 0px 1px 0px #4d3534; + position: relative; + max-height: 1.7rem; + flex-grow: 1; + max-width: 3.5rem; + min-width: 3.5rem; + } -.defense-sheet { - border-radius: 4px; - text-align: center; - display: inline-block; - font-size: 0.8rem; - padding: 1px 1px 0px 1px; - text-decoration: none; - position: relative; - max-height:1.7rem; - margin-left:4px; - flex-grow:1; - max-width: 3.5rem; - min-width: 3.5rem; -} + .button-sheet-roll:hover { + background: linear-gradient(to bottom, #800000 5%, #3e0101 100%); + background-color: rgb(56, 33, 33); + } -.plus-minus-button { - box-shadow: inset 0px 1px 0px 0px #a6827e; - background: linear-gradient(to bottom, #21374afc 5%, #152833ab 100%); - background-color: #7d5d3b00; - border-radius: 4px; - border: 2px ridge #846109; - display: inline-block; - cursor: pointer; - color: #ffffff; - padding: 3px 6px 2px 6px; - text-decoration: none; - text-shadow: 0px 1px 0px #4d3534; - position: relative; - margin:3px; - max-width: 24px; - max-height: 24px; -} + .button-sheet-roll:active { + position: relative; + top: 1px; + } -.river-button:hover, -.plus-minus-button:hover, -.chat-card-button:hover { - background: linear-gradient(to bottom, #800000 5%, #3e0101 100%); - background-color: red; -} + .defense-sheet { + border-radius: 4px; + text-align: center; + display: inline-block; + font-size: 0.8rem; + padding: 1px 1px 0px 1px; + text-decoration: none; + position: relative; + max-height: 1.7rem; + margin-left: 4px; + flex-grow: 1; + max-width: 3.5rem; + min-width: 3.5rem; + } -.plus-minus-button:active, -.chat-card-button:active { - position:relative; - top:1px; -} + .plus-minus-button { + box-shadow: inset 0px 1px 0px 0px #a6827e; + background: linear-gradient(to bottom, #21374afc 5%, #152833ab 100%); + background-color: #7d5d3b00; + border-radius: 4px; + border: 2px ridge #846109; + display: inline-block; + cursor: pointer; + color: #ffffff; + padding: 3px 6px 2px 6px; + text-decoration: none; + text-shadow: 0px 1px 0px #4d3534; + position: relative; + margin: 3px; + max-width: 24px; + max-height: 24px; + } -.plus-minus { - font-size: 0.9rem; - font-weight: bold; -} + .river-button:hover, + .plus-minus-button:hover, + .chat-card-button:hover { + background: linear-gradient(to bottom, #800000 5%, #3e0101 100%); + background-color: red; + } -.ul-level1 { - padding-left: 2rem; -} + .plus-minus-button:active, + .chat-card-button:active { + position: relative; + top: 1px; + } -.drop-spec2 { - background: linear-gradient(to bottom, #6c95b9fc 5%, #105177ab 100%); - background-color: #7d5d3b00; - border-radius: 3px; - border: 2px ridge #846109; -} + .plus-minus { + font-size: 0.9rem; + font-weight: bold; + } -.label-name { - padding-top: 7px; - padding-left: 4px; - margin-left: 4px; - min-width: 5rem; - max-width: 5rem; -} + .ul-level1 { + padding-left: 2rem; + } -/*************************************************************/ -.competence-name { - padding-top: 7px; - padding-left: 4px; - margin-left: 4px; - flex-grow: 2; -} + .drop-spec2 { + background: linear-gradient(to bottom, #6c95b9fc 5%, #105177ab 100%); + background-color: #7d5d3b00; + border-radius: 3px; + border: 2px ridge #846109; + } -/*************************************************************/ -.competence-niveau { - flex-grow: 1; - min-width: 64px; - max-width: 64px; -} + .label-name { + padding-top: 7px; + padding-left: 4px; + margin-left: 4px; + min-width: 5rem; + max-width: 5rem; + } -/*************************************************************/ -.arme-defensif { - padding-top: 7px; - text-align: center; - flex-grow: 2; -} + /*************************************************************/ + .competence-name { + padding-top: 7px; + padding-left: 4px; + margin-left: 4px; + flex-grow: 2; + } -/*************************************************************/ -.item-name-img { - flex-grow:1; - max-width: 2rem; - min-width: 2rem; - max-height: 2rem; -} + /*************************************************************/ + .competence-niveau { + flex-grow: 1; + min-width: 64px; + max-width: 64px; + } -/*************************************************************/ -#pause -{ - font-size: 2rem; -} -#pause > h3 -{ - color: #CCC -} -#pause > img { - content: url(../assets/logos/hawkmoon_logo.webp); - height: 256px; - width: 256px; - top: -80px; - left: calc(50% - 132px); -} + /*************************************************************/ + .arme-defensif { + padding-top: 7px; + text-align: center; + flex-grow: 2; + } -#logo { - content : url(../assets/logos/hawkmoon_logo.webp); - width: 120px; - height: 40px; -} + /*************************************************************/ + .item-name-img { + flex-grow: 1; + max-width: 2rem; + min-width: 2rem; + max-height: 2rem; + } -.dice-cell { - padding-left: 12px; - padding-right: 12px; - width: 60px; - text-align: center; -} + /*************************************************************/ + #pause { + font-size: 2rem; + } -.dice-formula, -.dice-total { - height: 54px; - position:relative; -} + #pause>h3 { + color: #CCC + } -.item-name-label-header { - flex-grow:2; - max-width: 12rem; - min-width: 12rem; -} -.item-name-label { - flex-grow:2; - max-width: 10rem; - min-width: 10rem; -} -.item-name-label-level2 { - flex-grow:2; - max-width: 9rem; - min-width: 9rem; -} -.item-field-label-short { - padding-top: 6px; - flex-grow:1; - max-width: 4rem; - min-width: 4rem; -} -.item-field-label-medium { - padding-top: 6px; - flex-grow:1; - max-width: 6rem; - min-width: 6rem; -} -.item-field-label-long { - padding-top: 6px; - flex-grow:1; - max-width: 8rem; - min-width: 8rem; -} -.item-field-label-long1 { - padding-top: 6px; - flex-grow:1; - max-width: 12rem; - min-width: 12rem; -} -.item-field-label-long2 { - padding-top: 6px; - flex-grow:1; - max-width: 20rem; - min-width: 20rem; -} -.item-control-end { - align-self: flex-end; -} -.alternate-list { - margin-top: 2px; - flex-wrap: nowrap; -} -.item-filler { - flex-grow: 6; - flex-shrink: 7; -} -.item-controls-fixed { - min-width:3.2rem; - max-width: 3.2rem; -} -.item-field { - justify-content: flex-start; - flex-grow: 1; -} -.chat-success { - font-size: 1.2rem; - font-weight: bold; - color: darkgreen; -} -.chat-failure { - font-size: 1.2rem; - font-weight: bold; - color: darkred; -} -.adversite-modify { - margin-top: 12px; -} -.argent-total-text { - margin-left: 4px; -} + #pause>img { + content: url(../assets/logos/hawkmoon_logo.webp); + height: 256px; + width: 256px; + top: -80px; + left: calc(50% - 132px); + } -.compendium h4.entry-name.document-name { - color: black; -} -.page-title { - color: black; -} -textarea { - font-family: "Charlemagne"; - font-size: 0.8rem; -} -.fxmaster { - background: #443e37E0; - background-color: #443e37E0; -} -.predilection-text { - padding-left: 8px; - font-style: italic; - font-size: 0.6rem; -} + #logo { + content: url(../assets/logos/hawkmoon_logo.webp); + width: 120px; + height: 40px; + } + + .dice-cell { + padding-left: 12px; + padding-right: 12px; + width: 60px; + text-align: center; + } + + .dice-formula, + .dice-total { + height: 54px; + position: relative; + } + + .item-name-label-header { + flex-grow: 2; + max-width: 12rem; + min-width: 12rem; + } + + .item-name-label { + flex-grow: 2; + max-width: 10rem; + min-width: 10rem; + } + + .item-name-label-level2 { + flex-grow: 2; + max-width: 9rem; + min-width: 9rem; + } + + .item-field-label-short { + padding-top: 6px; + flex-grow: 1; + max-width: 4rem; + min-width: 4rem; + } + + .item-field-label-medium { + padding-top: 6px; + flex-grow: 1; + max-width: 6rem; + min-width: 6rem; + } + + .item-field-label-long { + padding-top: 6px; + flex-grow: 1; + max-width: 8rem; + min-width: 8rem; + } + + .item-field-label-long1 { + padding-top: 6px; + flex-grow: 1; + max-width: 12rem; + min-width: 12rem; + } + + .item-field-label-long2 { + padding-top: 6px; + flex-grow: 1; + max-width: 20rem; + min-width: 20rem; + } + + .item-control-end { + align-self: flex-end; + } + + .alternate-list { + margin-top: 2px; + flex-wrap: nowrap; + } + + .item-filler { + flex-grow: 6; + flex-shrink: 7; + } + + .item-controls-fixed { + min-width: 3.2rem; + max-width: 3.2rem; + } + + .item-field { + justify-content: flex-start; + flex-grow: 1; + } + + .chat-success { + font-size: 1.2rem; + font-weight: bold; + color: darkgreen; + } + + .chat-failure { + font-size: 1.2rem; + font-weight: bold; + color: darkred; + } + + .adversite-modify { + margin-top: 12px; + } + + .argent-total-text { + margin-left: 4px; + } + + .compendium h4.entry-name.document-name { + color: black; + } + + .page-title { + color: black; + } + + textarea { + font-family: "Charlemagne"; + font-size: 0.8rem; + } + + .fxmaster { + background: #443e37E0; + background-color: #443e37E0; + } + + .predilection-text { + padding-left: 8px; + font-style: italic; + font-size: 0.6rem; + } \ No newline at end of file diff --git a/system.json b/system.json index 01c1069..935acd3 100644 --- a/system.json +++ b/system.json @@ -44,6 +44,51 @@ "flags": {} } ], + "packFolders": [ + { + "name": "Hawkmoon", + "sorting": "m", + "color": "#00435c", + "folders": [ + { + "name": "Création de Personnage", + "sorting": "a", + "color": "#00435c", + "packs": [ + "skills", + "historiques", + "profils", + "talents", + "talents-cellule", + "mutations" + ], + "folders": [] + }, + { + "name": "Equipement", + "sorting": "a", + "color": "#00435c", + "packs": [ + "armes", + "protections", + "equipement" + ], + "folders": [] + }, + { + "name": "Autre", + "sorting": "a", + "color": "#00435c", + "packs": [ + "skills-creatures", + "tables", + "aides-de-jeu" + ], + "folders": [] + } + ] + } + ], "packs": [ { "type": "Item", @@ -57,6 +102,18 @@ "ASSISTANT": "OWNER" } }, + { + "type": "Item", + "label": "Mutations", + "name": "mutations", + "path": "packs/mutations", + "system": "fvtt-hawkmoon-cyd", + "flags": {}, + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } + }, { "type": "Item", "label": "Compétences de Créatures", diff --git a/template.json b/template.json index 55fbf44..be54cef 100644 --- a/template.json +++ b/template.json @@ -146,7 +146,8 @@ "equipement", "artefact", "ressource", - "contact" + "contact", + "mutation" ], "ressource": { "pointdev": 0, @@ -259,7 +260,14 @@ "base", "basequip" ] - + }, + "mutation": { + "templates": [ + "base" + ], + "mutationcategorie": "tares_communes", + "hascomplexite": false, + "complexite": 0 } } } \ No newline at end of file diff --git a/templates/actor-sheet.html b/templates/actor-sheet.html index fffa456..57ad5d8 100644 --- a/templates/actor-sheet.html +++ b/templates/actor-sheet.html @@ -75,7 +75,7 @@ {{#each system.attributs as |attr key|}}
  • - {{attr.label}} + {{#select system.mutationcategorie}} + + + + + + + + + {{/select}} + +
  • + + +
  • + + +
  • + {{#if system.hascomplexite}} +
  • + + +
  • + {{/if}} + + + + + + \ No newline at end of file