forked from public/foundryvtt-reve-de-dragon
Compare commits
3 Commits
0c4d9cda82
...
6fb40ae666
Author | SHA1 | Date | |
---|---|---|---|
6fb40ae666 | |||
2a6f5bc7d7 | |||
21d2aa613a |
@ -4,6 +4,11 @@
|
|||||||
|
|
||||||
- On peut de nouveau acheter aux commerces
|
- On peut de nouveau acheter aux commerces
|
||||||
- La description des Grizzal a des espaces
|
- La description des Grizzal a des espaces
|
||||||
|
- Corrections v13
|
||||||
|
- Affichage des images et noms d'objets en ligne
|
||||||
|
- affichage des compétences de créature sur une ligne
|
||||||
|
- Affichage des informations d'acteur sur une ligne dans l'astrologie
|
||||||
|
|
||||||
|
|
||||||
## 13.0.0 - Le début de l'errance d'Illysis
|
## 13.0.0 - Le début de l'errance d'Illysis
|
||||||
|
|
||||||
|
@ -721,6 +721,7 @@ select,
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
display: ruby;
|
||||||
}
|
}
|
||||||
.system-foundryvtt-reve-de-dragon .equipement-valeur {
|
.system-foundryvtt-reve-de-dragon .equipement-valeur {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -740,6 +741,8 @@ select,
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
.system-foundryvtt-reve-de-dragon .equipement-button {
|
.system-foundryvtt-reve-de-dragon .equipement-button {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -1537,6 +1540,8 @@ select,
|
|||||||
.system-foundryvtt-reve-de-dragon .list-item-label,
|
.system-foundryvtt-reve-de-dragon .list-item-label,
|
||||||
.system-foundryvtt-reve-de-dragon .list-title-label {
|
.system-foundryvtt-reve-de-dragon .list-title-label {
|
||||||
flex-grow: 2;
|
flex-grow: 2;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
.system-foundryvtt-reve-de-dragon .attribut-value,
|
.system-foundryvtt-reve-de-dragon .attribut-value,
|
||||||
.system-foundryvtt-reve-de-dragon .carac-value {
|
.system-foundryvtt-reve-de-dragon .carac-value {
|
||||||
@ -1588,9 +1593,13 @@ select,
|
|||||||
.system-foundryvtt-reve-de-dragon table.table-nombres-astraux th > td {
|
.system-foundryvtt-reve-de-dragon table.table-nombres-astraux th > td {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
.system-foundryvtt-reve-de-dragon table.table-nombres-astraux tr > td {
|
.system-foundryvtt-reve-de-dragon table.table-nombres-astraux tr td {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
}
|
}
|
||||||
|
.system-foundryvtt-reve-de-dragon table.table-nombres-astraux tr td.info-acteur {
|
||||||
|
flex-direction: row;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
.system-foundryvtt-reve-de-dragon table.table-nombres-astraux :is(tr, th, td) {
|
.system-foundryvtt-reve-de-dragon table.table-nombres-astraux :is(tr, th, td) {
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
|
@ -356,6 +356,7 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
display: ruby;
|
||||||
}
|
}
|
||||||
.equipement-valeur {
|
.equipement-valeur {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -375,6 +376,8 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
.equipement-button {
|
.equipement-button {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -1222,6 +1225,8 @@
|
|||||||
.list-item-label,
|
.list-item-label,
|
||||||
.list-title-label {
|
.list-title-label {
|
||||||
flex-grow: 2;
|
flex-grow: 2;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
.attribut-value,
|
.attribut-value,
|
||||||
.carac-value {
|
.carac-value {
|
||||||
@ -1275,9 +1280,13 @@
|
|||||||
table.table-nombres-astraux th >td {
|
table.table-nombres-astraux th >td {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
table.table-nombres-astraux tr >td {
|
table.table-nombres-astraux tr td {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
}
|
}
|
||||||
|
table.table-nombres-astraux tr td.info-acteur {
|
||||||
|
flex-direction: row;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
table.table-nombres-astraux :is(tr, th, td) {
|
table.table-nombres-astraux :is(tr, th, td) {
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{{#unless item.system.isHidden}}
|
{{#unless item.system.isHidden}}
|
||||||
{{#if (ne item.type 'monnaie')}}
|
{{#if (ne item.type 'monnaie')}}
|
||||||
<li class="item flexrow list-item" data-item-id="{{item._id}}" draggable="true">
|
<li class="item flexrow list-item" data-item-id="{{item._id}}" draggable="true">
|
||||||
<span class="equipement-nom {{#if (eq item.type 'conteneur')}}conteneur-name{{/if}} ">
|
<span class="equipement-nom{{#if (eq item.type 'conteneur')}} conteneur-name{{/if}} ">
|
||||||
<a{{#if (and (ne item.type 'conteneur') options.isObserver)}} class="item-edit"{{/if}} >
|
<a{{#if (and (ne item.type 'conteneur') options.isObserver)}} class="item-edit"{{/if}} >
|
||||||
{{#if (eq item.type 'conteneur')}}
|
{{#if (eq item.type 'conteneur')}}
|
||||||
<i class="{{~#if vide}}far fa-square
|
<i class="{{~#if vide}}far fa-square
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{{#unless item.system.isHidden}}
|
{{#unless item.system.isHidden}}
|
||||||
{{#if (or options.isObserver (ne item.type 'monnaie'))}}
|
{{#if (or options.isObserver (ne item.type 'monnaie'))}}
|
||||||
<li class="item flexrow list-item" data-item-id="{{item._id}}" draggable="true" data-tooltip="{{#if (gt item.system.quantite 1)}}{{item.system.quantite}} {{/if}}{{item.name}}">
|
<li class="item flexrow list-item" data-item-id="{{item._id}}" draggable="true" data-tooltip="{{#if (gt item.system.quantite 1)}}{{item.system.quantite}} {{/if}}{{item.name}}">
|
||||||
<span class="equipement-nom flexrow {{#if (eq item.type 'conteneur')}}conteneur-name{{/if}} ">
|
<span class="equipement-nom {{#if (eq item.type 'conteneur')}}conteneur-name{{/if}} ">
|
||||||
{{#if (eq item.type 'conteneur')}}
|
{{#if (eq item.type 'conteneur')}}
|
||||||
<a>
|
<a>
|
||||||
<i class="{{~#if vide}}far fa-square
|
<i class="{{~#if vide}}far fa-square
|
||||||
|
@ -36,9 +36,10 @@
|
|||||||
</tr>
|
</tr>
|
||||||
{{#each gmAstrologie.ajustementsActors as |ajustementActeur|}}
|
{{#each gmAstrologie.ajustementsActors as |ajustementActeur|}}
|
||||||
<tr class="heure-naissance" data-heure-naissance="{{actor.system.heure}}">
|
<tr class="heure-naissance" data-heure-naissance="{{actor.system.heure}}">
|
||||||
<td>
|
<td class="info-acteur">
|
||||||
<img class="img-signe-heure" src="{{actor.img}}" data-tooltip="{{actor.name}}" />
|
<img class="img-signe-heure" src="{{actor.img}}" data-tooltip="{{actor.name}}" />
|
||||||
{{actor.name}} {{timestamp-imgSigneHeure actor.system.heure}}
|
<span>{{actor.name}}</span>
|
||||||
|
{{timestamp-imgSigneHeure actor.system.heure}}
|
||||||
</td>
|
</td>
|
||||||
{{#each ajustementActeur.ajustements as |ajustement|}}
|
{{#each ajustementActeur.ajustements as |ajustement|}}
|
||||||
<td>{{#if (ne ajustement.ajustement 0)}}
|
<td>{{#if (ne ajustement.ajustement 0)}}
|
||||||
|
Reference in New Issue
Block a user