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:
2025-06-09 20:20:06 +02:00
parent abae85157b
commit 5b48fda3d0
6 changed files with 34 additions and 10 deletions

View File

@ -356,6 +356,7 @@
margin: 0;
justify-content: center;
text-align: left;
display: ruby;
}
.equipement-valeur {
margin: 0;
@ -375,6 +376,8 @@
align-items: center;
justify-content: center;
text-align: center;
display: flex;
flex-direction: row;
}
.equipement-button {
margin: 0;
@ -962,8 +965,7 @@
word-break: break-all;
}
span.content-link,
a.content-link {
.content-link {
background: hsla(45, 100%, 80%, 0.2);
color: hsla(300, 70%, 20%, 0.8);
font-weight: 560;
@ -972,6 +974,7 @@
border-radius: 0.25rem;
white-space: nowrap;
word-break: break-all;
display: ruby;
}
a.roll-text i.fas{
color: var(--color-text-dark-inactive);
@ -1222,6 +1225,8 @@
.list-item-label,
.list-title-label {
flex-grow: 2;
display: flex;
flex-direction: row;
}
.attribut-value,
.carac-value {
@ -1275,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;