From 91f5bf26745f3239c79e879baab346451c54b8f5 Mon Sep 17 00:00:00 2001 From: Serghei Mihai Date: Wed, 6 Apr 2016 16:49:37 +0200 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(+) diff --git a/help/fr/misc-scss.page b/help/fr/misc-scss.page index db2ca59..3f4b97d 100644 --- a/help/fr/misc-scss.page +++ b/help/fr/misc-scss.page @@ -203,6 +203,18 @@ paramètre, la deuxième sa description et la troisième la valeur par défaut.
+ Factures +

Ces paramètres contrôlent l'apparence des lignes du listing des factures.

+ + + + + + +

$no-online-payable-invoice-color

Couleur du texte des lignes des factures non payables en ligne

#999

+
+ +
Formulaires diff --git a/static/includes/_misc.scss b/static/includes/_misc.scss index fc41702..8fdd413 100644 --- a/static/includes/_misc.scss +++ b/static/includes/_misc.scss @@ -1,3 +1,5 @@ +$no-online-payable-invoice-color: #999; + div.textcell h3, div.textcell p { margin: 1ex; @@ -214,6 +216,9 @@ table.invoices { tr:nth-child(even) { background: #eee; } + tr.litigation-invoice, tr.autobilling-invoice { + color: $no-online-payable-invoice-color; + } td:last-child { width: 16ex; -- 2.8.0.rc3