Affichage acteur sur une ligne dans l'astrologie
This commit is contained in:
parent
2a6f5bc7d7
commit
6fb40ae666
@ -7,6 +7,8 @@
|
||||
- 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
|
||||
|
||||
|
@ -1593,9 +1593,13 @@ select,
|
||||
.system-foundryvtt-reve-de-dragon table.table-nombres-astraux th > td {
|
||||
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;
|
||||
}
|
||||
.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) {
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
|
@ -1280,9 +1280,13 @@
|
||||
table.table-nombres-astraux th >td {
|
||||
font-size: 1rem;
|
||||
}
|
||||
table.table-nombres-astraux tr >td {
|
||||
table.table-nombres-astraux tr td {
|
||||
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) {
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
|
@ -36,9 +36,10 @@
|
||||
</tr>
|
||||
{{#each gmAstrologie.ajustementsActors as |ajustementActeur|}}
|
||||
<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}}" />
|
||||
{{actor.name}} {{timestamp-imgSigneHeure actor.system.heure}}
|
||||
<span>{{actor.name}}</span>
|
||||
{{timestamp-imgSigneHeure actor.system.heure}}
|
||||
</td>
|
||||
{{#each ajustementActeur.ajustements as |ajustement|}}
|
||||
<td>{{#if (ne ajustement.ajustement 0)}}
|
||||
|
Loading…
x
Reference in New Issue
Block a user