| 1 |
<?php |
| 2 |
|
| 3 |
defined('ABSPATH') or die; |
| 4 |
|
| 5 |
// phpcs:ignore Internal.NoCodeFound -- View file contains CSS, not PHP code |
| 6 |
?> |
| 7 |
<style type="text/css"> |
| 8 |
.ffp_table { |
| 9 |
empty-cells: show; |
| 10 |
font-size: 14px; |
| 11 |
border-collapse: collapse; |
| 12 |
border: 1px solid #cbcbcb; |
| 13 |
width: 100%; |
| 14 |
} |
| 15 |
.ffp_table td,.ffp_table th { |
| 16 |
border-left: 1px solid #cbcbcb; |
| 17 |
font-size: inherit; |
| 18 |
margin: 0; |
| 19 |
overflow: visible; |
| 20 |
padding: .5em 1em; |
| 21 |
text-align: left; |
| 22 |
} |
| 23 |
.ffp_table td:first-child,.ffp_table th:first-child { |
| 24 |
border-left-width: 0 |
| 25 |
} |
| 26 |
|
| 27 |
.ffp_order_items_table tr { |
| 28 |
border: 1px solid #cbcbcb; |
| 29 |
} |
| 30 |
|
| 31 |
.ffp_table thead { |
| 32 |
background-color: #e3e8ee; |
| 33 |
color: #000; |
| 34 |
text-align: left; |
| 35 |
vertical-align: bottom |
| 36 |
} |
| 37 |
|
| 38 |
.ffp_table td { |
| 39 |
background-color: transparent |
| 40 |
} |
| 41 |
|
| 42 |
.ffp_table tfoot { |
| 43 |
border-top: 1px solid #cbcbcb; |
| 44 |
} |
| 45 |
|
| 46 |
table.input_items_table { |
| 47 |
border-collapse: collapse; |
| 48 |
} |
| 49 |
|
| 50 |
table.input_items_table tr td, table.input_items_table tr th { |
| 51 |
border: 1px solid #cbcbcb; |
| 52 |
text-align: left; |
| 53 |
width: auto; |
| 54 |
word-break: normal; |
| 55 |
} |
| 56 |
table.input_items_table tr th { |
| 57 |
min-width: 20%; |
| 58 |
} |
| 59 |
|
| 60 |
.ffp_payment_info { |
| 61 |
width: 100%; |
| 62 |
-webkit-box-shadow: 0px -2px #e3e8ee; |
| 63 |
box-shadow: 0px -2px #e3e8ee; |
| 64 |
background-color: rgb(247, 250, 252); |
| 65 |
color: rgb(56, 56, 56); |
| 66 |
margin-bottom: 20px; |
| 67 |
} |
| 68 |
.ffp_payment_info_item { |
| 69 |
display: inline-block; |
| 70 |
margin-right: 0px; |
| 71 |
-webkit-box-shadow: inset -1px 0 #e3e8ee; |
| 72 |
box-shadow: inset -1px 0 #e3e8ee; |
| 73 |
padding: 12px; |
| 74 |
} |
| 75 |
.ffp_payment_info_item:last-child { |
| 76 |
box-shadow: none; |
| 77 |
} |
| 78 |
.ffp_payment_info_item .ffp_item_heading { |
| 79 |
font-size: 14px; |
| 80 |
font-weight: bold; |
| 81 |
} |
| 82 |
|
| 83 |
.ffp_payment_info_item .ffp_item_value { |
| 84 |
font-size: 14px; |
| 85 |
} |
| 86 |
|
| 87 |
.ff_payment_receipt h4 { |
| 88 |
font-size: 18px; |
| 89 |
margin: 0; |
| 90 |
padding-top: 15px; |
| 91 |
padding-bottom: 7px; |
| 92 |
} |
| 93 |
</style> |