PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 6.2.7
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v6.2.7
6.2.14 6.2.13 6.2.12 6.2.10 6.2.11 6.2.9 6.2.8 6.2.7 6.2.6 6.2.5 6.2.4 6.2.3 6.2.2 3.6.22 3.6.31 3.6.40 3.6.41 3.6.42 3.6.50 3.6.51 3.6.60 3.6.61 3.6.62 3.6.64 3.6.65 All 196 releases
fluentform / app / Views / receipt / custom_css.php

custom_css.php in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 6.2.7, at app/Views/receipt/custom_css.php

93 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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>