| 1 |
/* |
| 2 |
Document : admin-wpbc-listing |
| 3 |
Created on : 09.02.2014, 11:38:06 |
| 4 |
Author : wpdevelop |
| 5 |
Description: Listing Table CSS |
| 6 |
*/ |
| 7 |
|
| 8 |
/* Header */ |
| 9 |
.wpbc-listing-header { |
| 10 |
background: #e4e4e4; /* for non-css3 browsers */ |
| 11 |
border: 1px solid #C6C6C6; |
| 12 |
border-bottom-color: #CCC; |
| 13 |
border-radius: 4px 4px 0 0; |
| 14 |
-moz-border-radius: 4px 4px 0 0; |
| 15 |
-webkit-border-radius: 4px 4px 0 0; |
| 16 |
-ms-border-radius: 4px 4px 0 0; |
| 17 |
color: #333; |
| 18 |
font-size: 12px; |
| 19 |
font-weight: 600; |
| 20 |
margin: 0; |
| 21 |
padding: 2px 0px; |
| 22 |
text-shadow: 0 1px 1px #F5F5F5; |
| 23 |
} |
| 24 |
|
| 25 |
/* Row */ |
| 26 |
.wpbc-listing-row { |
| 27 |
border: 1px solid #C6C6C6; |
| 28 |
border-top: none; |
| 29 |
margin: 0px; |
| 30 |
padding: 0px; |
| 31 |
} |
| 32 |
.wpbc-listing-row.row_alternative_color.row, |
| 33 |
.wpbc-listing-row.row_alternative_color { |
| 34 |
background: #F7F7F7; |
| 35 |
} |
| 36 |
.wpbc-listing-row.row.row_selected_color { |
| 37 |
background: #9cf; |
| 38 |
border-color: #aaa !important; |
| 39 |
} |
| 40 |
.wpbc-listing-row.wpbc-listing-last_row { |
| 41 |
border-radius: 0 0 4px 4px; |
| 42 |
-moz-border-radius: 0 0 4px 4px; |
| 43 |
-webkit-border-radius: 0 0 4px 4px; |
| 44 |
-ms-border-radius: 0 0 4px 4px; |
| 45 |
} |
| 46 |
|
| 47 |
/* Columns */ |
| 48 |
.wpbc-listing-collumn { |
| 49 |
margin: 5px 0px 2px; |
| 50 |
} |
| 51 |
.wpbc-listing-collumn .field-id { |
| 52 |
|
| 53 |
color: #999; |
| 54 |
font-size: 10px; |
| 55 |
font-weight: 600; |
| 56 |
text-align: right; |
| 57 |
|
| 58 |
/* background-color: #777; |
| 59 |
border: 1px solid #FFF; |
| 60 |
border-radius: 10px 10px 10px 10px; |
| 61 |
box-shadow: 0 0 2px #888; |
| 62 |
color: #EEE; |
| 63 |
font-size: 9px; |
| 64 |
font-weight: 600; |
| 65 |
padding: 2px 4px; |
| 66 |
text-shadow: 0 0 3px #333;*/ |
| 67 |
} |
| 68 |
.wpbc-listing-collumn .field-id span.label { |
| 69 |
border-radius: 5px; |
| 70 |
background: #bbb; |
| 71 |
color: #fff; |
| 72 |
margin: 0; |
| 73 |
padding: 2px 5px; |
| 74 |
background: #888; |
| 75 |
border:none; |
| 76 |
margin: 1px 1px 1px -10px; |
| 77 |
} |
| 78 |
.wpbc-listing-collumn.field-system-info { |
| 79 |
font-size: 10px; |
| 80 |
font-style: italic; |
| 81 |
line-height: 1.2em; |
| 82 |
text-align: left; |
| 83 |
text-shadow: 0 -1px 0 #eee; |
| 84 |
white-space: nowrap; |
| 85 |
padding: 2em 5px 0; |
| 86 |
text-align: right; |
| 87 |
color: #777; |
| 88 |
} |
| 89 |
.wpbc-listing-collumn.field-system-info .field-creation-date { |
| 90 |
font-weight: 600; |
| 91 |
} |
| 92 |
/* Checkbox */ |
| 93 |
.wpbc-listing-collumn .field-checkbox { |
| 94 |
vertical-align: middle; |
| 95 |
} |
| 96 |
|
| 97 |
/* Main Content */ |
| 98 |
.wpbc-listing-collumn.field-content, |
| 99 |
.wpbc-listing-collumn .standard-content-form { |
| 100 |
text-align: left; |
| 101 |
word-wrap: break-word; |
| 102 |
line-height: 1.7em; |
| 103 |
} |
| 104 |
/* Data Titles style - Yellow Values*/ |
| 105 |
.wpbc-listing-collumn .fieldvalue { |
| 106 |
background: #FFF3C3; /*#FE9;*/ /* FixIn: 8.5.2.5 */ |
| 107 |
color: #333; |
| 108 |
font-size: 0.9em; |
| 109 |
font-weight: 400; |
| 110 |
margin: 0 2px 0 1px; |
| 111 |
padding: 2px 3px; |
| 112 |
border-radius: 2px; |
| 113 |
-moz-border-radius: 2px; |
| 114 |
-webkit-border-radius: 2px; |
| 115 |
/* text-shadow: 0 1px 1px #EEE;*/ |
| 116 |
} |
| 117 |
|
| 118 |
/* Labels Colors */ |
| 119 |
.wpbc-listing-collumn .label { |
| 120 |
border: 1px solid #EEEEEE; |
| 121 |
box-shadow: 0 0 1px #ddd; |
| 122 |
padding: 2px 5px; |
| 123 |
white-space: nowrap; |
| 124 |
line-height: 2.4em; |
| 125 |
} |
| 126 |
.wpbc-listing-collumn .label.label-resource { /* FixIn: 7.0.1.66 */ |
| 127 |
white-space: pre-wrap; |
| 128 |
} |
| 129 |
.wpbc-listing-collumn .label span, |
| 130 |
.wpbc-listing-collumn .label a, |
| 131 |
.wpbc-listing-collumn .label a:hover{ |
| 132 |
color:#fff; |
| 133 |
text-decoration: none; |
| 134 |
} |
| 135 |
.wpbc-listing-collumn .label-pending { |
| 136 |
background: #FFBB45; |
| 137 |
} |
| 138 |
.wpbc-listing-collumn .label-approved { |
| 139 |
background: #9BE; |
| 140 |
} |
| 141 |
.wpbc-listing-collumn .label-trash { |
| 142 |
background: #D94A48; |
| 143 |
color: #fff; |
| 144 |
text-shadow: 0 0 1px #E00; |
| 145 |
} |
| 146 |
.wpbc-listing-collumn .label-success { |
| 147 |
|
| 148 |
} |
| 149 |
.wpbc-listing-collumn .label-unknown { |
| 150 |
background-color: #999 !important; |
| 151 |
} |
| 152 |
.wpbc-listing-collumn .label-error { |
| 153 |
background-color: #FA773D !important; |
| 154 |
} |
| 155 |
.wpbc-listing-collumn .payment-label-success { |
| 156 |
background-color: #468847 !important; |
| 157 |
} |
| 158 |
.wpbc-listing-collumn .payment-label-pending { |
| 159 |
background-color: #992 !important; |
| 160 |
} |
| 161 |
.wpbc-listing-collumn .payment-label-unknown { |
| 162 |
background-color: #999 !important; |
| 163 |
} |
| 164 |
.wpbc-listing-collumn .payment-label-error { |
| 165 |
background-color: #FA773D !important; |
| 166 |
} |
| 167 |
/* //FixIn: 8.4.7.2 */ |
| 168 |
.wpbc-listing-collumn .label-imported { |
| 169 |
background-color: #81A6C6 !important; |
| 170 |
} |
| 171 |
|
| 172 |
/* Pagination */ |
| 173 |
.wpdevelop.wpbc-pagination a.button{ |
| 174 |
box-shadow: none; |
| 175 |
height: 32px; |
| 176 |
line-height: 30px; |
| 177 |
margin: 0 0 5px; |
| 178 |
padding: 0 15px; |
| 179 |
} |
| 180 |
.wpdevelop.wpbc-pagination .container-fluid .row .btn-toolbar .btn-group > .button.disabled { |
| 181 |
box-shadow: none !important; |
| 182 |
} |
| 183 |
.wpdevelop.wpbc-pagination .btn-toolbar .btn-group > .button.active { |
| 184 |
box-shadow: 0 1px 5px -4px rgba(0, 0, 0, 0.5) inset; |
| 185 |
font-weight: 600; |
| 186 |
} |
| 187 |
|
| 188 |
@media (max-width: 782px) { |
| 189 |
.wpbc-listing-header .wpbc-listing-collumn { |
| 190 |
font-size: 1.2em; |
| 191 |
line-height: 2.2em; |
| 192 |
margin:0; |
| 193 |
} |
| 194 |
.wpbc-listing-header .wpbc-listing-collumn input[type=checkbox] { |
| 195 |
margin:-4px 0 0; |
| 196 |
} |
| 197 |
.wpbc-listing-collumn.field-system-info { |
| 198 |
padding:0 5px; |
| 199 |
} |
| 200 |
/* Pagination */ |
| 201 |
.wpbc-pagination .button { |
| 202 |
font-size: 14px; |
| 203 |
height: 36px; |
| 204 |
line-height: 34px; |
| 205 |
margin: 0 0 5px; |
| 206 |
padding: 0 16px; |
| 207 |
} |
| 208 |
} |
| 209 |
|
| 210 |
|
| 211 |
|
| 212 |
/* C U S T O M ****************************************************************/ |
| 213 |
|
| 214 |
/* New Label //FixIn 8.7.9.6 */ |
| 215 |
.new-label { |
| 216 |
display: block; |
| 217 |
} |
| 218 |
.wpbc-listing-collumn.new-label { |
| 219 |
margin: 5px 0 0 -32px; |
| 220 |
position: absolute !important; |
| 221 |
} |
| 222 |
.wpbc-listing-collumn.new-label a{ |
| 223 |
font-size:13px; |
| 224 |
} |
| 225 |
/*.wpbc-listing-collumn.new-label a i.glyphicon{*/ |
| 226 |
/* color:#8ac;*/ |
| 227 |
/*}*/ |
| 228 |
/* Dates */ |
| 229 |
.wpbc-listing-collumn.field-dates .field-booking-date, |
| 230 |
.wpbc-listing-collumn.field-dates .field-booking-date:hover { |
| 231 |
background: none repeat scroll 0 0 #FFBB45; |
| 232 |
border: 1px solid #EEE; |
| 233 |
border-radius: 5px 5px 5px 5px; |
| 234 |
box-shadow: 0 0 1px #CCC; |
| 235 |
color: #FFF; |
| 236 |
font-weight: 600; |
| 237 |
padding: 4px 10px 4px; |
| 238 |
text-decoration: none; |
| 239 |
text-shadow: 0 0px 0 #CCC; |
| 240 |
white-space: nowrap; |
| 241 |
font-size: 0.85em; |
| 242 |
line-height: 2.5em; |
| 243 |
} |
| 244 |
.wpbc-listing-collumn.field-dates .field-booking-date.approved, |
| 245 |
.wpbc-listing-collumn.field-dates .field-booking-date.approved:hover { |
| 246 |
background: none repeat scroll 0 0 #9BE; |
| 247 |
} |
| 248 |
.wpbc-listing-collumn.field-dates .field-booking-time { |
| 249 |
color: #555; |
| 250 |
text-decoration: none; |
| 251 |
text-shadow: 0 0 1px #AAA; |
| 252 |
} |
| 253 |
.wpbc-listing-collumn.field-dates .date_tire { |
| 254 |
font-size: 17px; |
| 255 |
font-weight: 600; |
| 256 |
} |
| 257 |
.wpbc-listing-collumn.field-dates .booking_dates_small, |
| 258 |
.wpbc-listing-collumn.field-dates .booking_dates_full { |
| 259 |
line-height: 24px; |
| 260 |
} |
| 261 |
.wpbc-listing-collumn.field-dates .date_from_dif_type { |
| 262 |
color: #FFF; |
| 263 |
text-shadow: 0 -1px 0 #BBB; |
| 264 |
} |
| 265 |
/* Actions buttons */ |
| 266 |
.wpbc-listing-collumn.field-action-buttons { |
| 267 |
padding-right: 2px; |
| 268 |
} |
| 269 |
.wpbc-listing-collumn.field-action-buttons a.button { |
| 270 |
margin:0 5px 5px 0; |
| 271 |
} |
| 272 |
.wpbc-listing-collumn .red_icon_color::before { |
| 273 |
color: #d54e21; |
| 274 |
} |
| 275 |
.wpbc-listing-collumn .red_icon_color { |
| 276 |
color:#d54e21; |
| 277 |
} |
| 278 |
.wpbc-listing-collumn .wpbc-buttons-separator { |
| 279 |
margin-right: 15px; |
| 280 |
} |
| 281 |
.wpbc_free .wpbc-listing-collumn .wpbc-buttons-separator { |
| 282 |
margin-right: 0px; |
| 283 |
} |
| 284 |
/* Cost Group */ |
| 285 |
.wpbc-listing-collumn.field-action-buttons .cost-fields-group { |
| 286 |
float:left; |
| 287 |
} |
| 288 |
.wpbc-listing-collumn.field-action-buttons .cost-fields-group .field-currency { |
| 289 |
color: #444; |
| 290 |
display: inline; |
| 291 |
font-size: 15px; |
| 292 |
font-weight: 600; |
| 293 |
line-height: 26px; |
| 294 |
height: 26px; |
| 295 |
padding:0; |
| 296 |
vertical-align: top; |
| 297 |
} |
| 298 |
.wpbc-listing-collumn.field-action-buttons .cost-fields-group.control-group .btn-toolbar .input-group > input[type="text"].field-booking-cost { |
| 299 |
display: inline-block; |
| 300 |
margin: 0 5px 5px 0 !important; |
| 301 |
width: 75px; |
| 302 |
font-weight: 600; |
| 303 |
border-radius: 2px; |
| 304 |
-moz-border-radius: 2px; |
| 305 |
-webkit-border-radius: 2px; |
| 306 |
} |
| 307 |
.wpbc-listing-collumn.field-action-buttons select.wpbc-select-locale { |
| 308 |
display: none; |
| 309 |
margin: 0 5px 5px 0; |
| 310 |
} |
| 311 |
.wpbc_free .wpbc-listing-collumn.field-system-info { |
| 312 |
padding:0 5px; |
| 313 |
margin-top:-0.5em; |
| 314 |
} |
| 315 |
/* Columns customizations - labels header */ |
| 316 |
#listing_visible_wpbc .wpbc-listing-header .wpbc_column_3 { |
| 317 |
white-space: nowrap; |
| 318 |
} |
| 319 |
|
| 320 |
.label_resource_not_exist { |
| 321 |
color: #000 !important; |
| 322 |
font-weight: 600; |
| 323 |
text-transform: uppercase; |
| 324 |
} |
| 325 |
.wpbc-listing-row .booking_row_modification_element { |
| 326 |
display: none; |
| 327 |
clear: both; |
| 328 |
width: 100%; |
| 329 |
} |
| 330 |
.wpbc-listing-row .booking_row_modification_element_changing_resource { |
| 331 |
height: auto; |
| 332 |
} |
| 333 |
.wpbc-listing-row .booking_row_modification_element .btn-save-cost, |
| 334 |
.wpbc-listing-row .booking_row_modification_element.booking_edit_note a, |
| 335 |
.wpbc-listing-row .booking_row_modification_element select{ |
| 336 |
float: left; |
| 337 |
margin: 0 0 5px 5px; |
| 338 |
} |
| 339 |
#hided_boking_modifications_elements, |
| 340 |
.hided_boking_modifications_elements { /* FixIn:5.4.5.1 */ |
| 341 |
display: none; |
| 342 |
} |
| 343 |
|
| 344 |
@media (max-width: 782px) { |
| 345 |
/* New Label */ |
| 346 |
.wpbc-listing-collumn.new-label { |
| 347 |
margin: 7px 0 0 -26px; |
| 348 |
position: absolute !important; |
| 349 |
} |
| 350 |
/* Dates */ |
| 351 |
.wpbc-listing-collumn .field-id.text-center, |
| 352 |
.wpbc-listing-collumn .booking-labels.text-center, |
| 353 |
.wpbc-listing-collumn.booking-dates.text-center{ |
| 354 |
text-align: left; |
| 355 |
} |
| 356 |
.wpbc-listing-collumn.field-action-buttons .control-group a.button { |
| 357 |
height: 34px; |
| 358 |
line-height: 2.2; |
| 359 |
} |
| 360 |
/* Cost Group */ |
| 361 |
.wpbc-listing-collumn.field-action-buttons .cost-fields-group .field-currency { |
| 362 |
line-height: 34px; |
| 363 |
height: 34px; |
| 364 |
font-size: 18px; |
| 365 |
} |
| 366 |
.wpbc-listing-collumn.field-action-buttons .cost-fields-group.control-group .btn-toolbar .input-group > input[type="text"].field-booking-cost { |
| 367 |
padding: 2px 5px; |
| 368 |
} |
| 369 |
} |
| 370 |
|