PluginProbe
Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution / 1.5.22
Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution v1.5.22
2.4.0 2.3.0 2.2.5 2.2.0 2.1.2 2.1.1 trunk 1.10.0 1.10.01 1.10.02 1.5.0 1.5.01 1.5.02 1.5.1 1.5.10 1.5.20 1.5.21 1.5.22 1.5.23 1.5.24 1.5.25 1.6.0 1.7.0 1.7.1 1.7.2 All 33 releases
fluent-booking / app / Views / public / receipt / receipt-style.php

receipt-style.php in Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution 1.5.22, at app/Views/public/receipt/receipt-style.php

106 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php defined('ABSPATH') || exit; ?>
2
3 <!-- CSS styles for fluent booking payment receipt -->
4 <style>
5 .fluent_booking_payment_receipt{
6 display: block !important;
7 padding: 16px;
8 background: #f8f8f8;
9 border-radius: 13px;
10 }
11 .fluent_booking_table {
12 width: 100%;
13 empty-cells: show;
14 font-size: 14px;
15 border: 1px solid var(--fcal_slot_border) !important;
16 }
17
18 .fluent_booking_table td, .fluent_booking_table th {
19 border-left: 1px solid var(--fcal_slot_border);
20 border-width: 0 0 0 1px;
21 font-size: inherit;
22 margin: 0;
23 overflow: visible;
24 padding: .5em 1em;
25 color: var(--fcal_dark);
26 }
27
28 .fluent_booking_table td:first-child, .fluent_booking_table th:first-child {
29 border-left-width: 0
30 }
31
32 .fluent_booking_table thead {
33 background-color: #e3e8ee;
34 color: #000;
35 text-align: left;
36 vertical-align: bottom
37 }
38
39 .fluent_booking_table td {
40 background-color: transparent
41 }
42
43 .fluent_booking_table tfoot {
44 border-top: 1px solid #cbcbcb;
45 }
46
47 table.input_items_table {
48 border-collapse: collapse;
49 }
50
51 table.input_items_table tr td, table.input_items_table tr th {
52 color: var(--fcal_dark);
53 border: 1px solid var(--fcal_slot_border);
54 text-align: left;
55 width: auto;
56 word-break: normal;
57 }
58
59 table.input_items_table tr th {
60 min-width: 20%;
61 }
62
63 .fluent_booking_payment_info {
64 width: 100%;
65 border-top: 2px solid var(--fcal_slot_border);
66 background-color: var(--fcal_thBG);
67 color: var(--fcal_dark);
68 td {
69 /*color: var(--fcal_dark);*/
70 }
71 }
72
73 .fluent_booking_payment_info_item {
74 display: inline-block;
75 margin-right: 0px;
76 -webkit-box-shadow: inset -1px 0 #e3e8ee;
77 box-shadow: inset -1px 0 #e3e8ee;
78 padding: 12px;
79 }
80
81 .fluent_booking_payment_info_item:last-child {
82 box-shadow: none;
83 }
84
85 .fluent_booking_payment_info_item .fluent_booking_item_heading {
86 font-size: 14px;
87 font-weight: bold;
88 }
89
90 .fluent_booking_payment_info_item .fluent_booking_item_value {
91 font-size: 14px;
92 }
93
94 .fluent_booking_payment_receipt h4 {
95 font-size: 18px;
96 }
97
98 .fluent_booking_order_items_table {
99 border-collapse: collapse;
100 }
101
102 .fluent_booking_order_items_table tr {
103 border: 1px solid var(--fcal_slot_border);
104 }
105 </style>
106