Style bootstrap tooltip; show FC share in article price info
This commit is contained in:
parent
bba70dc875
commit
a6228bdcf2
4 changed files with 16 additions and 0 deletions
|
@ -50,6 +50,16 @@ body {
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
// Light tooltips without empty space below tables
|
||||
.tooltip-inner {
|
||||
color: #000;
|
||||
background-color: rgb(245,245,245);
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
.tooltip-inner .table {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
@mainRedColor: #ED0606;
|
||||
|
||||
.logo {
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
%tr
|
||||
%th= t 'activerecord.attributes.article.tax'
|
||||
%td.numeric= number_to_percentage article.tax
|
||||
- unless article.fc_price == article.gross_price
|
||||
%tr
|
||||
%th= t 'activerecord.attributes.article.fc_share'
|
||||
%td.numeric= number_to_currency(article.fc_price-article.gross_price)
|
||||
%tr
|
||||
%th= t 'activerecord.attributes.article.fc_price'
|
||||
%td.numeric= number_to_currency article.fc_price
|
||||
|
|
|
@ -40,6 +40,7 @@ de:
|
|||
availability: Artikel ist verfügbar?
|
||||
deposit: Pfand
|
||||
fc_price: Endpreis
|
||||
fc_share: FC-Aufschlag
|
||||
gross_price: Bruttopreis
|
||||
price: Nettopreis
|
||||
tax: MwSt
|
||||
|
|
|
@ -40,6 +40,7 @@ en:
|
|||
availability: Is article available?
|
||||
deposit: deposit
|
||||
fc_price: FC price
|
||||
fc_share: FC share
|
||||
gross_price: gross price
|
||||
price: price
|
||||
tax: VAT
|
||||
|
|
Loading…
Reference in a new issue