forked from public/foundryvtt-reve-de-dragon
Correction d'affichages lignes
Correction de plusieurs cas d'affichage en lignes qui étaient formatés sur plusieurs lignes - noms dans liste d'objets (et bouton des conteneurs) - compétences de créatures sur une ligne - acteur sur une ligne dans l'astrologie - résultat de recherche
This commit is contained in:
@ -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
|
||||||
|
- Affichage des résultat de recherche
|
||||||
|
|
||||||
## 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;
|
||||||
@ -1291,8 +1294,7 @@ select,
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
.system-foundryvtt-reve-de-dragon span.content-link,
|
.system-foundryvtt-reve-de-dragon .content-link {
|
||||||
.system-foundryvtt-reve-de-dragon a.content-link {
|
|
||||||
background: hsla(45, 100%, 80%, 0.2);
|
background: hsla(45, 100%, 80%, 0.2);
|
||||||
color: hsla(300, 70%, 20%, 0.8);
|
color: hsla(300, 70%, 20%, 0.8);
|
||||||
font-weight: 560;
|
font-weight: 560;
|
||||||
@ -1301,6 +1303,7 @@ select,
|
|||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
|
display: ruby;
|
||||||
}
|
}
|
||||||
.system-foundryvtt-reve-de-dragon a.roll-text i.fas {
|
.system-foundryvtt-reve-de-dragon a.roll-text i.fas {
|
||||||
color: var(--color-text-dark-inactive);
|
color: var(--color-text-dark-inactive);
|
||||||
@ -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;
|
||||||
@ -962,8 +965,7 @@
|
|||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
|
|
||||||
span.content-link,
|
.content-link {
|
||||||
a.content-link {
|
|
||||||
background: hsla(45, 100%, 80%, 0.2);
|
background: hsla(45, 100%, 80%, 0.2);
|
||||||
color: hsla(300, 70%, 20%, 0.8);
|
color: hsla(300, 70%, 20%, 0.8);
|
||||||
font-weight: 560;
|
font-weight: 560;
|
||||||
@ -972,6 +974,7 @@
|
|||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
|
display: ruby;
|
||||||
}
|
}
|
||||||
a.roll-text i.fas{
|
a.roll-text i.fas{
|
||||||
color: var(--color-text-dark-inactive);
|
color: var(--color-text-dark-inactive);
|
||||||
@ -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