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