PluginProbe
Booking Calendar / 10.10.2
Booking Calendar v10.10.2
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 10.10.2, at includes/print/_src/bookings_print.css

67 lines 1.7 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 border: 1px solid #ddd !important;
52 background: transparent;
53 }
54 /* Header background */
55 #wpbc__print_frame__inner .wpbc_listing_usual_row.wpbc_list_header{
56 background: #eee;
57 }
58 /* Odd ROW background */
59 #wpbc__print_frame__inner .wpbc_listing_usual_row:nth-of-type(2n) {
60 background: #fafafa;
61 }
62 /* New bookings*/
63 #wpbc__print_frame__inner .wpbc_is_new_button{
64 position: relative;
65 margin-left: 0px;
66 margin-right: 1em;
67 }