PluginProbe
Booking Manager – Sync WP Booking Calendar – Import Events, Export Bookings to ICS Calendar / trunk
Booking Manager – Sync WP Booking Calendar – Import Events, Export Bookings to ICS Calendar vtrunk
2.1.21 2.1.20 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 trunk 1.1 2.0 2.0.1 2.0.10.2 2.0.11 2.0.12 2.0.13 2.0.14 2.0.15 2.0.16 2.0.17 2.0.18 2.0.2 2.0.20 2.0.21 2.0.22 All 55 releases
booking-manager / core / any / css / admin-br-table.css

admin-br-table.css in Booking Manager – Sync WP Booking Calendar – Import Events, Export Bookings to ICS Calendar trunk, at core/any/css/admin-br-table.css

146 lines 3.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2 Document : admin resources-table
3 Created on : 2016-08-09, 11:38:06
4 Author : wpdevelop
5 Description: Resource Table CSS
6 */
7
8 /* General Class */
9 .wpbm_resources_table {
10
11 }
12
13 /* Resources Table */
14 .wpbm_resources_table .table,
15 .wpbm_resources_table .table.widefat {
16 border: 0px solid #bbb;
17 box-shadow: 0 0 2px #aaa;
18 }
19 .wpbm_resources_table table > thead > tr > th {
20 background-color: #ffffff;
21 border-bottom: 2px solid #e5e5e5;
22 }
23 .wpdevelop.wpbm_resources_table table > tfoot > tr > th {
24 background-color: #ffffff;
25 border-top: 2px solid #e5e5e5;
26 }
27 .wpbm_resources_table thead th,
28 .wpbm_resources_table tfoot th {
29 font-weight:600;
30 text-align: left;
31 }
32 .wpbm_resources_table th a,
33 .wpbm_resources_table th a:hover,
34 .wpbm_resources_table th a:focus {
35 text-decoration: none;
36 }
37 .wpdevelop.wpbm_resources_table table > tbody > tr.row_selected_color > th,
38 .wpdevelop.wpbm_resources_table table > tbody > tr.row_selected_color > td {
39 background: #b5d4ef;
40 border-color: #ccc !important;
41 }
42 .wpbm_resources_table th a span.glyphicon {
43 font-size: 0.8em;
44 font-weight: 400;
45 padding-left: 2px;
46 }
47
48 .wpdevelop.wpbm_resources_table .table > thead > tr > th,
49 .wpdevelop.wpbm_resources_table .table > tbody > tr > th,
50 .wpdevelop.wpbm_resources_table .table > tfoot > tr > th,
51 .wpdevelop.wpbm_resources_table .table > thead > tr > td,
52 .wpdevelop.wpbm_resources_table .table > tbody > tr > td,
53 .wpdevelop.wpbm_resources_table .table > tfoot > tr > td {
54 vertical-align: middle;
55 }
56
57 /* Labels Colors */
58 .wpbm_resources_table .label {
59 border: 1px solid #EEEEEE;
60 box-shadow: 0 0 1px #ddd;
61 padding: 2px 5px;
62 white-space: nowrap;
63 line-height: 2.4em;
64 }
65 .wpbm_resources_table .label span,
66 .wpbm_resources_table .label a,
67 .wpbm_resources_table .label a:hover{
68 color:#fff;
69 text-decoration: none;
70 }
71 .wpbm_resources_table .label-pending {
72 background: #FFBB45;
73 }
74 .wpbm_resources_table .label-approved {
75 background: #9BE;
76 }
77 .wpbm_resources_table .label-trash {
78 background: #D94A48;
79 color: #fff;
80 text-shadow: 0 0 1px #E00;
81 }
82 .wpbm_resources_table .label-success {
83
84 }
85 .wpbm_resources_table .label-unknown {
86 background-color: #999 !important;
87 }
88 .wpbm_resources_table .label-error {
89 background-color: #FA773D !important;
90 }
91 .wpbm_resources_table .payment-label-success {
92 background-color: #468847 !important;
93 }
94 .wpbm_resources_table .payment-label-pending {
95 background-color: #992 !important;
96 }
97 .wpbm_resources_table .payment-label-unknown {
98 background-color: #999 !important;
99 }
100 .wpbm_resources_table .payment-label-error {
101 background-color: #FA773D !important;
102 }
103
104 .wpbm_resources_table .field-currency {
105 color: #444;
106 display: inline;
107 font-size: 15px;
108 font-weight: 600;
109 line-height: 1.7em;
110 height: 26px;
111 padding:0;
112 vertical-align: top;
113 }
114 .wpdevelop.wpbm_resources_table .table > tbody > tr > td select.form-control,
115 .wpbm_resources_table select {
116 width:auto;
117 height:2em;
118 padding: 2px;
119 border-radius: 0;
120 }
121 @media (max-width: 782px) {
122 .wpbm_resources_table th.wpbm_hide_mobile,
123 .wpbm_resources_table td.wpbm_hide_mobile {
124 display: none;
125 }
126 .wpbm_resources_table th.wpbm_col_id,
127 .wpbm_resources_table td.wpbm_col_id {
128 width: 4em;
129 }
130 .wpbm_resources_table th.wpbm_col_title,
131 .wpbm_resources_table td.wpbm_col_title {
132 width: 9em;
133 }
134 .wpbm_resources_table .field-currency {
135 line-height: 2.1em;
136 }
137 #wpbody .wpbm_resources_table select {
138 height:32px;
139 }
140 }
141 @media (max-width: 600px) {
142 .wpbm_resources_table th.wpbm_hide_mobile_xs,
143 .wpbm_resources_table td.wpbm_hide_mobile_xs {
144 display: none;
145 }
146 }