mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
[FIX] Adjust font size based on length
Co-authored-by: Alexandre Díaz <dev@redneboa.es>
This commit is contained in:
@@ -312,6 +312,9 @@ input#bookings_search {
|
|||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
padding-bottom: 5px;
|
padding-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
.pb-3 {
|
||||||
|
padding-bottom: 3px;
|
||||||
|
}
|
||||||
.pb-10 {
|
.pb-10 {
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -132,14 +132,24 @@
|
|||||||
|
|
||||||
<t t-name="HotelCalendar.TooltipReservation.Sale">
|
<t t-name="HotelCalendar.TooltipReservation.Sale">
|
||||||
<div class="row row-eq-height mt-3">
|
<div class="row row-eq-height mt-3">
|
||||||
<div class="col-sm-6 bg-gray-light pb-10 pr-0 diagonal">
|
<div class="col-sm-6 bg-gray-light pb-3 pr-0 diagonal">
|
||||||
<div class="on-top">
|
<div class="on-top">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<p>Folio Pending</p>
|
<p>Folio Pending</p>
|
||||||
<h3><t t-esc="pending_amount" t-widget="monetary"/>€</h3> <!-- FIXME: HARD CURRENCY -->
|
<t t-if="pending_amount.length > '6'">
|
||||||
|
<h3 t-attf-style="font-size:calc(22px - #{pending_amount.length}px)"><t t-esc="pending_amount" t-widget="monetary"/>€</h3> <!-- FIXME: HARD CURRENCY -->
|
||||||
|
</t>
|
||||||
|
<t t-else="">
|
||||||
|
<h3><t t-esc="pending_amount" t-widget="monetary"/>€</h3> <!-- FIXME: HARD CURRENCY -->
|
||||||
|
</t>
|
||||||
</div>
|
</div>
|
||||||
<div class="pull-right-custom">
|
<div class="pull-right-custom">
|
||||||
<h3><t t-esc="invoices_paid" t-widget="monetary"/>€</h3> <!-- FIXME: HARD CURRENCY -->
|
<t t-if="invoices_paid.length > '6'">
|
||||||
|
<h3 t-attf-style="font-size:calc(22px - #{invoices_paid.length}px)"><t t-esc="invoices_paid" t-widget="monetary"/>€</h3> <!-- FIXME: HARD CURRENCY -->
|
||||||
|
</t>
|
||||||
|
<t t-else="">
|
||||||
|
<h3><t t-esc="invoices_paid" t-widget="monetary"/>€</h3> <!-- FIXME: HARD CURRENCY -->
|
||||||
|
</t>
|
||||||
<p>Total Paid</p>
|
<p>Total Paid</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user