PluginProbe
Booking Calendar / 11.8
Booking Calendar v11.8
11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 10.11.2 10.11.3 All 202 releases
booking / includes / print / _src / bookings_print.css

bookings_print.css in Booking Calendar 11.8, at includes/print/_src/bookings_print.css

123 lines 3.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @media print {
2 /* Fix issue of having 2 pages instead of 1 */
3 html, body {
4 height: auto;
5 }
6 html.wp-toolbar {
7 padding-top: 0;
8 }
9 /* Set exact colors for printing & text color to black! */
10 #wpbc__print_frame__inner *{
11 -webkit-print-color-adjust: exact !important;
12 print-color-adjust: exact !important;
13
14 color:#000 !important;
15 }
16 }
17 /* Set print Modal window scrollable */
18 #wpbc_ajx_print_modal .modal-body {
19 max-height: 550px;
20 overflow-y: scroll;
21 }
22 /* Checkbox column */
23 #wpbc__print_frame__inner .check-column {
24 display: none;
25 }
26 /* Creation dates line -- Move up*/
27 #wpbc__print_frame__inner .wpbc_item_actions .wpbc_actions_sysinfo{
28 margin-top: -2em;
29 }
30 /* Buttons -- hide */
31 #wpbc__print_frame__inner .wpbc_actions_buttons {
32 display: none;
33 }
34 /* Dates icon in header -- hide */
35 #wpbc__print_frame__inner .wpbc_listing_header_action_icon {
36 display: none;
37 }
38 /* Labels */
39 #wpbc__print_frame__inner .wpbc_col_labels .content_text .wpbc_label {
40 padding: 0 5px;
41 line-height: 2em;
42 font-size: 12px;
43 }
44 /* Field Values without background */
45 #wpbc__print_frame__inner .wpbc_listing_usual_row .fieldvalue {
46 background: transparent !important;
47 color:#000 !important;
48 }
49 /* Set border & background to ROWs */
50 #wpbc__print_frame__inner .wpbc_listing_usual_row {
51 background: 0 0;
52 border: 0;
53 border-bottom: 1px solid #ddd !important;
54 }
55 #wpbc__print_frame__inner .wpbc_selectable_body {
56 border: 1px solid #ddd !important;
57 border-bottom: 0 !important;
58 }
59 @media (max-width: 960px ) {
60 #wpbc__print_frame__inner .wpbc_selectable_body {
61 border: 0 !important;
62 }
63 #wpbc__print_frame__inner .wpbc_listing_usual_row {
64 border: 1px solid #ddd !important;
65 }
66 }
67 /* Odd ROW background */
68 #wpbc__print_frame__inner .wpbc_listing_usual_row:nth-of-type(2n) {
69 background: #fafafa;
70 }
71 /* New bookings*/
72 #wpbc__print_frame__inner .wpbc_is_new_button{
73 position: relative;
74 margin-left: 0px;
75 margin-right: 1em;
76 }
77
78 /* //FixIn: 2025-04-22 */
79 /* Define Print loyou expanded by default. It is not supported overflow hiddend for printing. */
80 #wpbc__print_frame__inner {
81 --wpbc_ui_listing__colapsed_height: auto;
82 min-height: 82px;
83 box-shadow: none;
84 }
85 #wpbc__print_frame__inner .booking_details_simple,
86 #wpbc__print_frame__inner .wpbc__list__head,
87 #wpbc__print_frame__inner .wpbc_a_row__notes,
88 #wpbc__print_frame__inner .wpbc_a_col__action,
89 #wpbc__print_frame__inner .wpbc_is_new_button,
90 #wpbc__print_frame__inner .wpbc_col_booking_labels .wpbc_label i,
91 #wpbc__print_frame__inner .sysinfo_hash{
92 display: none;
93 }
94 #wpbc__print_frame__inner .booking_details_full {
95 display: block;
96 }
97 #wpbc__print_frame__inner .wpbc_row_wrap .wpbc_col_data {
98 white-space: normal;
99 }
100 /* Labels as Black/White*/
101 #wpbc__print_frame__inner .wpbc_col_booking_labels .wpbc_label {
102 background-color: transparent;
103 color: #41474e;
104 box-shadow: none;
105 border: 0;
106 font-size: 14px;
107 line-height: 1.7;
108 text-decoration: none;
109 padding: 0;
110 margin: 0 20px 2px 0;
111 border: 1px solid #ccc;
112 text-shadow: none;
113 }
114 #wpbc__print_frame__inner .wpbc_col_labels {
115 margin:1em 0 0;
116 }
117 /* Notes */
118 #wpbc__print_frame__inner .wpbc_remark_text {
119 font-size: 0.8em;
120 margin-bottom: 20px;
121 display:none;
122 }
123