Projet

Général

Profil

0001-misc-define-text-color-for-no-online-payable-invoice.patch

Serghei Mihai (congés, retour 15/05), 06 avril 2016 17:29

Télécharger (1,57 ko)

Voir les différences:

Subject: [PATCH] misc: define text color for no online payable invoices

 help/fr/misc-scss.page     | 12 ++++++++++++
 static/includes/_misc.scss |  5 +++++
 2 files changed, 17 insertions(+)
help/fr/misc-scss.page
203 203
</section>
204 204

  
205 205
<section>
206
  <title>Factures</title>
207
  <p>Ces paramètres contrôlent l'apparence des lignes du listing des factures.</p>
208
  <table shade="rows">
209
    <tr>
210
      <td><p><code>$no-online-payable-invoice-color</code></p></td>
211
      <td><p>Couleur du texte des lignes des factures non payables en ligne</p></td>
212
      <td><p><var>#999</var></p></td>
213
    </tr>
214
  </table>
215
</section>
216

  
217
<section>
206 218
 <title>Formulaires</title>
207 219

  
208 220
<table shade="rows">
static/includes/_misc.scss
1
$no-online-payable-invoice-color: #999;
2

  
1 3
div.textcell h3,
2 4
div.textcell p {
3 5
	margin: 1ex;
......
214 216
	tr:nth-child(even) {
215 217
		background: #eee;
216 218
	}
219
        tr.litigation-invoice, tr.autobilling-invoice {
220
                color: $no-online-payable-invoice-color;
221
        }
217 222

  
218 223
	td:last-child {
219 224
		width: 16ex;
220
-