Changeset 1610879
- Timestamp:
- 03/08/2017 08:51:13 PM (9 years ago)
- Location:
- bim-ba/trunk/lib/cmb2
- Files:
-
- 28 added
- 22 edited
-
CHANGELOG.md (modified) (1 diff)
-
css/cmb2-front-rtl.css (modified) (39 diffs)
-
css/cmb2-front-rtl.min.css (modified) (1 diff)
-
css/cmb2-front.css (modified) (39 diffs)
-
css/cmb2-front.min.css (modified) (1 diff)
-
css/cmb2-rtl.css (modified) (88 diffs)
-
css/cmb2-rtl.min.css (modified) (1 diff)
-
css/cmb2.css (modified) (88 diffs)
-
css/cmb2.min.css (modified) (1 diff)
-
includes/CMB2.php (modified) (10 diffs)
-
includes/CMB2_Base.php (modified) (3 diffs)
-
includes/CMB2_Field.php (modified) (1 diff)
-
includes/CMB2_Field_Display.php (modified) (5 diffs)
-
includes/CMB2_JS.php (modified) (2 diffs)
-
includes/CMB2_Sanitize.php (modified) (3 diffs)
-
includes/CMB2_Types.php (modified) (9 diffs)
-
includes/CMB2_Utils.php (modified) (4 diffs)
-
includes/CMB2_hookup.php (modified) (5 diffs)
-
includes/helper-functions.php (modified) (1 diff)
-
includes/types/CMB2_Type_Base.php (added)
-
includes/types/CMB2_Type_Checkbox.php (added)
-
includes/types/CMB2_Type_Colorpicker.php (added)
-
includes/types/CMB2_Type_File.php (added)
-
includes/types/CMB2_Type_File_Base.php (added)
-
includes/types/CMB2_Type_File_List.php (added)
-
includes/types/CMB2_Type_Multi_Base.php (added)
-
includes/types/CMB2_Type_Oembed.php (added)
-
includes/types/CMB2_Type_Picker_Base.php (added)
-
includes/types/CMB2_Type_Select.php (added)
-
includes/types/CMB2_Type_Select_Timezone.php (added)
-
includes/types/CMB2_Type_Taxonomy_Base.php (added)
-
includes/types/CMB2_Type_Taxonomy_Multicheck.php (added)
-
includes/types/CMB2_Type_Taxonomy_Radio.php (added)
-
includes/types/CMB2_Type_Taxonomy_Select.php (added)
-
includes/types/CMB2_Type_Text.php (added)
-
includes/types/CMB2_Type_Text_Date.php (added)
-
includes/types/CMB2_Type_Text_Datetime_Timestamp.php (added)
-
includes/types/CMB2_Type_Text_Datetime_Timestamp_Timezone.php (added)
-
includes/types/CMB2_Type_Text_Time.php (added)
-
includes/types/CMB2_Type_Textarea_Code.php (added)
-
includes/types/CMB2_Type_Title.php (added)
-
includes/types/CMB2_Type_Wysiwyg.php (added)
-
init.php (modified) (6 diffs)
-
js/cmb2-wysiwyg.js (added)
-
js/cmb2.js (added)
-
js/cmb2.min.js (added)
-
js/index.php (added)
-
js/jquery-ui-timepicker-addon.min.js (added)
-
languages/cmb2.pot (modified) (11 diffs)
-
readme.txt (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bim-ba/trunk/lib/cmb2/CHANGELOG.md
r1608679 r1610879 3 3 4 4 ## [Unreleased][unreleased] 5 6 ## 2.2.4 - 2017-02-277 8 ### Enhancements9 10 * Modify `'taxonomy_*'` fields to return stored terms for non-post objects.11 * Modify `CMB2::get_sanitized_values()` to return the sanitized `'taxonomy_*'` field values. Also added `"cmb2_return_taxonomy_values_{$cmb_id}"` filter to modify if `'taxonomy_*'` field values are returned. Fixes [#538](https://github.com/WebDevStudios/CMB2/issues/538).12 * Allow outputting CMB2 boxes/fields in additional locations in the post-editor.13 14 **The new locations are:** [`form_top`](https://developer.wordpress.org/reference/hooks/edit_form_top/), [`before_permalink`](https://developer.wordpress.org/reference/hooks/edit_form_before_permalink/), [`after_title`](https://developer.wordpress.org/reference/hooks/edit_form_after_title/), and [`after_editor`](https://developer.wordpress.org/reference/hooks/edit_form_after_editor/)15 16 These would be defined by setting the `context` property for your box:17 18 ```php19 $cmb_demo = new_cmb2_box( array(20 ...21 'context' => 'before_permalink',22 ) );23 ```24 25 If it is preferred that the fields are output without the metabox, then omit the `'title'` property from the metabox registration array, and instead add ` 'remove_box_wrap' => true,`.26 27 Props [@norcross](https://github.com/norcross) ([#836](https://github.com/WebDevStudios/CMB2/pull/836)).28 * New field parameter, `'render_class'`, allowing you to override the default `'CMB2_Type_Base'` class that is used when rendering the field. This provides interesting object-oriented ways to override default CMB2 behavior by subclassing the default class and overriding methods. The render class can also be overridden with the `"cmb2_render_class_{$fieldtype}"` filter, which is passed the default render class name as well as the `CMB2_Types` object, but this should be used sparingly, and within the context of your project's boxes/fields or you could break other plugins'/themes' CMB2 fields.29 * Improvements to the `file`/`file_list` fields javascript APIs, including using undersore templates.30 * Small improvements to the styling for the `file_list` field type.31 * New action hook, `cmb2_footer_enqueue`, which occurs after CMB2 enqueues its assets.32 * Example functions clean up. Props [@PavelK27](https://github.com/PavelK27) ([#866](https://github.com/WebDevStudios/CMB2/pull/866)).33 * New `CMB2_Utils` methods, `get_available_image_sizes()` and `get_named_size()`. Props [@Cai333](https://github.com/Cai333).34 35 ### Bug Fixes36 37 * Fix datepicker month/year dropdown text color. On windows, the option text was showing as white (invisible). Fixes [#770](https://github.com/WebDevStudios/CMB2/issues/770).38 * Repeatable WYSIWYG no longer breaks if `'quicktags'` param is set to false. Props [@timburden](https://github.com/timburden) ([#797](https://github.com/WebDevStudios/CMB2/pull/797), [#796](https://github.com/WebDevStudios/CMB2/issues/796)).39 * Do not process title fields during group field save process.40 * Fix issue where term-meta values were not being displayed for some users. Props [@sbussetti](https://github.com/sbussetti) ([#763](https://github.com/WebDevStudios/CMB2/pull/763), [#700](https://github.com/WebDevStudios/CMB2/issues/700)).41 * Fix issue where term meta would not be applied when using the new term form if multiple object types were specified. Props [@ADC07](https://github.com/ADC07) ([#842](https://github.com/WebDevStudios/CMB2/pull/842), [#841](https://github.com/WebDevStudios/CMB2/issues/841)).42 * Fix WordPress spinner styling when boxes/fields used on the frontend.43 * Fix issue where clicking to remove a `file_list` item could occasionally remove the field row. ([#828](https://github.com/WebDevStudios/CMB2/pull/828)).44 * Fix issue where empty file field in group would still cause non-empty values to store to database. ([#721](https://github.com/WebDevStudios/CMB2/issues/721)).45 * Make `file`/`file_list` field preview images work with named sizes. Props [@Cai333](https://github.com/Cai333) ([#848](https://github.com/WebDevStudios/CMB2/pull/848), [#844](https://github.com/WebDevStudios/CMB2/issues/844)).46 * Fix incorrect text-domain. ([#798](https://github.com/WebDevStudios/CMB2/issues/798))47 * Do not silence notices/errors in `CMB2_Utils::get_file_ext()`.48 * If `title` field type has no name value, then only output a span element (instead of a header element).49 5 50 6 ## 2.2.3.1 - 2016-11-08 -
bim-ba/trunk/lib/cmb2/css/cmb2-front-rtl.css
r1608679 r1610879 377 377 clear: none; 378 378 display: inline-block; 379 vertical-align: middle;379 float: right; 380 380 margin-left: 10px; 381 381 width: auto; … … 384 384 .cmb2-media-status .img-status img { 385 385 max-width: 350px; 386 height: auto; 387 } 388 /* line 360, sass/partials/_main_wrap.scss */ 386 } 387 /* line 359, sass/partials/_main_wrap.scss */ 389 388 .cmb2-media-status .img-status img, 390 389 .cmb2-media-status .embed-status { … … 396 395 padding: 5px; 397 396 } 398 /* line 3 70, sass/partials/_main_wrap.scss */397 /* line 369, sass/partials/_main_wrap.scss */ 399 398 .cmb2-media-status .embed-status { 400 399 float: right; 401 400 max-width: 800px; 402 401 } 403 /* line 37 5, sass/partials/_main_wrap.scss */402 /* line 374, sass/partials/_main_wrap.scss */ 404 403 .cmb2-media-status .img-status, .cmb2-media-status .embed-status { 405 404 position: relative; 406 405 } 407 /* line 37 8, sass/partials/_main_wrap.scss */406 /* line 377, sass/partials/_main_wrap.scss */ 408 407 .cmb2-media-status .img-status .cmb2-remove-file-button, .cmb2-media-status .embed-status .cmb2-remove-file-button { 409 408 background: url(../images/ico-delete.png); … … 415 414 width: 16px; 416 415 } 417 /* line 39 2, sass/partials/_main_wrap.scss */416 /* line 391, sass/partials/_main_wrap.scss */ 418 417 .cmb2-media-status .img-status .cmb2-remove-file-button { 419 418 top: 10px; 420 419 } 421 /* line 39 7, sass/partials/_main_wrap.scss */420 /* line 396, sass/partials/_main_wrap.scss */ 422 421 .cmb2-media-status .img-status img, .cmb2-media-status .file-status > span { 423 422 cursor: pointer; 424 423 } 425 424 426 /* line 40 3, sass/partials/_main_wrap.scss */425 /* line 402, sass/partials/_main_wrap.scss */ 427 426 .cmb-type-file-list .cmb2-media-status .img-status { 428 427 clear: none; 429 vertical-align: middle; 428 float: right; 429 margin-left: 10px; 430 430 width: auto; 431 margin-left: 10px; 432 margin-bottom: 10px; 433 margin-top: 0; 434 } 435 436 /* line 412, sass/partials/_main_wrap.scss */ 431 } 432 433 /* line 409, sass/partials/_main_wrap.scss */ 437 434 .cmb-attach-list li { 438 435 clear: both; 439 436 display: inline-block; 437 margin-bottom: 25px; 440 438 width: 100%; 441 margin-top: 5px; 442 margin-bottom: 10px; 443 } 444 /* line 419, sass/partials/_main_wrap.scss */ 439 } 440 /* line 415, sass/partials/_main_wrap.scss */ 445 441 .cmb-attach-list li img { 446 442 cursor: move; … … 449 445 } 450 446 447 /* line 422, sass/partials/_main_wrap.scss */ 448 .cmb2-remove-wrapper { 449 margin: 0; 450 } 451 451 452 /* line 426, sass/partials/_main_wrap.scss */ 452 .cmb2-remove-wrapper {453 margin: 0;454 }455 456 /* line 430, sass/partials/_main_wrap.scss */457 453 .child-cmb2 .cmb-th { 458 454 text-align: right; … … 460 456 461 457 @media (max-width: 450px) { 462 /* line 43 5, sass/partials/_main_wrap.scss */458 /* line 431, sass/partials/_main_wrap.scss */ 463 459 .cmb-th, 464 460 .cmb-td, … … 485 481 486 482 /* line 16, sass/partials/_post_metaboxes.scss */ 487 . cmb2-postbox.cmb2-wrap, .cmb-type-group .cmb2-wrap {483 .postbox-container .cmb2-wrap, .cmb-type-group .cmb2-wrap { 488 484 margin: 0; 489 485 } 490 486 /* line 19, sass/partials/_post_metaboxes.scss */ 491 . cmb2-postbox.cmb2-wrap > .cmb-field-list > .cmb-row, .cmb-type-group .cmb2-wrap > .cmb-field-list > .cmb-row {487 .postbox-container .cmb2-wrap > .cmb-field-list > .cmb-row, .cmb-type-group .cmb2-wrap > .cmb-field-list > .cmb-row { 492 488 padding: 1.8em 0; 493 489 } 494 490 /* line 25, sass/partials/_post_metaboxes.scss */ 495 . cmb2-postbox.cmb2-wrap input[type=text].cmb2-oembed, .cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed {491 .postbox-container .cmb2-wrap input[type=text].cmb2-oembed, .cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed { 496 492 width: 100%; 497 493 } 498 494 /* line 31, sass/partials/_post_metaboxes.scss */ 499 . cmb2-postbox.cmb-row, .cmb-type-group .cmb-row {495 .postbox-container .cmb-row, .cmb-type-group .cmb-row { 500 496 padding: 0 0 1.8em; 501 497 margin: 0 0 0.8em; 502 498 } 503 499 /* line 35, sass/partials/_post_metaboxes.scss */ 504 . cmb2-postbox.cmb-row .cmbhandle, .cmb-type-group .cmb-row .cmbhandle {500 .postbox-container .cmb-row .cmbhandle, .cmb-type-group .cmb-row .cmbhandle { 505 501 left: -1em; 506 502 position: relative; 507 503 } 508 504 /* line 41, sass/partials/_post_metaboxes.scss */ 509 . cmb2-postbox.cmb-repeatable-grouping, .cmb-type-group .cmb-repeatable-grouping {505 .postbox-container .cmb-repeatable-grouping, .cmb-type-group .cmb-repeatable-grouping { 510 506 padding: 0 1em; 511 507 max-width: 100%; … … 513 509 } 514 510 /* line 47, sass/partials/_post_metaboxes.scss */ 515 . cmb2-postbox.cmb-repeatable-group > .cmb-row, .cmb-type-group .cmb-repeatable-group > .cmb-row {511 .postbox-container .cmb-repeatable-group > .cmb-row, .cmb-type-group .cmb-repeatable-group > .cmb-row { 516 512 padding-bottom: 0; 517 513 } 518 514 /* line 51, sass/partials/_post_metaboxes.scss */ 519 . cmb2-postbox.cmb-th, .cmb-type-group .cmb-th {515 .postbox-container .cmb-th, .cmb-type-group .cmb-th { 520 516 width: 18%; 521 517 padding: 0 0 0 2%; 522 518 } 523 519 /* line 57, sass/partials/_post_metaboxes.scss */ 524 . cmb2-postbox.cmb-td, .cmb-type-group .cmb-td {520 .postbox-container .cmb-td, .cmb-type-group .cmb-td { 525 521 margin-bottom: 0; 526 522 padding: 0; … … 528 524 } 529 525 /* line 63, sass/partials/_post_metaboxes.scss */ 530 . cmb2-postbox.cmb-repeat-row .cmb-td, .cmb-type-group .cmb-repeat-row .cmb-td {526 .postbox-container .cmb-repeat-row .cmb-td, .cmb-type-group .cmb-repeat-row .cmb-td { 531 527 padding-bottom: 1.8em; 532 528 } 533 529 /* line 67, sass/partials/_post_metaboxes.scss */ 534 . cmb2-postbox.cmb-th + .cmb-td, .cmb-type-group .cmb-th + .cmb-td {530 .postbox-container .cmb-th + .cmb-td, .cmb-type-group .cmb-th + .cmb-td { 535 531 width: 80%; 536 532 float: left; 537 533 } 538 534 /* line 72, sass/partials/_post_metaboxes.scss */ 539 . cmb2-postbox.cmb-row:not(:last-of-type),540 . cmb2-postbox.cmb-repeatable-group:not(:last-of-type), .cmb-type-group .cmb-row:not(:last-of-type),535 .postbox-container .cmb-row:not(:last-of-type), 536 .postbox-container .cmb-repeatable-group:not(:last-of-type), .cmb-type-group .cmb-row:not(:last-of-type), 541 537 .cmb-type-group .cmb-repeatable-group:not(:last-of-type) { 542 538 border-bottom: 1px solid #e9e9e9; … … 544 540 @media (max-width: 450px) { 545 541 /* line 72, sass/partials/_post_metaboxes.scss */ 546 . cmb2-postbox.cmb-row:not(:last-of-type),547 . cmb2-postbox.cmb-repeatable-group:not(:last-of-type), .cmb-type-group .cmb-row:not(:last-of-type),542 .postbox-container .cmb-row:not(:last-of-type), 543 .postbox-container .cmb-repeatable-group:not(:last-of-type), .cmb-type-group .cmb-row:not(:last-of-type), 548 544 .cmb-type-group .cmb-repeatable-group:not(:last-of-type) { 549 545 border-bottom: 0; … … 551 547 } 552 548 /* line 81, sass/partials/_post_metaboxes.scss */ 553 . cmb2-postbox.cmb-repeat-group-field,554 . cmb2-postbox.cmb-remove-field-row, .cmb-type-group .cmb-repeat-group-field,549 .postbox-container .cmb-repeat-group-field, 550 .postbox-container .cmb-remove-field-row, .cmb-type-group .cmb-repeat-group-field, 555 551 .cmb-type-group .cmb-remove-field-row { 556 552 padding-top: 1.8em; 557 553 } 558 554 /* line 88, sass/partials/_post_metaboxes.scss */ 559 . cmb2-postbox .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody {555 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody { 560 556 display: table; 561 557 width: 100%; 562 558 } 563 559 /* line 92, sass/partials/_post_metaboxes.scss */ 564 . cmb2-postbox .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text {560 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text { 565 561 width: 100%; 566 562 } 567 563 /* line 96, sass/partials/_post_metaboxes.scss */ 568 . cmb2-postbox .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row) {564 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row) { 569 565 display: table-row; 570 566 } 571 567 /* line 100, sass/partials/_post_metaboxes.scss */ 572 . cmb2-postbox .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td {568 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td { 573 569 display: table-cell; 574 570 float: none; … … 576 572 } 577 573 /* line 106, sass/partials/_post_metaboxes.scss */ 578 . cmb2-postbox .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td {574 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td { 579 575 padding-top: 1.8em; 580 576 } 581 577 /* line 110, sass/partials/_post_metaboxes.scss */ 582 . cmb2-postbox .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row {578 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row { 583 579 padding-left: 0; 584 580 } 585 581 586 /*--------------------------------------------------------------587 Context Metaboxes588 --------------------------------------------------------------*/589 /* Metabox collapse arrow indicators */590 /* line 9, sass/partials/_context_metaboxes.scss */591 .js .cmb2-postbox.context-box .toggle-indicator:before {592 content: "\f142";593 display: inline-block;594 font: normal 20px/1 dashicons;595 speak: none;596 -webkit-font-smoothing: antialiased;597 -moz-osx-font-smoothing: grayscale;598 text-decoration: none !important;599 }600 /* line 22, sass/partials/_context_metaboxes.scss */601 .js .cmb2-postbox.context-box.closed .toggle-indicator:before {602 content: "\f140";603 }604 605 /* line 30, sass/partials/_context_metaboxes.scss */606 .cmb2-postbox.context-box {607 margin-bottom: 10px;608 }609 /* line 34, sass/partials/_context_metaboxes.scss */610 .cmb2-postbox.context-box.context-before_permalink-box {611 margin-top: 10px;612 }613 /* line 38, sass/partials/_context_metaboxes.scss */614 .cmb2-postbox.context-box.context-after_title-box {615 margin-top: 10px;616 }617 /* line 42, sass/partials/_context_metaboxes.scss */618 .cmb2-postbox.context-box.context-after_editor-box {619 margin-top: 20px;620 margin-bottom: 0;621 }622 /* line 47, sass/partials/_context_metaboxes.scss */623 .cmb2-postbox.context-box.context-form_top-box {624 margin-top: 10px;625 }626 /* line 51, sass/partials/_context_metaboxes.scss */627 .cmb2-postbox.context-box.context-form_top-box .hndle {628 font-size: 14px;629 padding: 8px 12px;630 margin: 0;631 line-height: 1.4;632 }633 /* line 59, sass/partials/_context_metaboxes.scss */634 .cmb2-postbox.context-box .hndle {635 cursor: auto;636 }637 638 /* line 64, sass/partials/_context_metaboxes.scss */639 .cmb2-context-wrap {640 margin-top: 10px;641 }642 /* line 68, sass/partials/_context_metaboxes.scss */643 .cmb2-context-wrap.cmb2-context-wrap-form_top {644 margin-left: 300px;645 width: auto;646 }647 /* line 75, sass/partials/_context_metaboxes.scss */648 .cmb2-context-wrap.cmb2-context-wrap-no-title .cmb2-metabox {649 padding: 10px;650 }651 /* line 80, sass/partials/_context_metaboxes.scss */652 .cmb2-context-wrap .cmb-th {653 padding: 0 0 0 2%;654 width: 18%;655 }656 /* line 85, sass/partials/_context_metaboxes.scss */657 .cmb2-context-wrap .cmb-td {658 width: 80%;659 padding: 0;660 }661 /* line 90, sass/partials/_context_metaboxes.scss */662 .cmb2-context-wrap .cmb-row {663 margin-bottom: 10px;664 }665 /* line 93, sass/partials/_context_metaboxes.scss */666 .cmb2-context-wrap .cmb-row:last-of-type {667 margin-bottom: 0;668 }669 670 /* one column on the post write/edit screen */671 @media only screen and (max-width: 850px) {672 /* line 103, sass/partials/_context_metaboxes.scss */673 .cmb2-context-wrap.cmb2-context-wrap-form_top {674 margin-left: 0;675 }676 }677 582 /*-------------------------------------------------------------- 678 583 Misc. … … 701 606 } 702 607 703 /* line 2 8, sass/partials/_misc.scss */704 . cmb2-postbox .cmb-spinner, .cmb2-no-box-wrap.cmb-spinner {608 /* line 27, sass/partials/_misc.scss */ 609 .postbox .cmb-spinner { 705 610 float: right; 706 display: none;707 }708 709 /* line 33, sass/partials/_misc.scss */710 .cmb-spinner {711 display: none;712 }713 /* line 35, sass/partials/_misc.scss */714 .cmb-spinner.is-active {715 display: block;716 611 } 717 612 … … 1122 1017 color: #fff; 1123 1018 } 1124 /* line 149, sass/partials/_jquery_ui.scss */ 1125 .cmb2-element.ui-datepicker select.ui-datepicker-month option, 1126 .cmb2-element.ui-datepicker select.ui-datepicker-year option, .cmb2-element .ui-datepicker select.ui-datepicker-month option, 1127 .cmb2-element .ui-datepicker select.ui-datepicker-year option { 1128 color: #333; 1019 /* line 151, sass/partials/_jquery_ui.scss */ 1020 .cmb2-element.ui-datepicker thead, .cmb2-element .ui-datepicker thead { 1021 color: #fff; 1022 font-weight: 600; 1129 1023 } 1130 1024 /* line 154, sass/partials/_jquery_ui.scss */ 1131 .cmb2-element.ui-datepicker thead, .cmb2-element .ui-datepicker thead {1132 color: #fff;1133 font-weight: 600;1134 }1135 /* line 157, sass/partials/_jquery_ui.scss */1136 1025 .cmb2-element.ui-datepicker thead th, .cmb2-element .ui-datepicker thead th { 1137 1026 font-weight: normal; 1138 1027 } 1139 /* line 1 62, sass/partials/_jquery_ui.scss */1028 /* line 159, sass/partials/_jquery_ui.scss */ 1140 1029 .cmb2-element.ui-datepicker th, .cmb2-element .ui-datepicker th { 1141 1030 padding: 10px; 1142 1031 } 1143 /* line 16 6, sass/partials/_jquery_ui.scss */1032 /* line 163, sass/partials/_jquery_ui.scss */ 1144 1033 .cmb2-element.ui-datepicker td, .cmb2-element .ui-datepicker td { 1145 1034 padding: 0; 1146 1035 border: 1px solid #f4f4f4; 1147 1036 } 1148 /* line 1 71, sass/partials/_jquery_ui.scss */1037 /* line 168, sass/partials/_jquery_ui.scss */ 1149 1038 .cmb2-element.ui-datepicker td.ui-datepicker-other-month, .cmb2-element .ui-datepicker td.ui-datepicker-other-month { 1150 1039 border: transparent; 1151 1040 } 1152 /* line 17 5, sass/partials/_jquery_ui.scss */1041 /* line 172, sass/partials/_jquery_ui.scss */ 1153 1042 .cmb2-element.ui-datepicker td.ui-datepicker-week-end, .cmb2-element .ui-datepicker td.ui-datepicker-week-end { 1154 1043 background-color: #f4f4f4; 1155 1044 border: 1px solid #f4f4f4; 1156 1045 } 1157 /* line 17 8, sass/partials/_jquery_ui.scss */1046 /* line 175, sass/partials/_jquery_ui.scss */ 1158 1047 .cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today, .cmb2-element .ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today { 1159 1048 -webkit-box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.1); … … 1161 1050 box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.1); 1162 1051 } 1163 /* line 18 5, sass/partials/_jquery_ui.scss */1052 /* line 182, sass/partials/_jquery_ui.scss */ 1164 1053 .cmb2-element.ui-datepicker td.ui-datepicker-today, .cmb2-element .ui-datepicker td.ui-datepicker-today { 1165 1054 background-color: #f0f0c0; 1166 1055 } 1167 /* line 18 9, sass/partials/_jquery_ui.scss */1056 /* line 186, sass/partials/_jquery_ui.scss */ 1168 1057 .cmb2-element.ui-datepicker td.ui-datepicker-current-day, .cmb2-element .ui-datepicker td.ui-datepicker-current-day { 1169 1058 background: #bbdd88; 1170 1059 } 1171 /* line 19 3, sass/partials/_jquery_ui.scss */1060 /* line 190, sass/partials/_jquery_ui.scss */ 1172 1061 .cmb2-element.ui-datepicker td .ui-state-default, .cmb2-element .ui-datepicker td .ui-state-default { 1173 1062 background: transparent; … … 1181 1070 color: #444; 1182 1071 } 1183 /* line 20 5, sass/partials/_jquery_ui.scss */1072 /* line 202, sass/partials/_jquery_ui.scss */ 1184 1073 .cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default, .cmb2-element .ui-datepicker td.ui-state-disabled .ui-state-default { 1185 1074 opacity: 0.5; 1186 1075 } 1187 /* line 2 10, sass/partials/_jquery_ui.scss */1076 /* line 207, sass/partials/_jquery_ui.scss */ 1188 1077 .cmb2-element.ui-datepicker .ui-widget-header, 1189 1078 .cmb2-element.ui-datepicker .ui-datepicker-header, .cmb2-element .ui-datepicker .ui-widget-header, … … 1191 1080 background: #00a0d2; 1192 1081 } 1193 /* line 21 5, sass/partials/_jquery_ui.scss */1082 /* line 212, sass/partials/_jquery_ui.scss */ 1194 1083 .cmb2-element.ui-datepicker thead, .cmb2-element .ui-datepicker thead { 1195 1084 background: #32373c; 1196 1085 } 1197 /* line 21 9, sass/partials/_jquery_ui.scss */1086 /* line 216, sass/partials/_jquery_ui.scss */ 1198 1087 .cmb2-element.ui-datepicker td .ui-state-hover, .cmb2-element.ui-datepicker td .ui-state-active, .cmb2-element .ui-datepicker td .ui-state-hover, .cmb2-element .ui-datepicker td .ui-state-active { 1199 1088 background: #0073aa; 1200 1089 color: #fff; 1201 1090 } 1202 /* line 22 4, sass/partials/_jquery_ui.scss */1091 /* line 221, sass/partials/_jquery_ui.scss */ 1203 1092 .cmb2-element.ui-datepicker .ui-timepicker-div, .cmb2-element .ui-datepicker .ui-timepicker-div { 1204 1093 font-size: 14px; 1205 1094 } 1206 /* line 22 6, sass/partials/_jquery_ui.scss */1095 /* line 223, sass/partials/_jquery_ui.scss */ 1207 1096 .cmb2-element.ui-datepicker .ui-timepicker-div dl, .cmb2-element .ui-datepicker .ui-timepicker-div dl { 1208 1097 text-align: right; 1209 1098 padding: 0 .6em; 1210 1099 } 1211 /* line 22 9, sass/partials/_jquery_ui.scss */1100 /* line 226, sass/partials/_jquery_ui.scss */ 1212 1101 .cmb2-element.ui-datepicker .ui-timepicker-div dl dt, .cmb2-element .ui-datepicker .ui-timepicker-div dl dt { 1213 1102 float: right; … … 1215 1104 padding: 0 5px 0 0; 1216 1105 } 1217 /* line 23 4, sass/partials/_jquery_ui.scss */1106 /* line 231, sass/partials/_jquery_ui.scss */ 1218 1107 .cmb2-element.ui-datepicker .ui-timepicker-div dl dd, .cmb2-element .ui-datepicker .ui-timepicker-div dl dd { 1219 1108 margin: 0 40% 10px 10px; 1220 1109 } 1221 /* line 23 6, sass/partials/_jquery_ui.scss */1110 /* line 233, sass/partials/_jquery_ui.scss */ 1222 1111 .cmb2-element.ui-datepicker .ui-timepicker-div dl dd select, .cmb2-element .ui-datepicker .ui-timepicker-div dl dd select { 1223 1112 width: 100%; 1224 1113 } 1225 /* line 2 42, sass/partials/_jquery_ui.scss */1114 /* line 239, sass/partials/_jquery_ui.scss */ 1226 1115 .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane { 1227 1116 padding: .6em; 1228 1117 text-align: right; 1229 1118 } 1230 /* line 24 6, sass/partials/_jquery_ui.scss */1119 /* line 243, sass/partials/_jquery_ui.scss */ 1231 1120 .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-primary, .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-secondary, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-primary, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-secondary { 1232 1121 padding: 0 10px 1px; … … 1237 1126 } 1238 1127 1239 /* line 2 60, sass/partials/_jquery_ui.scss */1128 /* line 257, sass/partials/_jquery_ui.scss */ 1240 1129 .admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header, 1241 1130 .admin-color-fresh .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-fresh .cmb2-element .ui-datepicker .ui-widget-header, … … 1243 1132 background: #00a0d2; 1244 1133 } 1245 /* line 26 5, sass/partials/_jquery_ui.scss */1134 /* line 262, sass/partials/_jquery_ui.scss */ 1246 1135 .admin-color-fresh .cmb2-element.ui-datepicker thead, .admin-color-fresh .cmb2-element .ui-datepicker thead { 1247 1136 background: #32373c; 1248 1137 } 1249 /* line 26 9, sass/partials/_jquery_ui.scss */1138 /* line 266, sass/partials/_jquery_ui.scss */ 1250 1139 .admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-fresh .cmb2-element .ui-datepicker td .ui-state-hover { 1251 1140 background: #0073aa; … … 1253 1142 } 1254 1143 1255 /* line 27 7, sass/partials/_jquery_ui.scss */1144 /* line 274, sass/partials/_jquery_ui.scss */ 1256 1145 .admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header, 1257 1146 .admin-color-blue .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-blue .cmb2-element .ui-datepicker .ui-widget-header, … … 1259 1148 background: #52accc; 1260 1149 } 1261 /* line 2 82, sass/partials/_jquery_ui.scss */1150 /* line 279, sass/partials/_jquery_ui.scss */ 1262 1151 .admin-color-blue .cmb2-element.ui-datepicker thead, .admin-color-blue .cmb2-element .ui-datepicker thead { 1263 1152 background: #4796b3; 1264 1153 } 1265 /* line 2 91, sass/partials/_jquery_ui.scss */1154 /* line 288, sass/partials/_jquery_ui.scss */ 1266 1155 .admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-blue .cmb2-element.ui-datepicker td .ui-state-active, .admin-color-blue .cmb2-element .ui-datepicker td .ui-state-hover, .admin-color-blue .cmb2-element .ui-datepicker td .ui-state-active { 1267 1156 background: #096484; 1268 1157 color: #fff; 1269 1158 } 1270 /* line 29 6, sass/partials/_jquery_ui.scss */1159 /* line 293, sass/partials/_jquery_ui.scss */ 1271 1160 .admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today, .admin-color-blue .cmb2-element .ui-datepicker td.ui-datepicker-today { 1272 1161 background: #eee; 1273 1162 } 1274 1163 1275 /* line 30 5, sass/partials/_jquery_ui.scss */1164 /* line 302, sass/partials/_jquery_ui.scss */ 1276 1165 .admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header, 1277 1166 .admin-color-coffee .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-coffee .cmb2-element .ui-datepicker .ui-widget-header, … … 1279 1168 background: #59524c; 1280 1169 } 1281 /* line 3 10, sass/partials/_jquery_ui.scss */1170 /* line 307, sass/partials/_jquery_ui.scss */ 1282 1171 .admin-color-coffee .cmb2-element.ui-datepicker thead, .admin-color-coffee .cmb2-element .ui-datepicker thead { 1283 1172 background: #46403c; 1284 1173 } 1285 /* line 31 4, sass/partials/_jquery_ui.scss */1174 /* line 311, sass/partials/_jquery_ui.scss */ 1286 1175 .admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-coffee .cmb2-element .ui-datepicker td .ui-state-hover { 1287 1176 background: #c7a589; … … 1289 1178 } 1290 1179 1291 /* line 3 22, sass/partials/_jquery_ui.scss */1180 /* line 319, sass/partials/_jquery_ui.scss */ 1292 1181 .admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header, 1293 1182 .admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-widget-header, … … 1295 1184 background: #523f6d; 1296 1185 } 1297 /* line 32 7, sass/partials/_jquery_ui.scss */1186 /* line 324, sass/partials/_jquery_ui.scss */ 1298 1187 .admin-color-ectoplasm .cmb2-element.ui-datepicker thead, .admin-color-ectoplasm .cmb2-element .ui-datepicker thead { 1299 1188 background: #413256; 1300 1189 } 1301 /* line 3 31, sass/partials/_jquery_ui.scss */1190 /* line 328, sass/partials/_jquery_ui.scss */ 1302 1191 .admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-ectoplasm .cmb2-element .ui-datepicker td .ui-state-hover { 1303 1192 background: #a3b745; … … 1305 1194 } 1306 1195 1307 /* line 33 9, sass/partials/_jquery_ui.scss */1196 /* line 336, sass/partials/_jquery_ui.scss */ 1308 1197 .admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header, 1309 1198 .admin-color-midnight .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-midnight .cmb2-element .ui-datepicker .ui-widget-header, … … 1311 1200 background: #363b3f; 1312 1201 } 1313 /* line 34 4, sass/partials/_jquery_ui.scss */1202 /* line 341, sass/partials/_jquery_ui.scss */ 1314 1203 .admin-color-midnight .cmb2-element.ui-datepicker thead, .admin-color-midnight .cmb2-element .ui-datepicker thead { 1315 1204 background: #26292c; 1316 1205 } 1317 /* line 34 8, sass/partials/_jquery_ui.scss */1206 /* line 345, sass/partials/_jquery_ui.scss */ 1318 1207 .admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-midnight .cmb2-element .ui-datepicker td .ui-state-hover { 1319 1208 background: #e14d43; … … 1321 1210 } 1322 1211 1323 /* line 35 6, sass/partials/_jquery_ui.scss */1212 /* line 353, sass/partials/_jquery_ui.scss */ 1324 1213 .admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header, 1325 1214 .admin-color-ocean .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-ocean .cmb2-element .ui-datepicker .ui-widget-header, … … 1327 1216 background: #738e96; 1328 1217 } 1329 /* line 3 61, sass/partials/_jquery_ui.scss */1218 /* line 358, sass/partials/_jquery_ui.scss */ 1330 1219 .admin-color-ocean .cmb2-element.ui-datepicker thead, .admin-color-ocean .cmb2-element .ui-datepicker thead { 1331 1220 background: #627c83; 1332 1221 } 1333 /* line 36 5, sass/partials/_jquery_ui.scss */1222 /* line 362, sass/partials/_jquery_ui.scss */ 1334 1223 .admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-ocean .cmb2-element .ui-datepicker td .ui-state-hover { 1335 1224 background: #9ebaa0; … … 1337 1226 } 1338 1227 1339 /* line 37 3, sass/partials/_jquery_ui.scss */1228 /* line 370, sass/partials/_jquery_ui.scss */ 1340 1229 .admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header, 1341 1230 .admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header, … … 1345 1234 background: #cf4944; 1346 1235 } 1347 /* line 37 9, sass/partials/_jquery_ui.scss */1236 /* line 376, sass/partials/_jquery_ui.scss */ 1348 1237 .admin-color-sunrise .cmb2-element.ui-datepicker th, .admin-color-sunrise .cmb2-element .ui-datepicker th { 1349 1238 border-color: #be3631; 1350 1239 background: #be3631; 1351 1240 } 1352 /* line 38 4, sass/partials/_jquery_ui.scss */1241 /* line 381, sass/partials/_jquery_ui.scss */ 1353 1242 .admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-sunrise .cmb2-element .ui-datepicker td .ui-state-hover { 1354 1243 background: #dd823b; … … 1356 1245 } 1357 1246 1358 /* line 3 92, sass/partials/_jquery_ui.scss */1247 /* line 389, sass/partials/_jquery_ui.scss */ 1359 1248 .admin-color-light .cmb2-element.ui-datepicker .ui-widget-header, 1360 1249 .admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-light .cmb2-element .ui-datepicker .ui-widget-header, … … 1362 1251 background: #e5e5e5; 1363 1252 } 1364 /* line 39 7, sass/partials/_jquery_ui.scss */1253 /* line 394, sass/partials/_jquery_ui.scss */ 1365 1254 .admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month, 1366 1255 .admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-year, .admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-month, … … 1368 1257 color: #555; 1369 1258 } 1370 /* line 402, sass/partials/_jquery_ui.scss */1259 /* line 399, sass/partials/_jquery_ui.scss */ 1371 1260 .admin-color-light .cmb2-element.ui-datepicker thead, .admin-color-light .cmb2-element .ui-datepicker thead { 1372 1261 background: #888; 1373 1262 } 1374 /* line 40 6, sass/partials/_jquery_ui.scss */1263 /* line 403, sass/partials/_jquery_ui.scss */ 1375 1264 .admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title, 1376 1265 .admin-color-light .cmb2-element.ui-datepicker td .ui-state-default, … … 1382 1271 color: #555; 1383 1272 } 1384 /* line 41 4, sass/partials/_jquery_ui.scss */1273 /* line 411, sass/partials/_jquery_ui.scss */ 1385 1274 .admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-light .cmb2-element.ui-datepicker td .ui-state-active, .admin-color-light .cmb2-element .ui-datepicker td .ui-state-hover, .admin-color-light .cmb2-element .ui-datepicker td .ui-state-active { 1386 1275 background: #ccc; 1387 1276 } 1388 /* line 41 8, sass/partials/_jquery_ui.scss */1277 /* line 415, sass/partials/_jquery_ui.scss */ 1389 1278 .admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today, .admin-color-light .cmb2-element .ui-datepicker td.ui-datepicker-today { 1390 1279 background: #eee; 1391 1280 } 1392 1281 1393 /* line 42 6, sass/partials/_jquery_ui.scss */1282 /* line 423, sass/partials/_jquery_ui.scss */ 1394 1283 .admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header, 1395 1284 .admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-widget-header, … … 1397 1286 background: #56b274; 1398 1287 } 1399 /* line 4 31, sass/partials/_jquery_ui.scss */1288 /* line 428, sass/partials/_jquery_ui.scss */ 1400 1289 .admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker thead { 1401 1290 background: #36533f; 1402 1291 } 1403 /* line 43 5, sass/partials/_jquery_ui.scss */1292 /* line 432, sass/partials/_jquery_ui.scss */ 1404 1293 .admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker td .ui-state-hover { 1405 1294 background: #446950; … … 1407 1296 } 1408 1297 1409 /* line 44 3, sass/partials/_jquery_ui.scss */1298 /* line 440, sass/partials/_jquery_ui.scss */ 1410 1299 .admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header, 1411 1300 .admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-widget-header, … … 1413 1302 background: #4ca26a; 1414 1303 } 1415 /* line 44 8, sass/partials/_jquery_ui.scss */1304 /* line 445, sass/partials/_jquery_ui.scss */ 1416 1305 .admin-color-bbp-mint .cmb2-element.ui-datepicker thead, .admin-color-bbp-mint .cmb2-element .ui-datepicker thead { 1417 1306 background: #4f6d59; 1418 1307 } 1419 /* line 4 52, sass/partials/_jquery_ui.scss */1308 /* line 449, sass/partials/_jquery_ui.scss */ 1420 1309 .admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-bbp-mint .cmb2-element .ui-datepicker td .ui-state-hover { 1421 1310 background: #5fb37c; … … 1464 1353 } 1465 1354 1466 /* line 40, sass/partials/_front.scss */1467 .cmb-spinner {1468 background: url(/wp-admin/images/spinner.gif) no-repeat;1469 -webkit-background-size: 20px 20px;1470 background-size: 20px 20px;1471 display: none;1472 float: left;1473 vertical-align: middle;1474 opacity: 0.7;1475 filter: alpha(opacity=70);1476 width: 20px;1477 height: 20px;1478 margin: 4px 10px 0;1479 }1480 1481 1355 /*# sourceMappingURL=cmb2-front.css.map */ -
bim-ba/trunk/lib/cmb2/css/cmb2-front-rtl.min.css
r1608679 r1610879 1 .cmb2-wrap{margin:0}.cmb2-wrap input,.cmb2-wrap textarea{font-size:14px;max-width:100%;padding:5px}.cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb2-wrap textarea{width:500px}.cmb2-wrap textarea.cmb2-textarea-code{font-family:"Courier 10 Pitch",Courier,monospace;line-height:16px}.cmb2-wrap input.cmb2-text-small,.cmb2-wrap input.cmb2-timepicker{width:100px}.cmb2-wrap input.cmb2-text-money{width:90px}.cmb2-wrap input.cmb2-text-medium{width:230px}.cmb2-wrap input.cmb2-upload-file{width:65%}.cmb2-wrap input.ed_button{padding:2px 4px}.cmb2-wrap input:not([type=hidden])+.button,.cmb2-wrap input:not([type=hidden])+input,.cmb2-wrap input:not([type=hidden])+select{margin-right:20px}.cmb2-wrap ul{margin:0}.cmb2-wrap li{font-size:14px;line-height:16px;margin:1px 0 5px}.cmb2-wrap select{font-size:14px;margin-top:3px}.cmb2-wrap input:focus,.cmb2-wrap textarea:focus{background:#fffff8}.cmb2-wrap input[type=checkbox],.cmb2-wrap input[type=radio]{margin:0 0 0 5px;padding:0}.cmb2-wrap .button,.cmb2-wrap button{white-space:nowrap}.cmb2-wrap .mceLayout{border:1px solid #e9e9e9!important}.cmb2-wrap .mceIframeContainer{background:#fff}.cmb2-wrap .meta_mce{width:97%}.cmb2-wrap .meta_mce textarea{width:100%}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-input-wrap{vertical-align:middle}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-container{margin:0 0 0 10px}.cmb2-wrap .cmb-row{margin:0}.cmb2-wrap .cmb-row:after{content:'';clear:both;display:block;width:100%}.cmb2-wrap .cmb-row.cmb-repeat-row{padding:1.8em 0 0}.cmb2-wrap .cmb-row.cmb-repeat-row:first-of-type{padding:0}.cmb2-wrap .cmb-row.cmb-repeat .cmb2-metabox-description{padding-top:0;padding-bottom:1.8em}.cmb2-metabox{clear:both;margin:0}.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-th,.cmb2-metabox>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox>.cmb-row:first-of-type>.cmb-th{border:0}.cmb2-metabox>.cmb-row .cmb-repeat-table .cmb-row>.cmb-td{padding-left:20px;box-sizing:border-box;float:right}.cmb-add-row{margin:1.8em 0 0}.cmb-nested .cmb-td,.cmb-repeatable-group .cmb-th,.cmb-repeatable-group:first-of-type{border:0}.cmb-repeatable-group:last-of-type,.cmb-row:last-of-type,.cmb2-wrap .cmb-row:last-of-type{border-bottom:0}.cmb-repeatable-grouping{border:1px solid #e9e9e9;padding:0 1em;max-width:1000px}.cmb-repeatable-grouping.cmb-row{margin:0 0 .8em}.cmb-th{color:#222;float:right;font-weight:600;line-height:1.3;padding:20px 0 20px 10px;vertical-align:top;width:200px}@media (max-width:450px){.cmb-th{font-size:1.2em;display:block;float:none;padding-bottom:1em;text-align:right;width:100%}.cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}}.cmb-td{line-height:1.3;max-width:100%;padding:15px 10px;vertical-align:middle}.cmb-type-title .cmb-td{padding:0}.cmb-th label{display:block;padding:5px 0}.cmb-th+.cmb-td{float:right}.cmb-td .cmb-td{padding-bottom:1em}.cmb-remove-row{text-align:left}.empty-row.hidden{display:none}.cmb-repeatable-group .cmb-th{padding:5px}.cmb-repeatable-group .cmb-group-title{background-color:#e9e9e9;padding:8px 2.2em 8px 12px;margin:0 -1em;min-height:1.5em;font-size:14px;line-height:1.4}.cmb-repeatable-group .cmb-group-title h4{border:0;margin:0;font-size:1.2em;font-weight:500;padding:.5em .75em}.cmb-repeatable-group .cmb-group-title .cmb-th{display:block;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th{font-size:1.2em;display:block;float:none;padding-bottom:1em;text-align:right;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-repeatable-group .cmb-group-description .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}.cmb-repeatable-group .cmb-shift-rows{font-size:1em;margin-left:1em;text-decoration:none}.cmb-repeatable-group .cmb-shift-rows .dashicons{font-size:1.5em;height:1.5em;line-height:1.2em;width:1em}.cmb-repeatable-group .cmb-shift-rows .dashicons.dashicons-arrow-down-alt2{line-height:1.3em}.cmb-repeatable-group .cmb2-upload-button{float:left}p.cmb2-metabox-description{color:#aaa;font-style:italic;margin:0;padding-top:.5em}span.cmb2-metabox-description{color:#aaa;font-style:italic}.cmb2-metabox-title{margin:0 0 5px;padding:5px 0 0;font-size:14px}.cmb-inline ul{padding:4px 0 0}.cmb-inline li{display:inline-block;padding-left:18px}.cmb-type-textarea-code pre{margin:0}.cmb2-media-status .img-status{clear:none;display:inline-block; vertical-align:middle;margin-left:10px;width:auto}.cmb2-media-status .img-status img{max-width:350px;height:auto}.cmb2-media-status .embed-status,.cmb2-media-status .img-status img{background:#fff;border:1px solid #e9e9e9;border-radius:2px;-moz-border-radius:2px;margin:15px 0 0;padding:5px}.cmb2-media-status .embed-status{float:right;max-width:800px}.cmb2-media-status .embed-status,.cmb2-media-status .img-status{position:relative}.cmb2-media-status .embed-status .cmb2-remove-file-button,.cmb2-media-status .img-status .cmb2-remove-file-button{background:url(../images/ico-delete.png);height:16px;right:-5px;position:absolute;text-indent:-9999px;top:-5px;width:16px}.cmb2-media-status .img-status .cmb2-remove-file-button{top:10px}.cmb2-media-status .file-status>span,.cmb2-media-status .img-status img{cursor:pointer}.cmb-type-file-list .cmb2-media-status .img-status{clear:none;vertical-align:middle;width:auto;margin-left:10px;margin-bottom:10px;margin-top:0}.cmb-attach-list li{clear:both;display:inline-block;width:100%;margin-top:5px;margin-bottom:10px}.cmb-attach-list li img{cursor:move;float:right;margin-left:10px}.cmb2-remove-wrapper{margin:0}.child-cmb2 .cmb-th{text-align:right}@media (max-width:450px){.cmb-td,.cmb-th,.cmb-th+.cmb-td{display:block;float:none;width:100%}}#poststuff .cmb-group-title{margin-right:-1em;margin-left:-1em;min-height:1.5em}#poststuff .repeatable .cmb-group-title{padding-right:2.2em}.cmb-type-group .cmb2-wrap,.cmb2-postbox .cmb2-wrap{margin:0}.cmb-type-group .cmb2-wrap>.cmb-field-list>.cmb-row,.cmb2-postbox .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.8em 0}.cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed,.cmb2-postbox .cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb-type-group .cmb-row,.cmb2-postbox .cmb-row{padding:0 0 1.8em;margin:0 0 .8em}.cmb-type-group .cmb-row .cmbhandle,.cmb2-postbox .cmb-row .cmbhandle{left:-1em;position:relative}.cmb-type-group .cmb-repeatable-grouping,.cmb2-postbox .cmb-repeatable-grouping{padding:0 1em;max-width:100%;min-width:1px!important}.cmb-type-group .cmb-repeatable-group>.cmb-row,.cmb2-postbox .cmb-repeatable-group>.cmb-row{padding-bottom:0}.cmb-type-group .cmb-th,.cmb2-postbox .cmb-th{width:18%;padding:0 0 0 2%}.cmb-type-group .cmb-td,.cmb2-postbox .cmb-td{margin-bottom:0;padding:0;line-height:1.3}.cmb-type-group .cmb-repeat-row .cmb-td,.cmb2-postbox .cmb-repeat-row .cmb-td{padding-bottom:1.8em}.cmb-type-group .cmb-th+.cmb-td,.cmb2-postbox .cmb-th+.cmb-td{width:80%;float:left}.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.cmb2-postbox .cmb-repeatable-group:not(:last-of-type),.cmb2-postbox .cmb-row:not(:last-of-type){border-bottom:1px solid #e9e9e9}@media (max-width:450px){.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.cmb2-postbox .cmb-repeatable-group:not(:last-of-type),.cmb2-postbox .cmb-row:not(:last-of-type){border-bottom:0}}.cmb-type-group .cmb-remove-field-row,.cmb-type-group .cmb-repeat-group-field,.cmb2-postbox .cmb-remove-field-row,.cmb2-postbox .cmb-repeat-group-field{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody{display:table;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text{width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row){display:table-row}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td{display:table-cell;float:none;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row{padding-left:0}.js .cmb2-postbox.context-box .toggle-indicator:before{content:"\f142";display:inline-block;font:400 20px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.js .cmb2-postbox.context-box.closed .toggle-indicator:before{content:"\f140"}.cmb2-postbox.context-box{margin-bottom:10px}.cmb2-postbox.context-box.context-after_title-box,.cmb2-postbox.context-box.context-before_permalink-box{margin-top:10px}.cmb2-postbox.context-box.context-after_editor-box{margin-top:20px;margin-bottom:0}.cmb2-postbox.context-box.context-form_top-box{margin-top:10px}.cmb2-postbox.context-box.context-form_top-box .hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.cmb2-postbox.context-box .hndle{cursor:auto}.cmb2-context-wrap{margin-top:10px}.cmb2-context-wrap.cmb2-context-wrap-form_top{margin-left:300px;width:auto}.cmb2-context-wrap.cmb2-context-wrap-no-title .cmb2-metabox{padding:10px}.cmb2-context-wrap .cmb-th{padding:0 0 0 2%;width:18%}.cmb2-context-wrap .cmb-td{width:80%;padding:0}.cmb2-context-wrap .cmb-row{margin-bottom:10px}.cmb2-context-wrap .cmb-row:last-of-type{margin-bottom:0}@media only screen and (max-width:850px){.cmb2-context-wrap.cmb2-context-wrap-form_top{margin-left:0}}#poststuff .cmb-repeatable-group h2{margin:0}.edit-tags-php .cmb2-metabox-title,.profile-php .cmb2-metabox-title,.user-edit-php .cmb2-metabox-title{font-size:1.4em}.cmb2-options-page .cmb2-metabox-title{font-size:1.3em;margin:1em 0}.cmb2-options-page .cmb2-metabox-title+p.cmb2-metabox-description{margin-top:-1.6em;margin-bottom:.8em}.cmb2-no-box-wrap .cmb-spinner,.cmb2-postbox .cmb-spinner{float:right;display:none}.cmb-spinner.is-active{display:block}#side-sortables .cmb2-wrap>.cmb-field-list>.cmb-row,.inner-sidebar .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.4em 0}#side-sortables .cmb2-wrap input[type=text]:not(.wp-color-picker),.inner-sidebar .cmb2-wrap input[type=text]:not(.wp-color-picker){width:100%}#side-sortables .cmb2-wrap input+input:not(.wp-picker-clear),#side-sortables .cmb2-wrap input+select,.inner-sidebar .cmb2-wrap input+input:not(.wp-picker-clear),.inner-sidebar .cmb2-wrap input+select{margin-right:0;margin-top:1em;display:block}#side-sortables .cmb2-wrap input.cmb2-text-money,.inner-sidebar .cmb2-wrap input.cmb2-text-money{max-width:70%}#side-sortables .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description,.inner-sidebar .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description{display:block}#side-sortables .cmb2-wrap label,.inner-sidebar .cmb2-wrap label{display:block;font-weight:700;padding:0 0 5px}#side-sortables textarea,.inner-sidebar textarea{max-width:99%}#side-sortables .cmb-repeatable-group,.inner-sidebar .cmb-repeatable-group{border-bottom:1px solid #e9e9e9}#side-sortables .cmb-type-group>.cmb-td>.cmb-repeatable-group,.inner-sidebar .cmb-type-group>.cmb-td>.cmb-repeatable-group{border-bottom:0;margin-bottom:-1.4em}#side-sortables .cmb-td,#side-sortables .cmb-th,#side-sortables .cmb-th+.cmb-td,.inner-sidebar .cmb-td,.inner-sidebar .cmb-th,.inner-sidebar .cmb-th+.cmb-td{width:100%;display:block;float:none}#side-sortables .closed .inside,.inner-sidebar .closed .inside{display:none}#side-sortables .cmb-td .cmb-td,.inner-sidebar .cmb-td .cmb-td{padding-bottom:1em}#side-sortables .cmb-th,.inner-sidebar .cmb-th{display:block;float:none;padding-bottom:1em;text-align:right;width:100%;padding-right:0;padding-left:0}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{display:block;margin-top:0;padding-bottom:5px}#side-sortables .cmb-th label:after,.inner-sidebar .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{font-size:14px;line-height:1.4em}#side-sortables .cmb-group-description .cmb-th,.inner-sidebar .cmb-group-description .cmb-th{padding-top:0}#side-sortables .cmb-group-description .cmb2-metabox-description,#side-sortables .cmb-group-title .cmb-th,.inner-sidebar .cmb-group-description .cmb2-metabox-description,.inner-sidebar .cmb-group-title .cmb-th{padding:0}#side-sortables .cmb-repeatable-grouping+.cmb-repeatable-grouping,.inner-sidebar .cmb-repeatable-grouping+.cmb-repeatable-grouping{margin-top:1em}#side-sortables .cmb2-media-status .embed-status img,#side-sortables .cmb2-media-status .img-status img,.inner-sidebar .cmb2-media-status .embed-status img,.inner-sidebar .cmb2-media-status .img-status img{max-width:90%;height:auto}#side-sortables .cmb2-list label,.inner-sidebar .cmb2-list label{display:inline;font-weight:400}#side-sortables .cmb2-metabox-description,.inner-sidebar .cmb2-metabox-description{display:block;padding:7px 0 0}#side-sortables .cmb-type-checkbox .cmb-td label,#side-sortables .cmb-type-checkbox .cmb2-metabox-description,.inner-sidebar .cmb-type-checkbox .cmb-td label,.inner-sidebar .cmb-type-checkbox .cmb2-metabox-description{font-weight:400;display:inline}#side-sortables .cmb-row .cmb2-metabox-description,.inner-sidebar .cmb-row .cmb2-metabox-description{padding-bottom:1.8em}#side-sortables .cmb2-metabox-title,.inner-sidebar .cmb2-metabox-title{font-size:1.2em;font-style:italic}#side-sortables .cmb-remove-row,.inner-sidebar .cmb-remove-row{clear:both;padding-top:12px;padding-bottom:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td{width:auto;clear:none;float:right;padding-top:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row{float:left;margin:0}#side-sortables .cmb2-upload-button,.inner-sidebar .cmb2-upload-button{clear:both;margin-top:12px}.cmb2-metabox .cmb-type-group{max-width:1000px}.cmb2-metabox .cmbhandle{color:#aaa;float:left;width:27px;height:30px;cursor:pointer;left:-1em;position:relative}.cmb2-metabox .cmbhandle:before{content:'\f142';left:12px;font:400 20px/1 dashicons;speak:none;display:inline-block;padding:8px 10px;top:0;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.cmb2-metabox .postbox.closed .cmbhandle:before{content:'\f140'}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row{-webkit-appearance:none!important;background:none!important;border:none!important;position:absolute;right:0;top:.5em;line-height:1em;padding:2px 6px 3px;opacity:.5}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]){cursor:pointer;color:#a00;opacity:1}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]):hover{color:red}* html .cmb2-element.ui-helper-clearfix{height:1%}.cmb2-element .ui-datepicker,.cmb2-element.ui-datepicker{padding:0;margin:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:#fff;border:1px solid #dfdfdf;border-top:none;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.075);box-shadow:0 3px 6px rgba(0,0,0,.075);min-width:17em;width:auto}.cmb2-element .ui-datepicker *,.cmb2-element.ui-datepicker *{padding:0;font-family:"Open Sans",sans-serif;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.cmb2-element .ui-datepicker table,.cmb2-element.ui-datepicker table{font-size:13px;margin:0;border:none;border-collapse:collapse}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{border:none;color:#fff;font-weight:400}.cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover{background:0 0;border-color:transparent;cursor:pointer}.cmb2-element .ui-datepicker .ui-datepicker-title,.cmb2-element.ui-datepicker .ui-datepicker-title{margin:0;padding:10px 0;color:#fff;font-size:14px;line-height:14px;text-align:center}.cmb2-element .ui-datepicker .ui-datepicker-title select,.cmb2-element.ui-datepicker .ui-datepicker-title select{margin-top:-8px;margin-bottom:-8px}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-prev{position:relative;top:0;height:34px;width:34px}.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-prev{border:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover,.cmb2-element.ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover{right:0}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-next-hover,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next-hover{left:0}.cmb2-element .ui-datepicker .ui-datepicker-next span,.cmb2-element .ui-datepicker .ui-datepicker-prev span,.cmb2-element.ui-datepicker .ui-datepicker-next span,.cmb2-element.ui-datepicker .ui-datepicker-prev span{display:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev{float:right}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next{float:left}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{font:400 20px/34px dashicons;padding-right:7px;color:#fff;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:34px;height:34px}.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{content:'\f341'}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before{content:'\f345'}.cmb2-element .ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover:before{opacity:.7}.cmb2-element .ui-datepicker select.ui-datepicker-month,.cmb2-element .ui-datepicker select.ui-datepicker-year,.cmb2-element.ui-datepicker select.ui-datepicker-month,.cmb2-element.ui-datepicker select.ui-datepicker-year{width:33%;background:0 0;border-color:transparent;box-shadow:none;color:#fff}.cmb2-element .ui-datepicker select.ui-datepicker-month option,.cmb2-element .ui-datepicker select.ui-datepicker-year option,.cmb2-element.ui-datepicker select.ui-datepicker-month option,.cmb2-element.ui-datepicker select.ui-datepicker-year option{color:#333}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{color:#fff;font-weight:600}.cmb2-element .ui-datepicker thead th,.cmb2-element.ui-datepicker thead th{font-weight:400}.cmb2-element .ui-datepicker th,.cmb2-element.ui-datepicker th{padding:10px}.cmb2-element .ui-datepicker td,.cmb2-element.ui-datepicker td{padding:0;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-other-month,.cmb2-element.ui-datepicker td.ui-datepicker-other-month{border:transparent}.cmb2-element .ui-datepicker td.ui-datepicker-week-end,.cmb2-element.ui-datepicker td.ui-datepicker-week-end{background-color:#f4f4f4;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today{-webkit-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);-moz-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1)}.cmb2-element .ui-datepicker td.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-today{background-color:#f0f0c0}.cmb2-element .ui-datepicker td.ui-datepicker-current-day,.cmb2-element.ui-datepicker td.ui-datepicker-current-day{background:#bd8}.cmb2-element .ui-datepicker td .ui-state-default,.cmb2-element.ui-datepicker td .ui-state-default{background:0 0;border:none;text-align:center;text-decoration:none;width:auto;display:block;padding:5px 10px;font-weight:400;color:#444}.cmb2-element .ui-datepicker td.ui-state-disabled .ui-state-default,.cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default{opacity:.5}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{background:#32373c}.cmb2-element .ui-datepicker td .ui-state-active,.cmb2-element .ui-datepicker td .ui-state-hover,.cmb2-element.ui-datepicker td .ui-state-active,.cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.cmb2-element .ui-datepicker .ui-timepicker-div,.cmb2-element.ui-datepicker .ui-timepicker-div{font-size:14px}.cmb2-element .ui-datepicker .ui-timepicker-div dl,.cmb2-element.ui-datepicker .ui-timepicker-div dl{text-align:right;padding:0 .6em}.cmb2-element .ui-datepicker .ui-timepicker-div dl dt,.cmb2-element.ui-datepicker .ui-timepicker-div dl dt{float:right;clear:right;padding:0 5px 0 0}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd{margin:0 40% 10px 10px}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd select,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd select{width:100%}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane{padding:.6em;text-align:right}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary{padding:0 10px 1px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;margin:0 .4em .4em .6em}.admin-color-fresh .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.admin-color-fresh .cmb2-element .ui-datepicker thead,.admin-color-fresh .cmb2-element.ui-datepicker thead{background:#32373c}.admin-color-fresh .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header{background:#52accc}.admin-color-blue .cmb2-element .ui-datepicker thead,.admin-color-blue .cmb2-element.ui-datepicker thead{background:#4796b3}.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover{background:#096484;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-coffee .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header{background:#59524c}.admin-color-coffee .cmb2-element .ui-datepicker thead,.admin-color-coffee .cmb2-element.ui-datepicker thead{background:#46403c}.admin-color-coffee .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover{background:#c7a589;color:#fff}.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header{background:#523f6d}.admin-color-ectoplasm .cmb2-element .ui-datepicker thead,.admin-color-ectoplasm .cmb2-element.ui-datepicker thead{background:#413256}.admin-color-ectoplasm .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover{background:#a3b745;color:#fff}.admin-color-midnight .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header{background:#363b3f}.admin-color-midnight .cmb2-element .ui-datepicker thead,.admin-color-midnight .cmb2-element.ui-datepicker thead{background:#26292c}.admin-color-midnight .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover{background:#e14d43;color:#fff}.admin-color-ocean .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header{background:#738e96}.admin-color-ocean .cmb2-element .ui-datepicker thead,.admin-color-ocean .cmb2-element.ui-datepicker thead{background:#627c83}.admin-color-ocean .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover{background:#9ebaa0;color:#fff}.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header{background:#cf4944}.admin-color-sunrise .cmb2-element .ui-datepicker th,.admin-color-sunrise .cmb2-element.ui-datepicker th{border-color:#be3631;background:#be3631}.admin-color-sunrise .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover{background:#dd823b;color:#fff}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element.ui-datepicker .ui-widget-header{background:#e5e5e5}.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-year,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-year{color:#555}.admin-color-light .cmb2-element .ui-datepicker thead,.admin-color-light .cmb2-element.ui-datepicker thead{background:#888}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-default,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-default{color:#555}.admin-color-light .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover{background:#ccc}.admin-color-light .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header{background:#56b274}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker thead,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead{background:#36533f}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover{background:#446950;color:#fff}.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header{background:#4ca26a}.admin-color-bbp-mint .cmb2-element .ui-datepicker thead,.admin-color-bbp-mint .cmb2-element.ui-datepicker thead{background:#4f6d59}.admin-color-bbp-mint .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover{background:#5fb37c;color:#fff}.closed .inside{display:none}.cmb-repeatable-grouping{position:relative}.cmb-repeatable-grouping .cmb-group-title{margin-right:-1em;margin-left:-1em;min-height:1.5em}.cmb-repeatable-grouping h3{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.cmb-repeatable-group.repeatable .cmb-group-title{padding-right:2.2em}.cmb-repeatable-group.non-repeatable .cmb-group-title{padding-right:12px}.cmb-type-group .cmb-row .cmbhandle{left:0;position:absolute}.cmb-spinner{background:url(/wp-admin/images/spinner.gif) no-repeat;-webkit-background-size:20px 20px;background-size:20px 20px;display:none;float:left;vertical-align:middle;opacity:.7;filter:alpha(opacity=70);width:20px;height:20px;margin:4px 10px 0}1 .cmb2-wrap{margin:0}.cmb2-wrap input,.cmb2-wrap textarea{font-size:14px;max-width:100%;padding:5px}.cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb2-wrap textarea{width:500px}.cmb2-wrap textarea.cmb2-textarea-code{font-family:"Courier 10 Pitch",Courier,monospace;line-height:16px}.cmb2-wrap input.cmb2-text-small,.cmb2-wrap input.cmb2-timepicker{width:100px}.cmb2-wrap input.cmb2-text-money{width:90px}.cmb2-wrap input.cmb2-text-medium{width:230px}.cmb2-wrap input.cmb2-upload-file{width:65%}.cmb2-wrap input.ed_button{padding:2px 4px}.cmb2-wrap input:not([type=hidden])+.button,.cmb2-wrap input:not([type=hidden])+input,.cmb2-wrap input:not([type=hidden])+select{margin-right:20px}.cmb2-wrap ul{margin:0}.cmb2-wrap li{font-size:14px;line-height:16px;margin:1px 0 5px}.cmb2-wrap select{font-size:14px;margin-top:3px}.cmb2-wrap input:focus,.cmb2-wrap textarea:focus{background:#fffff8}.cmb2-wrap input[type=checkbox],.cmb2-wrap input[type=radio]{margin:0 0 0 5px;padding:0}.cmb2-wrap .button,.cmb2-wrap button{white-space:nowrap}.cmb2-wrap .mceLayout{border:1px solid #e9e9e9!important}.cmb2-wrap .mceIframeContainer{background:#fff}.cmb2-wrap .meta_mce{width:97%}.cmb2-wrap .meta_mce textarea{width:100%}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-input-wrap{vertical-align:middle}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-container{margin:0 0 0 10px}.cmb2-wrap .cmb-row{margin:0}.cmb2-wrap .cmb-row:after{content:'';clear:both;display:block;width:100%}.cmb2-wrap .cmb-row.cmb-repeat-row{padding:1.8em 0 0}.cmb2-wrap .cmb-row.cmb-repeat-row:first-of-type{padding:0}.cmb2-wrap .cmb-row.cmb-repeat .cmb2-metabox-description{padding-top:0;padding-bottom:1.8em}.cmb2-metabox{clear:both;margin:0}.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-th,.cmb2-metabox>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox>.cmb-row:first-of-type>.cmb-th{border:0}.cmb2-metabox>.cmb-row .cmb-repeat-table .cmb-row>.cmb-td{padding-left:20px;box-sizing:border-box;float:right}.cmb-add-row{margin:1.8em 0 0}.cmb-nested .cmb-td,.cmb-repeatable-group .cmb-th,.cmb-repeatable-group:first-of-type{border:0}.cmb-repeatable-group:last-of-type,.cmb-row:last-of-type,.cmb2-wrap .cmb-row:last-of-type{border-bottom:0}.cmb-repeatable-grouping{border:1px solid #e9e9e9;padding:0 1em;max-width:1000px}.cmb-repeatable-grouping.cmb-row{margin:0 0 .8em}.cmb-th{color:#222;float:right;font-weight:600;line-height:1.3;padding:20px 0 20px 10px;vertical-align:top;width:200px}@media (max-width:450px){.cmb-th{font-size:1.2em;display:block;float:none;padding-bottom:1em;text-align:right;width:100%}.cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}}.cmb-td{line-height:1.3;max-width:100%;padding:15px 10px;vertical-align:middle}.cmb-type-title .cmb-td{padding:0}.cmb-th label{display:block;padding:5px 0}.cmb-th+.cmb-td{float:right}.cmb-td .cmb-td{padding-bottom:1em}.cmb-remove-row{text-align:left}.empty-row.hidden{display:none}.cmb-repeatable-group .cmb-th{padding:5px}.cmb-repeatable-group .cmb-group-title{background-color:#e9e9e9;padding:8px 2.2em 8px 12px;margin:0 -1em;min-height:1.5em;font-size:14px;line-height:1.4}.cmb-repeatable-group .cmb-group-title h4{border:0;margin:0;font-size:1.2em;font-weight:500;padding:.5em .75em}.cmb-repeatable-group .cmb-group-title .cmb-th{display:block;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th{font-size:1.2em;display:block;float:none;padding-bottom:1em;text-align:right;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-repeatable-group .cmb-group-description .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}.cmb-repeatable-group .cmb-shift-rows{font-size:1em;margin-left:1em;text-decoration:none}.cmb-repeatable-group .cmb-shift-rows .dashicons{font-size:1.5em;height:1.5em;line-height:1.2em;width:1em}.cmb-repeatable-group .cmb-shift-rows .dashicons.dashicons-arrow-down-alt2{line-height:1.3em}.cmb-repeatable-group .cmb2-upload-button{float:left}p.cmb2-metabox-description{color:#aaa;font-style:italic;margin:0;padding-top:.5em}span.cmb2-metabox-description{color:#aaa;font-style:italic}.cmb2-metabox-title{margin:0 0 5px;padding:5px 0 0;font-size:14px}.cmb-inline ul{padding:4px 0 0}.cmb-inline li{display:inline-block;padding-left:18px}.cmb-type-textarea-code pre{margin:0}.cmb2-media-status .img-status{clear:none;display:inline-block;float:right;margin-left:10px;width:auto}.cmb2-media-status .img-status img{max-width:350px}.cmb2-media-status .embed-status,.cmb2-media-status .img-status img{background:#fff;border:1px solid #e9e9e9;border-radius:2px;-moz-border-radius:2px;margin:15px 0 0;padding:5px}.cmb2-media-status .embed-status{float:right;max-width:800px}.cmb2-media-status .embed-status,.cmb2-media-status .img-status{position:relative}.cmb2-media-status .embed-status .cmb2-remove-file-button,.cmb2-media-status .img-status .cmb2-remove-file-button{background:url(../images/ico-delete.png);height:16px;right:-5px;position:absolute;text-indent:-9999px;top:-5px;width:16px}.cmb2-media-status .img-status .cmb2-remove-file-button{top:10px}.cmb2-media-status .file-status>span,.cmb2-media-status .img-status img{cursor:pointer}.cmb-type-file-list .cmb2-media-status .img-status{clear:none;float:right;margin-left:10px;width:auto}.cmb-attach-list li{clear:both;display:inline-block;margin-bottom:25px;width:100%}.cmb-attach-list li img{cursor:move;float:right;margin-left:10px}.cmb2-remove-wrapper{margin:0}.child-cmb2 .cmb-th{text-align:right}@media (max-width:450px){.cmb-td,.cmb-th,.cmb-th+.cmb-td{display:block;float:none;width:100%}}#poststuff .cmb-group-title{margin-right:-1em;margin-left:-1em;min-height:1.5em}#poststuff .repeatable .cmb-group-title{padding-right:2.2em}.cmb-type-group .cmb2-wrap,.postbox-container .cmb2-wrap{margin:0}.cmb-type-group .cmb2-wrap>.cmb-field-list>.cmb-row,.postbox-container .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.8em 0}.cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed,.postbox-container .cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb-type-group .cmb-row,.postbox-container .cmb-row{padding:0 0 1.8em;margin:0 0 .8em}.cmb-type-group .cmb-row .cmbhandle,.postbox-container .cmb-row .cmbhandle{left:-1em;position:relative}.cmb-type-group .cmb-repeatable-grouping,.postbox-container .cmb-repeatable-grouping{padding:0 1em;max-width:100%;min-width:1px!important}.cmb-type-group .cmb-repeatable-group>.cmb-row,.postbox-container .cmb-repeatable-group>.cmb-row{padding-bottom:0}.cmb-type-group .cmb-th,.postbox-container .cmb-th{width:18%;padding:0 0 0 2%}.cmb-type-group .cmb-td,.postbox-container .cmb-td{margin-bottom:0;padding:0;line-height:1.3}.cmb-type-group .cmb-repeat-row .cmb-td,.postbox-container .cmb-repeat-row .cmb-td{padding-bottom:1.8em}.cmb-type-group .cmb-th+.cmb-td,.postbox-container .cmb-th+.cmb-td{width:80%;float:left}.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.postbox-container .cmb-repeatable-group:not(:last-of-type),.postbox-container .cmb-row:not(:last-of-type){border-bottom:1px solid #e9e9e9}@media (max-width:450px){.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.postbox-container .cmb-repeatable-group:not(:last-of-type),.postbox-container .cmb-row:not(:last-of-type){border-bottom:0}}.cmb-type-group .cmb-remove-field-row,.cmb-type-group .cmb-repeat-group-field,.postbox-container .cmb-remove-field-row,.postbox-container .cmb-repeat-group-field{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody{display:table;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text{width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row){display:table-row}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td{display:table-cell;float:none;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row{padding-left:0}#poststuff .cmb-repeatable-group h2{margin:0}.edit-tags-php .cmb2-metabox-title,.profile-php .cmb2-metabox-title,.user-edit-php .cmb2-metabox-title{font-size:1.4em}.cmb2-options-page .cmb2-metabox-title{font-size:1.3em;margin:1em 0}.cmb2-options-page .cmb2-metabox-title+p.cmb2-metabox-description{margin-top:-1.6em;margin-bottom:.8em}.postbox .cmb-spinner{float:right}#side-sortables .cmb2-wrap>.cmb-field-list>.cmb-row,.inner-sidebar .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.4em 0}#side-sortables .cmb2-wrap input[type=text]:not(.wp-color-picker),.inner-sidebar .cmb2-wrap input[type=text]:not(.wp-color-picker){width:100%}#side-sortables .cmb2-wrap input+input:not(.wp-picker-clear),#side-sortables .cmb2-wrap input+select,.inner-sidebar .cmb2-wrap input+input:not(.wp-picker-clear),.inner-sidebar .cmb2-wrap input+select{margin-right:0;margin-top:1em;display:block}#side-sortables .cmb2-wrap input.cmb2-text-money,.inner-sidebar .cmb2-wrap input.cmb2-text-money{max-width:70%}#side-sortables .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description,.inner-sidebar .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description{display:block}#side-sortables .cmb2-wrap label,.inner-sidebar .cmb2-wrap label{display:block;font-weight:700;padding:0 0 5px}#side-sortables textarea,.inner-sidebar textarea{max-width:99%}#side-sortables .cmb-repeatable-group,.inner-sidebar .cmb-repeatable-group{border-bottom:1px solid #e9e9e9}#side-sortables .cmb-type-group>.cmb-td>.cmb-repeatable-group,.inner-sidebar .cmb-type-group>.cmb-td>.cmb-repeatable-group{border-bottom:0;margin-bottom:-1.4em}#side-sortables .cmb-td,#side-sortables .cmb-th,#side-sortables .cmb-th+.cmb-td,.inner-sidebar .cmb-td,.inner-sidebar .cmb-th,.inner-sidebar .cmb-th+.cmb-td{width:100%;display:block;float:none}#side-sortables .closed .inside,.inner-sidebar .closed .inside{display:none}#side-sortables .cmb-td .cmb-td,.inner-sidebar .cmb-td .cmb-td{padding-bottom:1em}#side-sortables .cmb-th,.inner-sidebar .cmb-th{display:block;float:none;padding-bottom:1em;text-align:right;width:100%;padding-right:0;padding-left:0}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{display:block;margin-top:0;padding-bottom:5px}#side-sortables .cmb-th label:after,.inner-sidebar .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{font-size:14px;line-height:1.4em}#side-sortables .cmb-group-description .cmb-th,.inner-sidebar .cmb-group-description .cmb-th{padding-top:0}#side-sortables .cmb-group-description .cmb2-metabox-description,#side-sortables .cmb-group-title .cmb-th,.inner-sidebar .cmb-group-description .cmb2-metabox-description,.inner-sidebar .cmb-group-title .cmb-th{padding:0}#side-sortables .cmb-repeatable-grouping+.cmb-repeatable-grouping,.inner-sidebar .cmb-repeatable-grouping+.cmb-repeatable-grouping{margin-top:1em}#side-sortables .cmb2-media-status .embed-status img,#side-sortables .cmb2-media-status .img-status img,.inner-sidebar .cmb2-media-status .embed-status img,.inner-sidebar .cmb2-media-status .img-status img{max-width:90%;height:auto}#side-sortables .cmb2-list label,.inner-sidebar .cmb2-list label{display:inline;font-weight:400}#side-sortables .cmb2-metabox-description,.inner-sidebar .cmb2-metabox-description{display:block;padding:7px 0 0}#side-sortables .cmb-type-checkbox .cmb-td label,#side-sortables .cmb-type-checkbox .cmb2-metabox-description,.inner-sidebar .cmb-type-checkbox .cmb-td label,.inner-sidebar .cmb-type-checkbox .cmb2-metabox-description{font-weight:400;display:inline}#side-sortables .cmb-row .cmb2-metabox-description,.inner-sidebar .cmb-row .cmb2-metabox-description{padding-bottom:1.8em}#side-sortables .cmb2-metabox-title,.inner-sidebar .cmb2-metabox-title{font-size:1.2em;font-style:italic}#side-sortables .cmb-remove-row,.inner-sidebar .cmb-remove-row{clear:both;padding-top:12px;padding-bottom:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td{width:auto;clear:none;float:right;padding-top:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row{float:left;margin:0}#side-sortables .cmb2-upload-button,.inner-sidebar .cmb2-upload-button{clear:both;margin-top:12px}.cmb2-metabox .cmb-type-group{max-width:1000px}.cmb2-metabox .cmbhandle{color:#aaa;float:left;width:27px;height:30px;cursor:pointer;left:-1em;position:relative}.cmb2-metabox .cmbhandle:before{content:'\f142';left:12px;font:400 20px/1 dashicons;speak:none;display:inline-block;padding:8px 10px;top:0;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.cmb2-metabox .postbox.closed .cmbhandle:before{content:'\f140'}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row{-webkit-appearance:none!important;background:none!important;border:none!important;position:absolute;right:0;top:.5em;line-height:1em;padding:2px 6px 3px;opacity:.5}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]){cursor:pointer;color:#a00;opacity:1}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]):hover{color:red}* html .cmb2-element.ui-helper-clearfix{height:1%}.cmb2-element .ui-datepicker,.cmb2-element.ui-datepicker{padding:0;margin:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:#fff;border:1px solid #dfdfdf;border-top:none;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.075);box-shadow:0 3px 6px rgba(0,0,0,.075);min-width:17em;width:auto}.cmb2-element .ui-datepicker *,.cmb2-element.ui-datepicker *{padding:0;font-family:"Open Sans",sans-serif;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.cmb2-element .ui-datepicker table,.cmb2-element.ui-datepicker table{font-size:13px;margin:0;border:none;border-collapse:collapse}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{border:none;color:#fff;font-weight:400}.cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover{background:0 0;border-color:transparent;cursor:pointer}.cmb2-element .ui-datepicker .ui-datepicker-title,.cmb2-element.ui-datepicker .ui-datepicker-title{margin:0;padding:10px 0;color:#fff;font-size:14px;line-height:14px;text-align:center}.cmb2-element .ui-datepicker .ui-datepicker-title select,.cmb2-element.ui-datepicker .ui-datepicker-title select{margin-top:-8px;margin-bottom:-8px}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-prev{position:relative;top:0;height:34px;width:34px}.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-prev{border:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover,.cmb2-element.ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover{right:0}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-next-hover,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next-hover{left:0}.cmb2-element .ui-datepicker .ui-datepicker-next span,.cmb2-element .ui-datepicker .ui-datepicker-prev span,.cmb2-element.ui-datepicker .ui-datepicker-next span,.cmb2-element.ui-datepicker .ui-datepicker-prev span{display:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev{float:right}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next{float:left}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{font:400 20px/34px dashicons;padding-right:7px;color:#fff;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:34px;height:34px}.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{content:'\f341'}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before{content:'\f345'}.cmb2-element .ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover:before{opacity:.7}.cmb2-element .ui-datepicker select.ui-datepicker-month,.cmb2-element .ui-datepicker select.ui-datepicker-year,.cmb2-element.ui-datepicker select.ui-datepicker-month,.cmb2-element.ui-datepicker select.ui-datepicker-year{width:33%;background:0 0;border-color:transparent;box-shadow:none;color:#fff}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{color:#fff;font-weight:600}.cmb2-element .ui-datepicker thead th,.cmb2-element.ui-datepicker thead th{font-weight:400}.cmb2-element .ui-datepicker th,.cmb2-element.ui-datepicker th{padding:10px}.cmb2-element .ui-datepicker td,.cmb2-element.ui-datepicker td{padding:0;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-other-month,.cmb2-element.ui-datepicker td.ui-datepicker-other-month{border:transparent}.cmb2-element .ui-datepicker td.ui-datepicker-week-end,.cmb2-element.ui-datepicker td.ui-datepicker-week-end{background-color:#f4f4f4;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today{-webkit-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);-moz-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1)}.cmb2-element .ui-datepicker td.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-today{background-color:#f0f0c0}.cmb2-element .ui-datepicker td.ui-datepicker-current-day,.cmb2-element.ui-datepicker td.ui-datepicker-current-day{background:#bd8}.cmb2-element .ui-datepicker td .ui-state-default,.cmb2-element.ui-datepicker td .ui-state-default{background:0 0;border:none;text-align:center;text-decoration:none;width:auto;display:block;padding:5px 10px;font-weight:400;color:#444}.cmb2-element .ui-datepicker td.ui-state-disabled .ui-state-default,.cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default{opacity:.5}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{background:#32373c}.cmb2-element .ui-datepicker td .ui-state-active,.cmb2-element .ui-datepicker td .ui-state-hover,.cmb2-element.ui-datepicker td .ui-state-active,.cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.cmb2-element .ui-datepicker .ui-timepicker-div,.cmb2-element.ui-datepicker .ui-timepicker-div{font-size:14px}.cmb2-element .ui-datepicker .ui-timepicker-div dl,.cmb2-element.ui-datepicker .ui-timepicker-div dl{text-align:right;padding:0 .6em}.cmb2-element .ui-datepicker .ui-timepicker-div dl dt,.cmb2-element.ui-datepicker .ui-timepicker-div dl dt{float:right;clear:right;padding:0 5px 0 0}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd{margin:0 40% 10px 10px}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd select,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd select{width:100%}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane{padding:.6em;text-align:right}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary{padding:0 10px 1px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;margin:0 .4em .4em .6em}.admin-color-fresh .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.admin-color-fresh .cmb2-element .ui-datepicker thead,.admin-color-fresh .cmb2-element.ui-datepicker thead{background:#32373c}.admin-color-fresh .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header{background:#52accc}.admin-color-blue .cmb2-element .ui-datepicker thead,.admin-color-blue .cmb2-element.ui-datepicker thead{background:#4796b3}.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover{background:#096484;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-coffee .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header{background:#59524c}.admin-color-coffee .cmb2-element .ui-datepicker thead,.admin-color-coffee .cmb2-element.ui-datepicker thead{background:#46403c}.admin-color-coffee .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover{background:#c7a589;color:#fff}.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header{background:#523f6d}.admin-color-ectoplasm .cmb2-element .ui-datepicker thead,.admin-color-ectoplasm .cmb2-element.ui-datepicker thead{background:#413256}.admin-color-ectoplasm .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover{background:#a3b745;color:#fff}.admin-color-midnight .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header{background:#363b3f}.admin-color-midnight .cmb2-element .ui-datepicker thead,.admin-color-midnight .cmb2-element.ui-datepicker thead{background:#26292c}.admin-color-midnight .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover{background:#e14d43;color:#fff}.admin-color-ocean .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header{background:#738e96}.admin-color-ocean .cmb2-element .ui-datepicker thead,.admin-color-ocean .cmb2-element.ui-datepicker thead{background:#627c83}.admin-color-ocean .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover{background:#9ebaa0;color:#fff}.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header{background:#cf4944}.admin-color-sunrise .cmb2-element .ui-datepicker th,.admin-color-sunrise .cmb2-element.ui-datepicker th{border-color:#be3631;background:#be3631}.admin-color-sunrise .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover{background:#dd823b;color:#fff}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element.ui-datepicker .ui-widget-header{background:#e5e5e5}.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-year,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-year{color:#555}.admin-color-light .cmb2-element .ui-datepicker thead,.admin-color-light .cmb2-element.ui-datepicker thead{background:#888}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-default,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-default{color:#555}.admin-color-light .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover{background:#ccc}.admin-color-light .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header{background:#56b274}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker thead,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead{background:#36533f}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover{background:#446950;color:#fff}.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header{background:#4ca26a}.admin-color-bbp-mint .cmb2-element .ui-datepicker thead,.admin-color-bbp-mint .cmb2-element.ui-datepicker thead{background:#4f6d59}.admin-color-bbp-mint .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover{background:#5fb37c;color:#fff}.closed .inside{display:none}.cmb-repeatable-grouping{position:relative}.cmb-repeatable-grouping .cmb-group-title{margin-right:-1em;margin-left:-1em;min-height:1.5em}.cmb-repeatable-grouping h3{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.cmb-repeatable-group.repeatable .cmb-group-title{padding-right:2.2em}.cmb-repeatable-group.non-repeatable .cmb-group-title{padding-right:12px}.cmb-type-group .cmb-row .cmbhandle{left:0;position:absolute} -
bim-ba/trunk/lib/cmb2/css/cmb2-front.css
r1608679 r1610879 377 377 clear: none; 378 378 display: inline-block; 379 vertical-align: middle;379 float: left; 380 380 margin-right: 10px; 381 381 width: auto; … … 384 384 .cmb2-media-status .img-status img { 385 385 max-width: 350px; 386 height: auto; 387 } 388 /* line 360, sass/partials/_main_wrap.scss */ 386 } 387 /* line 359, sass/partials/_main_wrap.scss */ 389 388 .cmb2-media-status .img-status img, 390 389 .cmb2-media-status .embed-status { … … 396 395 padding: 5px; 397 396 } 398 /* line 3 70, sass/partials/_main_wrap.scss */397 /* line 369, sass/partials/_main_wrap.scss */ 399 398 .cmb2-media-status .embed-status { 400 399 float: left; 401 400 max-width: 800px; 402 401 } 403 /* line 37 5, sass/partials/_main_wrap.scss */402 /* line 374, sass/partials/_main_wrap.scss */ 404 403 .cmb2-media-status .img-status, .cmb2-media-status .embed-status { 405 404 position: relative; 406 405 } 407 /* line 37 8, sass/partials/_main_wrap.scss */406 /* line 377, sass/partials/_main_wrap.scss */ 408 407 .cmb2-media-status .img-status .cmb2-remove-file-button, .cmb2-media-status .embed-status .cmb2-remove-file-button { 409 408 background: url(../images/ico-delete.png); … … 415 414 width: 16px; 416 415 } 417 /* line 39 2, sass/partials/_main_wrap.scss */416 /* line 391, sass/partials/_main_wrap.scss */ 418 417 .cmb2-media-status .img-status .cmb2-remove-file-button { 419 418 top: 10px; 420 419 } 421 /* line 39 7, sass/partials/_main_wrap.scss */420 /* line 396, sass/partials/_main_wrap.scss */ 422 421 .cmb2-media-status .img-status img, .cmb2-media-status .file-status > span { 423 422 cursor: pointer; 424 423 } 425 424 426 /* line 40 3, sass/partials/_main_wrap.scss */425 /* line 402, sass/partials/_main_wrap.scss */ 427 426 .cmb-type-file-list .cmb2-media-status .img-status { 428 427 clear: none; 429 vertical-align: middle; 428 float: left; 429 margin-right: 10px; 430 430 width: auto; 431 margin-right: 10px; 432 margin-bottom: 10px; 433 margin-top: 0; 434 } 435 436 /* line 412, sass/partials/_main_wrap.scss */ 431 } 432 433 /* line 409, sass/partials/_main_wrap.scss */ 437 434 .cmb-attach-list li { 438 435 clear: both; 439 436 display: inline-block; 437 margin-bottom: 25px; 440 438 width: 100%; 441 margin-top: 5px; 442 margin-bottom: 10px; 443 } 444 /* line 419, sass/partials/_main_wrap.scss */ 439 } 440 /* line 415, sass/partials/_main_wrap.scss */ 445 441 .cmb-attach-list li img { 446 442 cursor: move; … … 449 445 } 450 446 447 /* line 422, sass/partials/_main_wrap.scss */ 448 .cmb2-remove-wrapper { 449 margin: 0; 450 } 451 451 452 /* line 426, sass/partials/_main_wrap.scss */ 452 .cmb2-remove-wrapper {453 margin: 0;454 }455 456 /* line 430, sass/partials/_main_wrap.scss */457 453 .child-cmb2 .cmb-th { 458 454 text-align: left; … … 460 456 461 457 @media (max-width: 450px) { 462 /* line 43 5, sass/partials/_main_wrap.scss */458 /* line 431, sass/partials/_main_wrap.scss */ 463 459 .cmb-th, 464 460 .cmb-td, … … 485 481 486 482 /* line 16, sass/partials/_post_metaboxes.scss */ 487 . cmb2-postbox.cmb2-wrap, .cmb-type-group .cmb2-wrap {483 .postbox-container .cmb2-wrap, .cmb-type-group .cmb2-wrap { 488 484 margin: 0; 489 485 } 490 486 /* line 19, sass/partials/_post_metaboxes.scss */ 491 . cmb2-postbox.cmb2-wrap > .cmb-field-list > .cmb-row, .cmb-type-group .cmb2-wrap > .cmb-field-list > .cmb-row {487 .postbox-container .cmb2-wrap > .cmb-field-list > .cmb-row, .cmb-type-group .cmb2-wrap > .cmb-field-list > .cmb-row { 492 488 padding: 1.8em 0; 493 489 } 494 490 /* line 25, sass/partials/_post_metaboxes.scss */ 495 . cmb2-postbox.cmb2-wrap input[type=text].cmb2-oembed, .cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed {491 .postbox-container .cmb2-wrap input[type=text].cmb2-oembed, .cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed { 496 492 width: 100%; 497 493 } 498 494 /* line 31, sass/partials/_post_metaboxes.scss */ 499 . cmb2-postbox.cmb-row, .cmb-type-group .cmb-row {495 .postbox-container .cmb-row, .cmb-type-group .cmb-row { 500 496 padding: 0 0 1.8em; 501 497 margin: 0 0 0.8em; 502 498 } 503 499 /* line 35, sass/partials/_post_metaboxes.scss */ 504 . cmb2-postbox.cmb-row .cmbhandle, .cmb-type-group .cmb-row .cmbhandle {500 .postbox-container .cmb-row .cmbhandle, .cmb-type-group .cmb-row .cmbhandle { 505 501 right: -1em; 506 502 position: relative; 507 503 } 508 504 /* line 41, sass/partials/_post_metaboxes.scss */ 509 . cmb2-postbox.cmb-repeatable-grouping, .cmb-type-group .cmb-repeatable-grouping {505 .postbox-container .cmb-repeatable-grouping, .cmb-type-group .cmb-repeatable-grouping { 510 506 padding: 0 1em; 511 507 max-width: 100%; … … 513 509 } 514 510 /* line 47, sass/partials/_post_metaboxes.scss */ 515 . cmb2-postbox.cmb-repeatable-group > .cmb-row, .cmb-type-group .cmb-repeatable-group > .cmb-row {511 .postbox-container .cmb-repeatable-group > .cmb-row, .cmb-type-group .cmb-repeatable-group > .cmb-row { 516 512 padding-bottom: 0; 517 513 } 518 514 /* line 51, sass/partials/_post_metaboxes.scss */ 519 . cmb2-postbox.cmb-th, .cmb-type-group .cmb-th {515 .postbox-container .cmb-th, .cmb-type-group .cmb-th { 520 516 width: 18%; 521 517 padding: 0 2% 0 0; 522 518 } 523 519 /* line 57, sass/partials/_post_metaboxes.scss */ 524 . cmb2-postbox.cmb-td, .cmb-type-group .cmb-td {520 .postbox-container .cmb-td, .cmb-type-group .cmb-td { 525 521 margin-bottom: 0; 526 522 padding: 0; … … 528 524 } 529 525 /* line 63, sass/partials/_post_metaboxes.scss */ 530 . cmb2-postbox.cmb-repeat-row .cmb-td, .cmb-type-group .cmb-repeat-row .cmb-td {526 .postbox-container .cmb-repeat-row .cmb-td, .cmb-type-group .cmb-repeat-row .cmb-td { 531 527 padding-bottom: 1.8em; 532 528 } 533 529 /* line 67, sass/partials/_post_metaboxes.scss */ 534 . cmb2-postbox.cmb-th + .cmb-td, .cmb-type-group .cmb-th + .cmb-td {530 .postbox-container .cmb-th + .cmb-td, .cmb-type-group .cmb-th + .cmb-td { 535 531 width: 80%; 536 532 float: right; 537 533 } 538 534 /* line 72, sass/partials/_post_metaboxes.scss */ 539 . cmb2-postbox.cmb-row:not(:last-of-type),540 . cmb2-postbox.cmb-repeatable-group:not(:last-of-type), .cmb-type-group .cmb-row:not(:last-of-type),535 .postbox-container .cmb-row:not(:last-of-type), 536 .postbox-container .cmb-repeatable-group:not(:last-of-type), .cmb-type-group .cmb-row:not(:last-of-type), 541 537 .cmb-type-group .cmb-repeatable-group:not(:last-of-type) { 542 538 border-bottom: 1px solid #e9e9e9; … … 544 540 @media (max-width: 450px) { 545 541 /* line 72, sass/partials/_post_metaboxes.scss */ 546 . cmb2-postbox.cmb-row:not(:last-of-type),547 . cmb2-postbox.cmb-repeatable-group:not(:last-of-type), .cmb-type-group .cmb-row:not(:last-of-type),542 .postbox-container .cmb-row:not(:last-of-type), 543 .postbox-container .cmb-repeatable-group:not(:last-of-type), .cmb-type-group .cmb-row:not(:last-of-type), 548 544 .cmb-type-group .cmb-repeatable-group:not(:last-of-type) { 549 545 border-bottom: 0; … … 551 547 } 552 548 /* line 81, sass/partials/_post_metaboxes.scss */ 553 . cmb2-postbox.cmb-repeat-group-field,554 . cmb2-postbox.cmb-remove-field-row, .cmb-type-group .cmb-repeat-group-field,549 .postbox-container .cmb-repeat-group-field, 550 .postbox-container .cmb-remove-field-row, .cmb-type-group .cmb-repeat-group-field, 555 551 .cmb-type-group .cmb-remove-field-row { 556 552 padding-top: 1.8em; 557 553 } 558 554 /* line 88, sass/partials/_post_metaboxes.scss */ 559 . cmb2-postbox .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody {555 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody { 560 556 display: table; 561 557 width: 100%; 562 558 } 563 559 /* line 92, sass/partials/_post_metaboxes.scss */ 564 . cmb2-postbox .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text {560 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text { 565 561 width: 100%; 566 562 } 567 563 /* line 96, sass/partials/_post_metaboxes.scss */ 568 . cmb2-postbox .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row) {564 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row) { 569 565 display: table-row; 570 566 } 571 567 /* line 100, sass/partials/_post_metaboxes.scss */ 572 . cmb2-postbox .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td {568 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td { 573 569 display: table-cell; 574 570 float: none; … … 576 572 } 577 573 /* line 106, sass/partials/_post_metaboxes.scss */ 578 . cmb2-postbox .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td {574 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td { 579 575 padding-top: 1.8em; 580 576 } 581 577 /* line 110, sass/partials/_post_metaboxes.scss */ 582 . cmb2-postbox .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row {578 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row { 583 579 padding-right: 0; 584 580 } 585 581 586 /*--------------------------------------------------------------587 Context Metaboxes588 --------------------------------------------------------------*/589 /* Metabox collapse arrow indicators */590 /* line 9, sass/partials/_context_metaboxes.scss */591 .js .cmb2-postbox.context-box .toggle-indicator:before {592 content: "\f142";593 display: inline-block;594 font: normal 20px/1 dashicons;595 speak: none;596 -webkit-font-smoothing: antialiased;597 -moz-osx-font-smoothing: grayscale;598 text-decoration: none !important;599 }600 /* line 22, sass/partials/_context_metaboxes.scss */601 .js .cmb2-postbox.context-box.closed .toggle-indicator:before {602 content: "\f140";603 }604 605 /* line 30, sass/partials/_context_metaboxes.scss */606 .cmb2-postbox.context-box {607 margin-bottom: 10px;608 }609 /* line 34, sass/partials/_context_metaboxes.scss */610 .cmb2-postbox.context-box.context-before_permalink-box {611 margin-top: 10px;612 }613 /* line 38, sass/partials/_context_metaboxes.scss */614 .cmb2-postbox.context-box.context-after_title-box {615 margin-top: 10px;616 }617 /* line 42, sass/partials/_context_metaboxes.scss */618 .cmb2-postbox.context-box.context-after_editor-box {619 margin-top: 20px;620 margin-bottom: 0;621 }622 /* line 47, sass/partials/_context_metaboxes.scss */623 .cmb2-postbox.context-box.context-form_top-box {624 margin-top: 10px;625 }626 /* line 51, sass/partials/_context_metaboxes.scss */627 .cmb2-postbox.context-box.context-form_top-box .hndle {628 font-size: 14px;629 padding: 8px 12px;630 margin: 0;631 line-height: 1.4;632 }633 /* line 59, sass/partials/_context_metaboxes.scss */634 .cmb2-postbox.context-box .hndle {635 cursor: auto;636 }637 638 /* line 64, sass/partials/_context_metaboxes.scss */639 .cmb2-context-wrap {640 margin-top: 10px;641 }642 /* line 68, sass/partials/_context_metaboxes.scss */643 .cmb2-context-wrap.cmb2-context-wrap-form_top {644 margin-right: 300px;645 width: auto;646 }647 /* line 75, sass/partials/_context_metaboxes.scss */648 .cmb2-context-wrap.cmb2-context-wrap-no-title .cmb2-metabox {649 padding: 10px;650 }651 /* line 80, sass/partials/_context_metaboxes.scss */652 .cmb2-context-wrap .cmb-th {653 padding: 0 2% 0 0;654 width: 18%;655 }656 /* line 85, sass/partials/_context_metaboxes.scss */657 .cmb2-context-wrap .cmb-td {658 width: 80%;659 padding: 0;660 }661 /* line 90, sass/partials/_context_metaboxes.scss */662 .cmb2-context-wrap .cmb-row {663 margin-bottom: 10px;664 }665 /* line 93, sass/partials/_context_metaboxes.scss */666 .cmb2-context-wrap .cmb-row:last-of-type {667 margin-bottom: 0;668 }669 670 /* one column on the post write/edit screen */671 @media only screen and (max-width: 850px) {672 /* line 103, sass/partials/_context_metaboxes.scss */673 .cmb2-context-wrap.cmb2-context-wrap-form_top {674 margin-right: 0;675 }676 }677 582 /*-------------------------------------------------------------- 678 583 Misc. … … 701 606 } 702 607 703 /* line 2 8, sass/partials/_misc.scss */704 . cmb2-postbox .cmb-spinner, .cmb2-no-box-wrap.cmb-spinner {608 /* line 27, sass/partials/_misc.scss */ 609 .postbox .cmb-spinner { 705 610 float: left; 706 display: none;707 }708 709 /* line 33, sass/partials/_misc.scss */710 .cmb-spinner {711 display: none;712 }713 /* line 35, sass/partials/_misc.scss */714 .cmb-spinner.is-active {715 display: block;716 611 } 717 612 … … 1122 1017 color: #fff; 1123 1018 } 1124 /* line 149, sass/partials/_jquery_ui.scss */ 1125 .cmb2-element.ui-datepicker select.ui-datepicker-month option, 1126 .cmb2-element.ui-datepicker select.ui-datepicker-year option, .cmb2-element .ui-datepicker select.ui-datepicker-month option, 1127 .cmb2-element .ui-datepicker select.ui-datepicker-year option { 1128 color: #333; 1019 /* line 151, sass/partials/_jquery_ui.scss */ 1020 .cmb2-element.ui-datepicker thead, .cmb2-element .ui-datepicker thead { 1021 color: #fff; 1022 font-weight: 600; 1129 1023 } 1130 1024 /* line 154, sass/partials/_jquery_ui.scss */ 1131 .cmb2-element.ui-datepicker thead, .cmb2-element .ui-datepicker thead {1132 color: #fff;1133 font-weight: 600;1134 }1135 /* line 157, sass/partials/_jquery_ui.scss */1136 1025 .cmb2-element.ui-datepicker thead th, .cmb2-element .ui-datepicker thead th { 1137 1026 font-weight: normal; 1138 1027 } 1139 /* line 1 62, sass/partials/_jquery_ui.scss */1028 /* line 159, sass/partials/_jquery_ui.scss */ 1140 1029 .cmb2-element.ui-datepicker th, .cmb2-element .ui-datepicker th { 1141 1030 padding: 10px; 1142 1031 } 1143 /* line 16 6, sass/partials/_jquery_ui.scss */1032 /* line 163, sass/partials/_jquery_ui.scss */ 1144 1033 .cmb2-element.ui-datepicker td, .cmb2-element .ui-datepicker td { 1145 1034 padding: 0; 1146 1035 border: 1px solid #f4f4f4; 1147 1036 } 1148 /* line 1 71, sass/partials/_jquery_ui.scss */1037 /* line 168, sass/partials/_jquery_ui.scss */ 1149 1038 .cmb2-element.ui-datepicker td.ui-datepicker-other-month, .cmb2-element .ui-datepicker td.ui-datepicker-other-month { 1150 1039 border: transparent; 1151 1040 } 1152 /* line 17 5, sass/partials/_jquery_ui.scss */1041 /* line 172, sass/partials/_jquery_ui.scss */ 1153 1042 .cmb2-element.ui-datepicker td.ui-datepicker-week-end, .cmb2-element .ui-datepicker td.ui-datepicker-week-end { 1154 1043 background-color: #f4f4f4; 1155 1044 border: 1px solid #f4f4f4; 1156 1045 } 1157 /* line 17 8, sass/partials/_jquery_ui.scss */1046 /* line 175, sass/partials/_jquery_ui.scss */ 1158 1047 .cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today, .cmb2-element .ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today { 1159 1048 -webkit-box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.1); … … 1161 1050 box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.1); 1162 1051 } 1163 /* line 18 5, sass/partials/_jquery_ui.scss */1052 /* line 182, sass/partials/_jquery_ui.scss */ 1164 1053 .cmb2-element.ui-datepicker td.ui-datepicker-today, .cmb2-element .ui-datepicker td.ui-datepicker-today { 1165 1054 background-color: #f0f0c0; 1166 1055 } 1167 /* line 18 9, sass/partials/_jquery_ui.scss */1056 /* line 186, sass/partials/_jquery_ui.scss */ 1168 1057 .cmb2-element.ui-datepicker td.ui-datepicker-current-day, .cmb2-element .ui-datepicker td.ui-datepicker-current-day { 1169 1058 background: #bbdd88; 1170 1059 } 1171 /* line 19 3, sass/partials/_jquery_ui.scss */1060 /* line 190, sass/partials/_jquery_ui.scss */ 1172 1061 .cmb2-element.ui-datepicker td .ui-state-default, .cmb2-element .ui-datepicker td .ui-state-default { 1173 1062 background: transparent; … … 1181 1070 color: #444; 1182 1071 } 1183 /* line 20 5, sass/partials/_jquery_ui.scss */1072 /* line 202, sass/partials/_jquery_ui.scss */ 1184 1073 .cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default, .cmb2-element .ui-datepicker td.ui-state-disabled .ui-state-default { 1185 1074 opacity: 0.5; 1186 1075 } 1187 /* line 2 10, sass/partials/_jquery_ui.scss */1076 /* line 207, sass/partials/_jquery_ui.scss */ 1188 1077 .cmb2-element.ui-datepicker .ui-widget-header, 1189 1078 .cmb2-element.ui-datepicker .ui-datepicker-header, .cmb2-element .ui-datepicker .ui-widget-header, … … 1191 1080 background: #00a0d2; 1192 1081 } 1193 /* line 21 5, sass/partials/_jquery_ui.scss */1082 /* line 212, sass/partials/_jquery_ui.scss */ 1194 1083 .cmb2-element.ui-datepicker thead, .cmb2-element .ui-datepicker thead { 1195 1084 background: #32373c; 1196 1085 } 1197 /* line 21 9, sass/partials/_jquery_ui.scss */1086 /* line 216, sass/partials/_jquery_ui.scss */ 1198 1087 .cmb2-element.ui-datepicker td .ui-state-hover, .cmb2-element.ui-datepicker td .ui-state-active, .cmb2-element .ui-datepicker td .ui-state-hover, .cmb2-element .ui-datepicker td .ui-state-active { 1199 1088 background: #0073aa; 1200 1089 color: #fff; 1201 1090 } 1202 /* line 22 4, sass/partials/_jquery_ui.scss */1091 /* line 221, sass/partials/_jquery_ui.scss */ 1203 1092 .cmb2-element.ui-datepicker .ui-timepicker-div, .cmb2-element .ui-datepicker .ui-timepicker-div { 1204 1093 font-size: 14px; 1205 1094 } 1206 /* line 22 6, sass/partials/_jquery_ui.scss */1095 /* line 223, sass/partials/_jquery_ui.scss */ 1207 1096 .cmb2-element.ui-datepicker .ui-timepicker-div dl, .cmb2-element .ui-datepicker .ui-timepicker-div dl { 1208 1097 text-align: left; 1209 1098 padding: 0 .6em; 1210 1099 } 1211 /* line 22 9, sass/partials/_jquery_ui.scss */1100 /* line 226, sass/partials/_jquery_ui.scss */ 1212 1101 .cmb2-element.ui-datepicker .ui-timepicker-div dl dt, .cmb2-element .ui-datepicker .ui-timepicker-div dl dt { 1213 1102 float: left; … … 1215 1104 padding: 0 0 0 5px; 1216 1105 } 1217 /* line 23 4, sass/partials/_jquery_ui.scss */1106 /* line 231, sass/partials/_jquery_ui.scss */ 1218 1107 .cmb2-element.ui-datepicker .ui-timepicker-div dl dd, .cmb2-element .ui-datepicker .ui-timepicker-div dl dd { 1219 1108 margin: 0 10px 10px 40%; 1220 1109 } 1221 /* line 23 6, sass/partials/_jquery_ui.scss */1110 /* line 233, sass/partials/_jquery_ui.scss */ 1222 1111 .cmb2-element.ui-datepicker .ui-timepicker-div dl dd select, .cmb2-element .ui-datepicker .ui-timepicker-div dl dd select { 1223 1112 width: 100%; 1224 1113 } 1225 /* line 2 42, sass/partials/_jquery_ui.scss */1114 /* line 239, sass/partials/_jquery_ui.scss */ 1226 1115 .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane { 1227 1116 padding: .6em; 1228 1117 text-align: left; 1229 1118 } 1230 /* line 24 6, sass/partials/_jquery_ui.scss */1119 /* line 243, sass/partials/_jquery_ui.scss */ 1231 1120 .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-primary, .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-secondary, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-primary, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-secondary { 1232 1121 padding: 0 10px 1px; … … 1237 1126 } 1238 1127 1239 /* line 2 60, sass/partials/_jquery_ui.scss */1128 /* line 257, sass/partials/_jquery_ui.scss */ 1240 1129 .admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header, 1241 1130 .admin-color-fresh .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-fresh .cmb2-element .ui-datepicker .ui-widget-header, … … 1243 1132 background: #00a0d2; 1244 1133 } 1245 /* line 26 5, sass/partials/_jquery_ui.scss */1134 /* line 262, sass/partials/_jquery_ui.scss */ 1246 1135 .admin-color-fresh .cmb2-element.ui-datepicker thead, .admin-color-fresh .cmb2-element .ui-datepicker thead { 1247 1136 background: #32373c; 1248 1137 } 1249 /* line 26 9, sass/partials/_jquery_ui.scss */1138 /* line 266, sass/partials/_jquery_ui.scss */ 1250 1139 .admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-fresh .cmb2-element .ui-datepicker td .ui-state-hover { 1251 1140 background: #0073aa; … … 1253 1142 } 1254 1143 1255 /* line 27 7, sass/partials/_jquery_ui.scss */1144 /* line 274, sass/partials/_jquery_ui.scss */ 1256 1145 .admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header, 1257 1146 .admin-color-blue .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-blue .cmb2-element .ui-datepicker .ui-widget-header, … … 1259 1148 background: #52accc; 1260 1149 } 1261 /* line 2 82, sass/partials/_jquery_ui.scss */1150 /* line 279, sass/partials/_jquery_ui.scss */ 1262 1151 .admin-color-blue .cmb2-element.ui-datepicker thead, .admin-color-blue .cmb2-element .ui-datepicker thead { 1263 1152 background: #4796b3; 1264 1153 } 1265 /* line 2 91, sass/partials/_jquery_ui.scss */1154 /* line 288, sass/partials/_jquery_ui.scss */ 1266 1155 .admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-blue .cmb2-element.ui-datepicker td .ui-state-active, .admin-color-blue .cmb2-element .ui-datepicker td .ui-state-hover, .admin-color-blue .cmb2-element .ui-datepicker td .ui-state-active { 1267 1156 background: #096484; 1268 1157 color: #fff; 1269 1158 } 1270 /* line 29 6, sass/partials/_jquery_ui.scss */1159 /* line 293, sass/partials/_jquery_ui.scss */ 1271 1160 .admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today, .admin-color-blue .cmb2-element .ui-datepicker td.ui-datepicker-today { 1272 1161 background: #eee; 1273 1162 } 1274 1163 1275 /* line 30 5, sass/partials/_jquery_ui.scss */1164 /* line 302, sass/partials/_jquery_ui.scss */ 1276 1165 .admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header, 1277 1166 .admin-color-coffee .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-coffee .cmb2-element .ui-datepicker .ui-widget-header, … … 1279 1168 background: #59524c; 1280 1169 } 1281 /* line 3 10, sass/partials/_jquery_ui.scss */1170 /* line 307, sass/partials/_jquery_ui.scss */ 1282 1171 .admin-color-coffee .cmb2-element.ui-datepicker thead, .admin-color-coffee .cmb2-element .ui-datepicker thead { 1283 1172 background: #46403c; 1284 1173 } 1285 /* line 31 4, sass/partials/_jquery_ui.scss */1174 /* line 311, sass/partials/_jquery_ui.scss */ 1286 1175 .admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-coffee .cmb2-element .ui-datepicker td .ui-state-hover { 1287 1176 background: #c7a589; … … 1289 1178 } 1290 1179 1291 /* line 3 22, sass/partials/_jquery_ui.scss */1180 /* line 319, sass/partials/_jquery_ui.scss */ 1292 1181 .admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header, 1293 1182 .admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-widget-header, … … 1295 1184 background: #523f6d; 1296 1185 } 1297 /* line 32 7, sass/partials/_jquery_ui.scss */1186 /* line 324, sass/partials/_jquery_ui.scss */ 1298 1187 .admin-color-ectoplasm .cmb2-element.ui-datepicker thead, .admin-color-ectoplasm .cmb2-element .ui-datepicker thead { 1299 1188 background: #413256; 1300 1189 } 1301 /* line 3 31, sass/partials/_jquery_ui.scss */1190 /* line 328, sass/partials/_jquery_ui.scss */ 1302 1191 .admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-ectoplasm .cmb2-element .ui-datepicker td .ui-state-hover { 1303 1192 background: #a3b745; … … 1305 1194 } 1306 1195 1307 /* line 33 9, sass/partials/_jquery_ui.scss */1196 /* line 336, sass/partials/_jquery_ui.scss */ 1308 1197 .admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header, 1309 1198 .admin-color-midnight .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-midnight .cmb2-element .ui-datepicker .ui-widget-header, … … 1311 1200 background: #363b3f; 1312 1201 } 1313 /* line 34 4, sass/partials/_jquery_ui.scss */1202 /* line 341, sass/partials/_jquery_ui.scss */ 1314 1203 .admin-color-midnight .cmb2-element.ui-datepicker thead, .admin-color-midnight .cmb2-element .ui-datepicker thead { 1315 1204 background: #26292c; 1316 1205 } 1317 /* line 34 8, sass/partials/_jquery_ui.scss */1206 /* line 345, sass/partials/_jquery_ui.scss */ 1318 1207 .admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-midnight .cmb2-element .ui-datepicker td .ui-state-hover { 1319 1208 background: #e14d43; … … 1321 1210 } 1322 1211 1323 /* line 35 6, sass/partials/_jquery_ui.scss */1212 /* line 353, sass/partials/_jquery_ui.scss */ 1324 1213 .admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header, 1325 1214 .admin-color-ocean .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-ocean .cmb2-element .ui-datepicker .ui-widget-header, … … 1327 1216 background: #738e96; 1328 1217 } 1329 /* line 3 61, sass/partials/_jquery_ui.scss */1218 /* line 358, sass/partials/_jquery_ui.scss */ 1330 1219 .admin-color-ocean .cmb2-element.ui-datepicker thead, .admin-color-ocean .cmb2-element .ui-datepicker thead { 1331 1220 background: #627c83; 1332 1221 } 1333 /* line 36 5, sass/partials/_jquery_ui.scss */1222 /* line 362, sass/partials/_jquery_ui.scss */ 1334 1223 .admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-ocean .cmb2-element .ui-datepicker td .ui-state-hover { 1335 1224 background: #9ebaa0; … … 1337 1226 } 1338 1227 1339 /* line 37 3, sass/partials/_jquery_ui.scss */1228 /* line 370, sass/partials/_jquery_ui.scss */ 1340 1229 .admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header, 1341 1230 .admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header, … … 1345 1234 background: #cf4944; 1346 1235 } 1347 /* line 37 9, sass/partials/_jquery_ui.scss */1236 /* line 376, sass/partials/_jquery_ui.scss */ 1348 1237 .admin-color-sunrise .cmb2-element.ui-datepicker th, .admin-color-sunrise .cmb2-element .ui-datepicker th { 1349 1238 border-color: #be3631; 1350 1239 background: #be3631; 1351 1240 } 1352 /* line 38 4, sass/partials/_jquery_ui.scss */1241 /* line 381, sass/partials/_jquery_ui.scss */ 1353 1242 .admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-sunrise .cmb2-element .ui-datepicker td .ui-state-hover { 1354 1243 background: #dd823b; … … 1356 1245 } 1357 1246 1358 /* line 3 92, sass/partials/_jquery_ui.scss */1247 /* line 389, sass/partials/_jquery_ui.scss */ 1359 1248 .admin-color-light .cmb2-element.ui-datepicker .ui-widget-header, 1360 1249 .admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-light .cmb2-element .ui-datepicker .ui-widget-header, … … 1362 1251 background: #e5e5e5; 1363 1252 } 1364 /* line 39 7, sass/partials/_jquery_ui.scss */1253 /* line 394, sass/partials/_jquery_ui.scss */ 1365 1254 .admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month, 1366 1255 .admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-year, .admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-month, … … 1368 1257 color: #555; 1369 1258 } 1370 /* line 402, sass/partials/_jquery_ui.scss */1259 /* line 399, sass/partials/_jquery_ui.scss */ 1371 1260 .admin-color-light .cmb2-element.ui-datepicker thead, .admin-color-light .cmb2-element .ui-datepicker thead { 1372 1261 background: #888; 1373 1262 } 1374 /* line 40 6, sass/partials/_jquery_ui.scss */1263 /* line 403, sass/partials/_jquery_ui.scss */ 1375 1264 .admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title, 1376 1265 .admin-color-light .cmb2-element.ui-datepicker td .ui-state-default, … … 1382 1271 color: #555; 1383 1272 } 1384 /* line 41 4, sass/partials/_jquery_ui.scss */1273 /* line 411, sass/partials/_jquery_ui.scss */ 1385 1274 .admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-light .cmb2-element.ui-datepicker td .ui-state-active, .admin-color-light .cmb2-element .ui-datepicker td .ui-state-hover, .admin-color-light .cmb2-element .ui-datepicker td .ui-state-active { 1386 1275 background: #ccc; 1387 1276 } 1388 /* line 41 8, sass/partials/_jquery_ui.scss */1277 /* line 415, sass/partials/_jquery_ui.scss */ 1389 1278 .admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today, .admin-color-light .cmb2-element .ui-datepicker td.ui-datepicker-today { 1390 1279 background: #eee; 1391 1280 } 1392 1281 1393 /* line 42 6, sass/partials/_jquery_ui.scss */1282 /* line 423, sass/partials/_jquery_ui.scss */ 1394 1283 .admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header, 1395 1284 .admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-widget-header, … … 1397 1286 background: #56b274; 1398 1287 } 1399 /* line 4 31, sass/partials/_jquery_ui.scss */1288 /* line 428, sass/partials/_jquery_ui.scss */ 1400 1289 .admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker thead { 1401 1290 background: #36533f; 1402 1291 } 1403 /* line 43 5, sass/partials/_jquery_ui.scss */1292 /* line 432, sass/partials/_jquery_ui.scss */ 1404 1293 .admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker td .ui-state-hover { 1405 1294 background: #446950; … … 1407 1296 } 1408 1297 1409 /* line 44 3, sass/partials/_jquery_ui.scss */1298 /* line 440, sass/partials/_jquery_ui.scss */ 1410 1299 .admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header, 1411 1300 .admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-widget-header, … … 1413 1302 background: #4ca26a; 1414 1303 } 1415 /* line 44 8, sass/partials/_jquery_ui.scss */1304 /* line 445, sass/partials/_jquery_ui.scss */ 1416 1305 .admin-color-bbp-mint .cmb2-element.ui-datepicker thead, .admin-color-bbp-mint .cmb2-element .ui-datepicker thead { 1417 1306 background: #4f6d59; 1418 1307 } 1419 /* line 4 52, sass/partials/_jquery_ui.scss */1308 /* line 449, sass/partials/_jquery_ui.scss */ 1420 1309 .admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-bbp-mint .cmb2-element .ui-datepicker td .ui-state-hover { 1421 1310 background: #5fb37c; … … 1464 1353 } 1465 1354 1466 /* line 40, sass/partials/_front.scss */1467 .cmb-spinner {1468 background: url(/wp-admin/images/spinner.gif) no-repeat;1469 -webkit-background-size: 20px 20px;1470 background-size: 20px 20px;1471 display: none;1472 float: right;1473 vertical-align: middle;1474 opacity: 0.7;1475 filter: alpha(opacity=70);1476 width: 20px;1477 height: 20px;1478 margin: 4px 10px 0;1479 }1480 1481 1355 /*# sourceMappingURL=cmb2-front.css.map */ -
bim-ba/trunk/lib/cmb2/css/cmb2-front.min.css
r1608679 r1610879 1 .cmb2-wrap{margin:0}.cmb2-wrap input,.cmb2-wrap textarea{font-size:14px;max-width:100%;padding:5px}.cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb2-wrap textarea{width:500px}.cmb2-wrap textarea.cmb2-textarea-code{font-family:"Courier 10 Pitch",Courier,monospace;line-height:16px}.cmb2-wrap input.cmb2-text-small,.cmb2-wrap input.cmb2-timepicker{width:100px}.cmb2-wrap input.cmb2-text-money{width:90px}.cmb2-wrap input.cmb2-text-medium{width:230px}.cmb2-wrap input.cmb2-upload-file{width:65%}.cmb2-wrap input.ed_button{padding:2px 4px}.cmb2-wrap input:not([type=hidden])+.button,.cmb2-wrap input:not([type=hidden])+input,.cmb2-wrap input:not([type=hidden])+select{margin-left:20px}.cmb2-wrap ul{margin:0}.cmb2-wrap li{font-size:14px;line-height:16px;margin:1px 0 5px}.cmb2-wrap select{font-size:14px;margin-top:3px}.cmb2-wrap input:focus,.cmb2-wrap textarea:focus{background:#fffff8}.cmb2-wrap input[type=checkbox],.cmb2-wrap input[type=radio]{margin:0 5px 0 0;padding:0}.cmb2-wrap .button,.cmb2-wrap button{white-space:nowrap}.cmb2-wrap .mceLayout{border:1px solid #e9e9e9!important}.cmb2-wrap .mceIframeContainer{background:#fff}.cmb2-wrap .meta_mce{width:97%}.cmb2-wrap .meta_mce textarea{width:100%}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-input-wrap{vertical-align:middle}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-container{margin:0 10px 0 0}.cmb2-wrap .cmb-row{margin:0}.cmb2-wrap .cmb-row:after{content:'';clear:both;display:block;width:100%}.cmb2-wrap .cmb-row.cmb-repeat-row{padding:1.8em 0 0}.cmb2-wrap .cmb-row.cmb-repeat-row:first-of-type{padding:0}.cmb2-wrap .cmb-row.cmb-repeat .cmb2-metabox-description{padding-top:0;padding-bottom:1.8em}.cmb2-metabox{clear:both;margin:0}.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-th,.cmb2-metabox>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox>.cmb-row:first-of-type>.cmb-th{border:0}.cmb2-metabox>.cmb-row .cmb-repeat-table .cmb-row>.cmb-td{padding-right:20px;box-sizing:border-box;float:left}.cmb-add-row{margin:1.8em 0 0}.cmb-nested .cmb-td,.cmb-repeatable-group .cmb-th,.cmb-repeatable-group:first-of-type{border:0}.cmb-repeatable-group:last-of-type,.cmb-row:last-of-type,.cmb2-wrap .cmb-row:last-of-type{border-bottom:0}.cmb-repeatable-grouping{border:1px solid #e9e9e9;padding:0 1em;max-width:1000px}.cmb-repeatable-grouping.cmb-row{margin:0 0 .8em}.cmb-th{color:#222;float:left;font-weight:600;line-height:1.3;padding:20px 10px 20px 0;vertical-align:top;width:200px}@media (max-width:450px){.cmb-th{font-size:1.2em;display:block;float:none;padding-bottom:1em;text-align:left;width:100%}.cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}}.cmb-td{line-height:1.3;max-width:100%;padding:15px 10px;vertical-align:middle}.cmb-type-title .cmb-td{padding:0}.cmb-th label{display:block;padding:5px 0}.cmb-th+.cmb-td{float:left}.cmb-td .cmb-td{padding-bottom:1em}.cmb-remove-row{text-align:right}.empty-row.hidden{display:none}.cmb-repeatable-group .cmb-th{padding:5px}.cmb-repeatable-group .cmb-group-title{background-color:#e9e9e9;padding:8px 12px 8px 2.2em;margin:0 -1em;min-height:1.5em;font-size:14px;line-height:1.4}.cmb-repeatable-group .cmb-group-title h4{border:0;margin:0;font-size:1.2em;font-weight:500;padding:.5em .75em}.cmb-repeatable-group .cmb-group-title .cmb-th{display:block;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th{font-size:1.2em;display:block;float:none;padding-bottom:1em;text-align:left;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-repeatable-group .cmb-group-description .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}.cmb-repeatable-group .cmb-shift-rows{font-size:1em;margin-right:1em;text-decoration:none}.cmb-repeatable-group .cmb-shift-rows .dashicons{font-size:1.5em;height:1.5em;line-height:1.2em;width:1em}.cmb-repeatable-group .cmb-shift-rows .dashicons.dashicons-arrow-down-alt2{line-height:1.3em}.cmb-repeatable-group .cmb2-upload-button{float:right}p.cmb2-metabox-description{color:#aaa;font-style:italic;margin:0;padding-top:.5em}span.cmb2-metabox-description{color:#aaa;font-style:italic}.cmb2-metabox-title{margin:0 0 5px;padding:5px 0 0;font-size:14px}.cmb-inline ul{padding:4px 0 0}.cmb-inline li{display:inline-block;padding-right:18px}.cmb-type-textarea-code pre{margin:0}.cmb2-media-status .img-status{clear:none;display:inline-block; vertical-align:middle;margin-right:10px;width:auto}.cmb2-media-status .img-status img{max-width:350px;height:auto}.cmb2-media-status .embed-status,.cmb2-media-status .img-status img{background:#fff;border:1px solid #e9e9e9;border-radius:2px;-moz-border-radius:2px;margin:15px 0 0;padding:5px}.cmb2-media-status .embed-status{float:left;max-width:800px}.cmb2-media-status .embed-status,.cmb2-media-status .img-status{position:relative}.cmb2-media-status .embed-status .cmb2-remove-file-button,.cmb2-media-status .img-status .cmb2-remove-file-button{background:url(../images/ico-delete.png);height:16px;left:-5px;position:absolute;text-indent:-9999px;top:-5px;width:16px}.cmb2-media-status .img-status .cmb2-remove-file-button{top:10px}.cmb2-media-status .file-status>span,.cmb2-media-status .img-status img{cursor:pointer}.cmb-type-file-list .cmb2-media-status .img-status{clear:none;vertical-align:middle;width:auto;margin-right:10px;margin-bottom:10px;margin-top:0}.cmb-attach-list li{clear:both;display:inline-block;width:100%;margin-top:5px;margin-bottom:10px}.cmb-attach-list li img{cursor:move;float:left;margin-right:10px}.cmb2-remove-wrapper{margin:0}.child-cmb2 .cmb-th{text-align:left}@media (max-width:450px){.cmb-td,.cmb-th,.cmb-th+.cmb-td{display:block;float:none;width:100%}}#poststuff .cmb-group-title{margin-left:-1em;margin-right:-1em;min-height:1.5em}#poststuff .repeatable .cmb-group-title{padding-left:2.2em}.cmb-type-group .cmb2-wrap,.cmb2-postbox .cmb2-wrap{margin:0}.cmb-type-group .cmb2-wrap>.cmb-field-list>.cmb-row,.cmb2-postbox .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.8em 0}.cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed,.cmb2-postbox .cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb-type-group .cmb-row,.cmb2-postbox .cmb-row{padding:0 0 1.8em;margin:0 0 .8em}.cmb-type-group .cmb-row .cmbhandle,.cmb2-postbox .cmb-row .cmbhandle{right:-1em;position:relative}.cmb-type-group .cmb-repeatable-grouping,.cmb2-postbox .cmb-repeatable-grouping{padding:0 1em;max-width:100%;min-width:1px!important}.cmb-type-group .cmb-repeatable-group>.cmb-row,.cmb2-postbox .cmb-repeatable-group>.cmb-row{padding-bottom:0}.cmb-type-group .cmb-th,.cmb2-postbox .cmb-th{width:18%;padding:0 2% 0 0}.cmb-type-group .cmb-td,.cmb2-postbox .cmb-td{margin-bottom:0;padding:0;line-height:1.3}.cmb-type-group .cmb-repeat-row .cmb-td,.cmb2-postbox .cmb-repeat-row .cmb-td{padding-bottom:1.8em}.cmb-type-group .cmb-th+.cmb-td,.cmb2-postbox .cmb-th+.cmb-td{width:80%;float:right}.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.cmb2-postbox .cmb-repeatable-group:not(:last-of-type),.cmb2-postbox .cmb-row:not(:last-of-type){border-bottom:1px solid #e9e9e9}@media (max-width:450px){.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.cmb2-postbox .cmb-repeatable-group:not(:last-of-type),.cmb2-postbox .cmb-row:not(:last-of-type){border-bottom:0}}.cmb-type-group .cmb-remove-field-row,.cmb-type-group .cmb-repeat-group-field,.cmb2-postbox .cmb-remove-field-row,.cmb2-postbox .cmb-repeat-group-field{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody{display:table;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text{width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row){display:table-row}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td{display:table-cell;float:none;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row{padding-right:0}.js .cmb2-postbox.context-box .toggle-indicator:before{content:"\f142";display:inline-block;font:400 20px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.js .cmb2-postbox.context-box.closed .toggle-indicator:before{content:"\f140"}.cmb2-postbox.context-box{margin-bottom:10px}.cmb2-postbox.context-box.context-after_title-box,.cmb2-postbox.context-box.context-before_permalink-box{margin-top:10px}.cmb2-postbox.context-box.context-after_editor-box{margin-top:20px;margin-bottom:0}.cmb2-postbox.context-box.context-form_top-box{margin-top:10px}.cmb2-postbox.context-box.context-form_top-box .hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.cmb2-postbox.context-box .hndle{cursor:auto}.cmb2-context-wrap{margin-top:10px}.cmb2-context-wrap.cmb2-context-wrap-form_top{margin-right:300px;width:auto}.cmb2-context-wrap.cmb2-context-wrap-no-title .cmb2-metabox{padding:10px}.cmb2-context-wrap .cmb-th{padding:0 2% 0 0;width:18%}.cmb2-context-wrap .cmb-td{width:80%;padding:0}.cmb2-context-wrap .cmb-row{margin-bottom:10px}.cmb2-context-wrap .cmb-row:last-of-type{margin-bottom:0}@media only screen and (max-width:850px){.cmb2-context-wrap.cmb2-context-wrap-form_top{margin-right:0}}#poststuff .cmb-repeatable-group h2{margin:0}.edit-tags-php .cmb2-metabox-title,.profile-php .cmb2-metabox-title,.user-edit-php .cmb2-metabox-title{font-size:1.4em}.cmb2-options-page .cmb2-metabox-title{font-size:1.3em;margin:1em 0}.cmb2-options-page .cmb2-metabox-title+p.cmb2-metabox-description{margin-top:-1.6em;margin-bottom:.8em}.cmb2-no-box-wrap .cmb-spinner,.cmb2-postbox .cmb-spinner{float:left;display:none}.cmb-spinner.is-active{display:block}#side-sortables .cmb2-wrap>.cmb-field-list>.cmb-row,.inner-sidebar .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.4em 0}#side-sortables .cmb2-wrap input[type=text]:not(.wp-color-picker),.inner-sidebar .cmb2-wrap input[type=text]:not(.wp-color-picker){width:100%}#side-sortables .cmb2-wrap input+input:not(.wp-picker-clear),#side-sortables .cmb2-wrap input+select,.inner-sidebar .cmb2-wrap input+input:not(.wp-picker-clear),.inner-sidebar .cmb2-wrap input+select{margin-left:0;margin-top:1em;display:block}#side-sortables .cmb2-wrap input.cmb2-text-money,.inner-sidebar .cmb2-wrap input.cmb2-text-money{max-width:70%}#side-sortables .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description,.inner-sidebar .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description{display:block}#side-sortables .cmb2-wrap label,.inner-sidebar .cmb2-wrap label{display:block;font-weight:700;padding:0 0 5px}#side-sortables textarea,.inner-sidebar textarea{max-width:99%}#side-sortables .cmb-repeatable-group,.inner-sidebar .cmb-repeatable-group{border-bottom:1px solid #e9e9e9}#side-sortables .cmb-type-group>.cmb-td>.cmb-repeatable-group,.inner-sidebar .cmb-type-group>.cmb-td>.cmb-repeatable-group{border-bottom:0;margin-bottom:-1.4em}#side-sortables .cmb-td,#side-sortables .cmb-th,#side-sortables .cmb-th+.cmb-td,.inner-sidebar .cmb-td,.inner-sidebar .cmb-th,.inner-sidebar .cmb-th+.cmb-td{width:100%;display:block;float:none}#side-sortables .closed .inside,.inner-sidebar .closed .inside{display:none}#side-sortables .cmb-td .cmb-td,.inner-sidebar .cmb-td .cmb-td{padding-bottom:1em}#side-sortables .cmb-th,.inner-sidebar .cmb-th{display:block;float:none;padding-bottom:1em;text-align:left;width:100%;padding-left:0;padding-right:0}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{display:block;margin-top:0;padding-bottom:5px}#side-sortables .cmb-th label:after,.inner-sidebar .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{font-size:14px;line-height:1.4em}#side-sortables .cmb-group-description .cmb-th,.inner-sidebar .cmb-group-description .cmb-th{padding-top:0}#side-sortables .cmb-group-description .cmb2-metabox-description,#side-sortables .cmb-group-title .cmb-th,.inner-sidebar .cmb-group-description .cmb2-metabox-description,.inner-sidebar .cmb-group-title .cmb-th{padding:0}#side-sortables .cmb-repeatable-grouping+.cmb-repeatable-grouping,.inner-sidebar .cmb-repeatable-grouping+.cmb-repeatable-grouping{margin-top:1em}#side-sortables .cmb2-media-status .embed-status img,#side-sortables .cmb2-media-status .img-status img,.inner-sidebar .cmb2-media-status .embed-status img,.inner-sidebar .cmb2-media-status .img-status img{max-width:90%;height:auto}#side-sortables .cmb2-list label,.inner-sidebar .cmb2-list label{display:inline;font-weight:400}#side-sortables .cmb2-metabox-description,.inner-sidebar .cmb2-metabox-description{display:block;padding:7px 0 0}#side-sortables .cmb-type-checkbox .cmb-td label,#side-sortables .cmb-type-checkbox .cmb2-metabox-description,.inner-sidebar .cmb-type-checkbox .cmb-td label,.inner-sidebar .cmb-type-checkbox .cmb2-metabox-description{font-weight:400;display:inline}#side-sortables .cmb-row .cmb2-metabox-description,.inner-sidebar .cmb-row .cmb2-metabox-description{padding-bottom:1.8em}#side-sortables .cmb2-metabox-title,.inner-sidebar .cmb2-metabox-title{font-size:1.2em;font-style:italic}#side-sortables .cmb-remove-row,.inner-sidebar .cmb-remove-row{clear:both;padding-top:12px;padding-bottom:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td{width:auto;clear:none;float:left;padding-top:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row{float:right;margin:0}#side-sortables .cmb2-upload-button,.inner-sidebar .cmb2-upload-button{clear:both;margin-top:12px}.cmb2-metabox .cmb-type-group{max-width:1000px}.cmb2-metabox .cmbhandle{color:#aaa;float:right;width:27px;height:30px;cursor:pointer;right:-1em;position:relative}.cmb2-metabox .cmbhandle:before{content:'\f142';right:12px;font:400 20px/1 dashicons;speak:none;display:inline-block;padding:8px 10px;top:0;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.cmb2-metabox .postbox.closed .cmbhandle:before{content:'\f140'}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row{-webkit-appearance:none!important;background:none!important;border:none!important;position:absolute;left:0;top:.5em;line-height:1em;padding:2px 6px 3px;opacity:.5}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]){cursor:pointer;color:#a00;opacity:1}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]):hover{color:red}* html .cmb2-element.ui-helper-clearfix{height:1%}.cmb2-element .ui-datepicker,.cmb2-element.ui-datepicker{padding:0;margin:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:#fff;border:1px solid #dfdfdf;border-top:none;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.075);box-shadow:0 3px 6px rgba(0,0,0,.075);min-width:17em;width:auto}.cmb2-element .ui-datepicker *,.cmb2-element.ui-datepicker *{padding:0;font-family:"Open Sans",sans-serif;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.cmb2-element .ui-datepicker table,.cmb2-element.ui-datepicker table{font-size:13px;margin:0;border:none;border-collapse:collapse}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{border:none;color:#fff;font-weight:400}.cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover{background:0 0;border-color:transparent;cursor:pointer}.cmb2-element .ui-datepicker .ui-datepicker-title,.cmb2-element.ui-datepicker .ui-datepicker-title{margin:0;padding:10px 0;color:#fff;font-size:14px;line-height:14px;text-align:center}.cmb2-element .ui-datepicker .ui-datepicker-title select,.cmb2-element.ui-datepicker .ui-datepicker-title select{margin-top:-8px;margin-bottom:-8px}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-prev{position:relative;top:0;height:34px;width:34px}.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-prev{border:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover,.cmb2-element.ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover{left:0}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-next-hover,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next-hover{right:0}.cmb2-element .ui-datepicker .ui-datepicker-next span,.cmb2-element .ui-datepicker .ui-datepicker-prev span,.cmb2-element.ui-datepicker .ui-datepicker-next span,.cmb2-element.ui-datepicker .ui-datepicker-prev span{display:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev{float:left}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next{float:right}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{font:400 20px/34px dashicons;padding-left:7px;color:#fff;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:34px;height:34px}.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{content:'\f341'}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before{content:'\f345'}.cmb2-element .ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover:before{opacity:.7}.cmb2-element .ui-datepicker select.ui-datepicker-month,.cmb2-element .ui-datepicker select.ui-datepicker-year,.cmb2-element.ui-datepicker select.ui-datepicker-month,.cmb2-element.ui-datepicker select.ui-datepicker-year{width:33%;background:0 0;border-color:transparent;box-shadow:none;color:#fff}.cmb2-element .ui-datepicker select.ui-datepicker-month option,.cmb2-element .ui-datepicker select.ui-datepicker-year option,.cmb2-element.ui-datepicker select.ui-datepicker-month option,.cmb2-element.ui-datepicker select.ui-datepicker-year option{color:#333}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{color:#fff;font-weight:600}.cmb2-element .ui-datepicker thead th,.cmb2-element.ui-datepicker thead th{font-weight:400}.cmb2-element .ui-datepicker th,.cmb2-element.ui-datepicker th{padding:10px}.cmb2-element .ui-datepicker td,.cmb2-element.ui-datepicker td{padding:0;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-other-month,.cmb2-element.ui-datepicker td.ui-datepicker-other-month{border:transparent}.cmb2-element .ui-datepicker td.ui-datepicker-week-end,.cmb2-element.ui-datepicker td.ui-datepicker-week-end{background-color:#f4f4f4;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today{-webkit-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);-moz-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1)}.cmb2-element .ui-datepicker td.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-today{background-color:#f0f0c0}.cmb2-element .ui-datepicker td.ui-datepicker-current-day,.cmb2-element.ui-datepicker td.ui-datepicker-current-day{background:#bd8}.cmb2-element .ui-datepicker td .ui-state-default,.cmb2-element.ui-datepicker td .ui-state-default{background:0 0;border:none;text-align:center;text-decoration:none;width:auto;display:block;padding:5px 10px;font-weight:400;color:#444}.cmb2-element .ui-datepicker td.ui-state-disabled .ui-state-default,.cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default{opacity:.5}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{background:#32373c}.cmb2-element .ui-datepicker td .ui-state-active,.cmb2-element .ui-datepicker td .ui-state-hover,.cmb2-element.ui-datepicker td .ui-state-active,.cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.cmb2-element .ui-datepicker .ui-timepicker-div,.cmb2-element.ui-datepicker .ui-timepicker-div{font-size:14px}.cmb2-element .ui-datepicker .ui-timepicker-div dl,.cmb2-element.ui-datepicker .ui-timepicker-div dl{text-align:left;padding:0 .6em}.cmb2-element .ui-datepicker .ui-timepicker-div dl dt,.cmb2-element.ui-datepicker .ui-timepicker-div dl dt{float:left;clear:left;padding:0 0 0 5px}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd{margin:0 10px 10px 40%}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd select,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd select{width:100%}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane{padding:.6em;text-align:left}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary{padding:0 10px 1px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;margin:0 .6em .4em .4em}.admin-color-fresh .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.admin-color-fresh .cmb2-element .ui-datepicker thead,.admin-color-fresh .cmb2-element.ui-datepicker thead{background:#32373c}.admin-color-fresh .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header{background:#52accc}.admin-color-blue .cmb2-element .ui-datepicker thead,.admin-color-blue .cmb2-element.ui-datepicker thead{background:#4796b3}.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover{background:#096484;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-coffee .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header{background:#59524c}.admin-color-coffee .cmb2-element .ui-datepicker thead,.admin-color-coffee .cmb2-element.ui-datepicker thead{background:#46403c}.admin-color-coffee .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover{background:#c7a589;color:#fff}.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header{background:#523f6d}.admin-color-ectoplasm .cmb2-element .ui-datepicker thead,.admin-color-ectoplasm .cmb2-element.ui-datepicker thead{background:#413256}.admin-color-ectoplasm .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover{background:#a3b745;color:#fff}.admin-color-midnight .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header{background:#363b3f}.admin-color-midnight .cmb2-element .ui-datepicker thead,.admin-color-midnight .cmb2-element.ui-datepicker thead{background:#26292c}.admin-color-midnight .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover{background:#e14d43;color:#fff}.admin-color-ocean .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header{background:#738e96}.admin-color-ocean .cmb2-element .ui-datepicker thead,.admin-color-ocean .cmb2-element.ui-datepicker thead{background:#627c83}.admin-color-ocean .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover{background:#9ebaa0;color:#fff}.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header{background:#cf4944}.admin-color-sunrise .cmb2-element .ui-datepicker th,.admin-color-sunrise .cmb2-element.ui-datepicker th{border-color:#be3631;background:#be3631}.admin-color-sunrise .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover{background:#dd823b;color:#fff}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element.ui-datepicker .ui-widget-header{background:#e5e5e5}.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-year,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-year{color:#555}.admin-color-light .cmb2-element .ui-datepicker thead,.admin-color-light .cmb2-element.ui-datepicker thead{background:#888}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-default,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-default{color:#555}.admin-color-light .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover{background:#ccc}.admin-color-light .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header{background:#56b274}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker thead,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead{background:#36533f}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover{background:#446950;color:#fff}.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header{background:#4ca26a}.admin-color-bbp-mint .cmb2-element .ui-datepicker thead,.admin-color-bbp-mint .cmb2-element.ui-datepicker thead{background:#4f6d59}.admin-color-bbp-mint .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover{background:#5fb37c;color:#fff}.closed .inside{display:none}.cmb-repeatable-grouping{position:relative}.cmb-repeatable-grouping .cmb-group-title{margin-left:-1em;margin-right:-1em;min-height:1.5em}.cmb-repeatable-grouping h3{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.cmb-repeatable-group.repeatable .cmb-group-title{padding-left:2.2em}.cmb-repeatable-group.non-repeatable .cmb-group-title{padding-left:12px}.cmb-type-group .cmb-row .cmbhandle{right:0;position:absolute}.cmb-spinner{background:url(/wp-admin/images/spinner.gif) no-repeat;-webkit-background-size:20px 20px;background-size:20px 20px;display:none;float:right;vertical-align:middle;opacity:.7;filter:alpha(opacity=70);width:20px;height:20px;margin:4px 10px 0}1 .cmb2-wrap{margin:0}.cmb2-wrap input,.cmb2-wrap textarea{font-size:14px;max-width:100%;padding:5px}.cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb2-wrap textarea{width:500px}.cmb2-wrap textarea.cmb2-textarea-code{font-family:"Courier 10 Pitch",Courier,monospace;line-height:16px}.cmb2-wrap input.cmb2-text-small,.cmb2-wrap input.cmb2-timepicker{width:100px}.cmb2-wrap input.cmb2-text-money{width:90px}.cmb2-wrap input.cmb2-text-medium{width:230px}.cmb2-wrap input.cmb2-upload-file{width:65%}.cmb2-wrap input.ed_button{padding:2px 4px}.cmb2-wrap input:not([type=hidden])+.button,.cmb2-wrap input:not([type=hidden])+input,.cmb2-wrap input:not([type=hidden])+select{margin-left:20px}.cmb2-wrap ul{margin:0}.cmb2-wrap li{font-size:14px;line-height:16px;margin:1px 0 5px}.cmb2-wrap select{font-size:14px;margin-top:3px}.cmb2-wrap input:focus,.cmb2-wrap textarea:focus{background:#fffff8}.cmb2-wrap input[type=checkbox],.cmb2-wrap input[type=radio]{margin:0 5px 0 0;padding:0}.cmb2-wrap .button,.cmb2-wrap button{white-space:nowrap}.cmb2-wrap .mceLayout{border:1px solid #e9e9e9!important}.cmb2-wrap .mceIframeContainer{background:#fff}.cmb2-wrap .meta_mce{width:97%}.cmb2-wrap .meta_mce textarea{width:100%}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-input-wrap{vertical-align:middle}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-container{margin:0 10px 0 0}.cmb2-wrap .cmb-row{margin:0}.cmb2-wrap .cmb-row:after{content:'';clear:both;display:block;width:100%}.cmb2-wrap .cmb-row.cmb-repeat-row{padding:1.8em 0 0}.cmb2-wrap .cmb-row.cmb-repeat-row:first-of-type{padding:0}.cmb2-wrap .cmb-row.cmb-repeat .cmb2-metabox-description{padding-top:0;padding-bottom:1.8em}.cmb2-metabox{clear:both;margin:0}.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-th,.cmb2-metabox>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox>.cmb-row:first-of-type>.cmb-th{border:0}.cmb2-metabox>.cmb-row .cmb-repeat-table .cmb-row>.cmb-td{padding-right:20px;box-sizing:border-box;float:left}.cmb-add-row{margin:1.8em 0 0}.cmb-nested .cmb-td,.cmb-repeatable-group .cmb-th,.cmb-repeatable-group:first-of-type{border:0}.cmb-repeatable-group:last-of-type,.cmb-row:last-of-type,.cmb2-wrap .cmb-row:last-of-type{border-bottom:0}.cmb-repeatable-grouping{border:1px solid #e9e9e9;padding:0 1em;max-width:1000px}.cmb-repeatable-grouping.cmb-row{margin:0 0 .8em}.cmb-th{color:#222;float:left;font-weight:600;line-height:1.3;padding:20px 10px 20px 0;vertical-align:top;width:200px}@media (max-width:450px){.cmb-th{font-size:1.2em;display:block;float:none;padding-bottom:1em;text-align:left;width:100%}.cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}}.cmb-td{line-height:1.3;max-width:100%;padding:15px 10px;vertical-align:middle}.cmb-type-title .cmb-td{padding:0}.cmb-th label{display:block;padding:5px 0}.cmb-th+.cmb-td{float:left}.cmb-td .cmb-td{padding-bottom:1em}.cmb-remove-row{text-align:right}.empty-row.hidden{display:none}.cmb-repeatable-group .cmb-th{padding:5px}.cmb-repeatable-group .cmb-group-title{background-color:#e9e9e9;padding:8px 12px 8px 2.2em;margin:0 -1em;min-height:1.5em;font-size:14px;line-height:1.4}.cmb-repeatable-group .cmb-group-title h4{border:0;margin:0;font-size:1.2em;font-weight:500;padding:.5em .75em}.cmb-repeatable-group .cmb-group-title .cmb-th{display:block;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th{font-size:1.2em;display:block;float:none;padding-bottom:1em;text-align:left;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-repeatable-group .cmb-group-description .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}.cmb-repeatable-group .cmb-shift-rows{font-size:1em;margin-right:1em;text-decoration:none}.cmb-repeatable-group .cmb-shift-rows .dashicons{font-size:1.5em;height:1.5em;line-height:1.2em;width:1em}.cmb-repeatable-group .cmb-shift-rows .dashicons.dashicons-arrow-down-alt2{line-height:1.3em}.cmb-repeatable-group .cmb2-upload-button{float:right}p.cmb2-metabox-description{color:#aaa;font-style:italic;margin:0;padding-top:.5em}span.cmb2-metabox-description{color:#aaa;font-style:italic}.cmb2-metabox-title{margin:0 0 5px;padding:5px 0 0;font-size:14px}.cmb-inline ul{padding:4px 0 0}.cmb-inline li{display:inline-block;padding-right:18px}.cmb-type-textarea-code pre{margin:0}.cmb2-media-status .img-status{clear:none;display:inline-block;float:left;margin-right:10px;width:auto}.cmb2-media-status .img-status img{max-width:350px}.cmb2-media-status .embed-status,.cmb2-media-status .img-status img{background:#fff;border:1px solid #e9e9e9;border-radius:2px;-moz-border-radius:2px;margin:15px 0 0;padding:5px}.cmb2-media-status .embed-status{float:left;max-width:800px}.cmb2-media-status .embed-status,.cmb2-media-status .img-status{position:relative}.cmb2-media-status .embed-status .cmb2-remove-file-button,.cmb2-media-status .img-status .cmb2-remove-file-button{background:url(../images/ico-delete.png);height:16px;left:-5px;position:absolute;text-indent:-9999px;top:-5px;width:16px}.cmb2-media-status .img-status .cmb2-remove-file-button{top:10px}.cmb2-media-status .file-status>span,.cmb2-media-status .img-status img{cursor:pointer}.cmb-type-file-list .cmb2-media-status .img-status{clear:none;float:left;margin-right:10px;width:auto}.cmb-attach-list li{clear:both;display:inline-block;margin-bottom:25px;width:100%}.cmb-attach-list li img{cursor:move;float:left;margin-right:10px}.cmb2-remove-wrapper{margin:0}.child-cmb2 .cmb-th{text-align:left}@media (max-width:450px){.cmb-td,.cmb-th,.cmb-th+.cmb-td{display:block;float:none;width:100%}}#poststuff .cmb-group-title{margin-left:-1em;margin-right:-1em;min-height:1.5em}#poststuff .repeatable .cmb-group-title{padding-left:2.2em}.cmb-type-group .cmb2-wrap,.postbox-container .cmb2-wrap{margin:0}.cmb-type-group .cmb2-wrap>.cmb-field-list>.cmb-row,.postbox-container .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.8em 0}.cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed,.postbox-container .cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb-type-group .cmb-row,.postbox-container .cmb-row{padding:0 0 1.8em;margin:0 0 .8em}.cmb-type-group .cmb-row .cmbhandle,.postbox-container .cmb-row .cmbhandle{right:-1em;position:relative}.cmb-type-group .cmb-repeatable-grouping,.postbox-container .cmb-repeatable-grouping{padding:0 1em;max-width:100%;min-width:1px!important}.cmb-type-group .cmb-repeatable-group>.cmb-row,.postbox-container .cmb-repeatable-group>.cmb-row{padding-bottom:0}.cmb-type-group .cmb-th,.postbox-container .cmb-th{width:18%;padding:0 2% 0 0}.cmb-type-group .cmb-td,.postbox-container .cmb-td{margin-bottom:0;padding:0;line-height:1.3}.cmb-type-group .cmb-repeat-row .cmb-td,.postbox-container .cmb-repeat-row .cmb-td{padding-bottom:1.8em}.cmb-type-group .cmb-th+.cmb-td,.postbox-container .cmb-th+.cmb-td{width:80%;float:right}.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.postbox-container .cmb-repeatable-group:not(:last-of-type),.postbox-container .cmb-row:not(:last-of-type){border-bottom:1px solid #e9e9e9}@media (max-width:450px){.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.postbox-container .cmb-repeatable-group:not(:last-of-type),.postbox-container .cmb-row:not(:last-of-type){border-bottom:0}}.cmb-type-group .cmb-remove-field-row,.cmb-type-group .cmb-repeat-group-field,.postbox-container .cmb-remove-field-row,.postbox-container .cmb-repeat-group-field{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody{display:table;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text{width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row){display:table-row}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td{display:table-cell;float:none;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row{padding-right:0}#poststuff .cmb-repeatable-group h2{margin:0}.edit-tags-php .cmb2-metabox-title,.profile-php .cmb2-metabox-title,.user-edit-php .cmb2-metabox-title{font-size:1.4em}.cmb2-options-page .cmb2-metabox-title{font-size:1.3em;margin:1em 0}.cmb2-options-page .cmb2-metabox-title+p.cmb2-metabox-description{margin-top:-1.6em;margin-bottom:.8em}.postbox .cmb-spinner{float:left}#side-sortables .cmb2-wrap>.cmb-field-list>.cmb-row,.inner-sidebar .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.4em 0}#side-sortables .cmb2-wrap input[type=text]:not(.wp-color-picker),.inner-sidebar .cmb2-wrap input[type=text]:not(.wp-color-picker){width:100%}#side-sortables .cmb2-wrap input+input:not(.wp-picker-clear),#side-sortables .cmb2-wrap input+select,.inner-sidebar .cmb2-wrap input+input:not(.wp-picker-clear),.inner-sidebar .cmb2-wrap input+select{margin-left:0;margin-top:1em;display:block}#side-sortables .cmb2-wrap input.cmb2-text-money,.inner-sidebar .cmb2-wrap input.cmb2-text-money{max-width:70%}#side-sortables .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description,.inner-sidebar .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description{display:block}#side-sortables .cmb2-wrap label,.inner-sidebar .cmb2-wrap label{display:block;font-weight:700;padding:0 0 5px}#side-sortables textarea,.inner-sidebar textarea{max-width:99%}#side-sortables .cmb-repeatable-group,.inner-sidebar .cmb-repeatable-group{border-bottom:1px solid #e9e9e9}#side-sortables .cmb-type-group>.cmb-td>.cmb-repeatable-group,.inner-sidebar .cmb-type-group>.cmb-td>.cmb-repeatable-group{border-bottom:0;margin-bottom:-1.4em}#side-sortables .cmb-td,#side-sortables .cmb-th,#side-sortables .cmb-th+.cmb-td,.inner-sidebar .cmb-td,.inner-sidebar .cmb-th,.inner-sidebar .cmb-th+.cmb-td{width:100%;display:block;float:none}#side-sortables .closed .inside,.inner-sidebar .closed .inside{display:none}#side-sortables .cmb-td .cmb-td,.inner-sidebar .cmb-td .cmb-td{padding-bottom:1em}#side-sortables .cmb-th,.inner-sidebar .cmb-th{display:block;float:none;padding-bottom:1em;text-align:left;width:100%;padding-left:0;padding-right:0}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{display:block;margin-top:0;padding-bottom:5px}#side-sortables .cmb-th label:after,.inner-sidebar .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{font-size:14px;line-height:1.4em}#side-sortables .cmb-group-description .cmb-th,.inner-sidebar .cmb-group-description .cmb-th{padding-top:0}#side-sortables .cmb-group-description .cmb2-metabox-description,#side-sortables .cmb-group-title .cmb-th,.inner-sidebar .cmb-group-description .cmb2-metabox-description,.inner-sidebar .cmb-group-title .cmb-th{padding:0}#side-sortables .cmb-repeatable-grouping+.cmb-repeatable-grouping,.inner-sidebar .cmb-repeatable-grouping+.cmb-repeatable-grouping{margin-top:1em}#side-sortables .cmb2-media-status .embed-status img,#side-sortables .cmb2-media-status .img-status img,.inner-sidebar .cmb2-media-status .embed-status img,.inner-sidebar .cmb2-media-status .img-status img{max-width:90%;height:auto}#side-sortables .cmb2-list label,.inner-sidebar .cmb2-list label{display:inline;font-weight:400}#side-sortables .cmb2-metabox-description,.inner-sidebar .cmb2-metabox-description{display:block;padding:7px 0 0}#side-sortables .cmb-type-checkbox .cmb-td label,#side-sortables .cmb-type-checkbox .cmb2-metabox-description,.inner-sidebar .cmb-type-checkbox .cmb-td label,.inner-sidebar .cmb-type-checkbox .cmb2-metabox-description{font-weight:400;display:inline}#side-sortables .cmb-row .cmb2-metabox-description,.inner-sidebar .cmb-row .cmb2-metabox-description{padding-bottom:1.8em}#side-sortables .cmb2-metabox-title,.inner-sidebar .cmb2-metabox-title{font-size:1.2em;font-style:italic}#side-sortables .cmb-remove-row,.inner-sidebar .cmb-remove-row{clear:both;padding-top:12px;padding-bottom:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td{width:auto;clear:none;float:left;padding-top:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row{float:right;margin:0}#side-sortables .cmb2-upload-button,.inner-sidebar .cmb2-upload-button{clear:both;margin-top:12px}.cmb2-metabox .cmb-type-group{max-width:1000px}.cmb2-metabox .cmbhandle{color:#aaa;float:right;width:27px;height:30px;cursor:pointer;right:-1em;position:relative}.cmb2-metabox .cmbhandle:before{content:'\f142';right:12px;font:400 20px/1 dashicons;speak:none;display:inline-block;padding:8px 10px;top:0;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.cmb2-metabox .postbox.closed .cmbhandle:before{content:'\f140'}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row{-webkit-appearance:none!important;background:none!important;border:none!important;position:absolute;left:0;top:.5em;line-height:1em;padding:2px 6px 3px;opacity:.5}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]){cursor:pointer;color:#a00;opacity:1}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]):hover{color:red}* html .cmb2-element.ui-helper-clearfix{height:1%}.cmb2-element .ui-datepicker,.cmb2-element.ui-datepicker{padding:0;margin:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:#fff;border:1px solid #dfdfdf;border-top:none;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.075);box-shadow:0 3px 6px rgba(0,0,0,.075);min-width:17em;width:auto}.cmb2-element .ui-datepicker *,.cmb2-element.ui-datepicker *{padding:0;font-family:"Open Sans",sans-serif;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.cmb2-element .ui-datepicker table,.cmb2-element.ui-datepicker table{font-size:13px;margin:0;border:none;border-collapse:collapse}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{border:none;color:#fff;font-weight:400}.cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover{background:0 0;border-color:transparent;cursor:pointer}.cmb2-element .ui-datepicker .ui-datepicker-title,.cmb2-element.ui-datepicker .ui-datepicker-title{margin:0;padding:10px 0;color:#fff;font-size:14px;line-height:14px;text-align:center}.cmb2-element .ui-datepicker .ui-datepicker-title select,.cmb2-element.ui-datepicker .ui-datepicker-title select{margin-top:-8px;margin-bottom:-8px}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-prev{position:relative;top:0;height:34px;width:34px}.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-prev{border:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover,.cmb2-element.ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover{left:0}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-next-hover,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next-hover{right:0}.cmb2-element .ui-datepicker .ui-datepicker-next span,.cmb2-element .ui-datepicker .ui-datepicker-prev span,.cmb2-element.ui-datepicker .ui-datepicker-next span,.cmb2-element.ui-datepicker .ui-datepicker-prev span{display:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev{float:left}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next{float:right}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{font:400 20px/34px dashicons;padding-left:7px;color:#fff;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:34px;height:34px}.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{content:'\f341'}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before{content:'\f345'}.cmb2-element .ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover:before{opacity:.7}.cmb2-element .ui-datepicker select.ui-datepicker-month,.cmb2-element .ui-datepicker select.ui-datepicker-year,.cmb2-element.ui-datepicker select.ui-datepicker-month,.cmb2-element.ui-datepicker select.ui-datepicker-year{width:33%;background:0 0;border-color:transparent;box-shadow:none;color:#fff}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{color:#fff;font-weight:600}.cmb2-element .ui-datepicker thead th,.cmb2-element.ui-datepicker thead th{font-weight:400}.cmb2-element .ui-datepicker th,.cmb2-element.ui-datepicker th{padding:10px}.cmb2-element .ui-datepicker td,.cmb2-element.ui-datepicker td{padding:0;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-other-month,.cmb2-element.ui-datepicker td.ui-datepicker-other-month{border:transparent}.cmb2-element .ui-datepicker td.ui-datepicker-week-end,.cmb2-element.ui-datepicker td.ui-datepicker-week-end{background-color:#f4f4f4;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today{-webkit-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);-moz-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1)}.cmb2-element .ui-datepicker td.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-today{background-color:#f0f0c0}.cmb2-element .ui-datepicker td.ui-datepicker-current-day,.cmb2-element.ui-datepicker td.ui-datepicker-current-day{background:#bd8}.cmb2-element .ui-datepicker td .ui-state-default,.cmb2-element.ui-datepicker td .ui-state-default{background:0 0;border:none;text-align:center;text-decoration:none;width:auto;display:block;padding:5px 10px;font-weight:400;color:#444}.cmb2-element .ui-datepicker td.ui-state-disabled .ui-state-default,.cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default{opacity:.5}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{background:#32373c}.cmb2-element .ui-datepicker td .ui-state-active,.cmb2-element .ui-datepicker td .ui-state-hover,.cmb2-element.ui-datepicker td .ui-state-active,.cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.cmb2-element .ui-datepicker .ui-timepicker-div,.cmb2-element.ui-datepicker .ui-timepicker-div{font-size:14px}.cmb2-element .ui-datepicker .ui-timepicker-div dl,.cmb2-element.ui-datepicker .ui-timepicker-div dl{text-align:left;padding:0 .6em}.cmb2-element .ui-datepicker .ui-timepicker-div dl dt,.cmb2-element.ui-datepicker .ui-timepicker-div dl dt{float:left;clear:left;padding:0 0 0 5px}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd{margin:0 10px 10px 40%}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd select,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd select{width:100%}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane{padding:.6em;text-align:left}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary{padding:0 10px 1px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;margin:0 .6em .4em .4em}.admin-color-fresh .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.admin-color-fresh .cmb2-element .ui-datepicker thead,.admin-color-fresh .cmb2-element.ui-datepicker thead{background:#32373c}.admin-color-fresh .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header{background:#52accc}.admin-color-blue .cmb2-element .ui-datepicker thead,.admin-color-blue .cmb2-element.ui-datepicker thead{background:#4796b3}.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover{background:#096484;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-coffee .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header{background:#59524c}.admin-color-coffee .cmb2-element .ui-datepicker thead,.admin-color-coffee .cmb2-element.ui-datepicker thead{background:#46403c}.admin-color-coffee .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover{background:#c7a589;color:#fff}.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header{background:#523f6d}.admin-color-ectoplasm .cmb2-element .ui-datepicker thead,.admin-color-ectoplasm .cmb2-element.ui-datepicker thead{background:#413256}.admin-color-ectoplasm .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover{background:#a3b745;color:#fff}.admin-color-midnight .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header{background:#363b3f}.admin-color-midnight .cmb2-element .ui-datepicker thead,.admin-color-midnight .cmb2-element.ui-datepicker thead{background:#26292c}.admin-color-midnight .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover{background:#e14d43;color:#fff}.admin-color-ocean .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header{background:#738e96}.admin-color-ocean .cmb2-element .ui-datepicker thead,.admin-color-ocean .cmb2-element.ui-datepicker thead{background:#627c83}.admin-color-ocean .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover{background:#9ebaa0;color:#fff}.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header{background:#cf4944}.admin-color-sunrise .cmb2-element .ui-datepicker th,.admin-color-sunrise .cmb2-element.ui-datepicker th{border-color:#be3631;background:#be3631}.admin-color-sunrise .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover{background:#dd823b;color:#fff}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element.ui-datepicker .ui-widget-header{background:#e5e5e5}.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-year,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-year{color:#555}.admin-color-light .cmb2-element .ui-datepicker thead,.admin-color-light .cmb2-element.ui-datepicker thead{background:#888}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-default,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-default{color:#555}.admin-color-light .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover{background:#ccc}.admin-color-light .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header{background:#56b274}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker thead,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead{background:#36533f}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover{background:#446950;color:#fff}.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header{background:#4ca26a}.admin-color-bbp-mint .cmb2-element .ui-datepicker thead,.admin-color-bbp-mint .cmb2-element.ui-datepicker thead{background:#4f6d59}.admin-color-bbp-mint .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover{background:#5fb37c;color:#fff}.closed .inside{display:none}.cmb-repeatable-grouping{position:relative}.cmb-repeatable-grouping .cmb-group-title{margin-left:-1em;margin-right:-1em;min-height:1.5em}.cmb-repeatable-grouping h3{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.cmb-repeatable-group.repeatable .cmb-group-title{padding-left:2.2em}.cmb-repeatable-group.non-repeatable .cmb-group-title{padding-left:12px}.cmb-type-group .cmb-row .cmbhandle{right:0;position:absolute} -
bim-ba/trunk/lib/cmb2/css/cmb2-rtl.css
r1608679 r1610879 459 459 clear: none; 460 460 display: inline-block; 461 vertical-align: middle;461 float: right; 462 462 margin-left: 10px; 463 463 width: auto; … … 468 468 .cmb2-media-status .img-status img { 469 469 max-width: 350px; 470 height: auto; 471 } 472 473 /* line 360, sass/partials/_main_wrap.scss */ 470 } 471 472 /* line 359, sass/partials/_main_wrap.scss */ 474 473 475 474 .cmb2-media-status .img-status img, … … 483 482 } 484 483 485 /* line 3 70, sass/partials/_main_wrap.scss */484 /* line 369, sass/partials/_main_wrap.scss */ 486 485 487 486 .cmb2-media-status .embed-status { … … 490 489 } 491 490 492 /* line 37 5, sass/partials/_main_wrap.scss */491 /* line 374, sass/partials/_main_wrap.scss */ 493 492 494 493 .cmb2-media-status .img-status, … … 497 496 } 498 497 499 /* line 37 8, sass/partials/_main_wrap.scss */498 /* line 377, sass/partials/_main_wrap.scss */ 500 499 501 500 .cmb2-media-status .img-status .cmb2-remove-file-button, … … 510 509 } 511 510 512 /* line 39 2, sass/partials/_main_wrap.scss */511 /* line 391, sass/partials/_main_wrap.scss */ 513 512 514 513 .cmb2-media-status .img-status .cmb2-remove-file-button { … … 516 515 } 517 516 518 /* line 39 7, sass/partials/_main_wrap.scss */517 /* line 396, sass/partials/_main_wrap.scss */ 519 518 520 519 .cmb2-media-status .img-status img, … … 523 522 } 524 523 525 /* line 40 3, sass/partials/_main_wrap.scss */524 /* line 402, sass/partials/_main_wrap.scss */ 526 525 527 526 .cmb-type-file-list .cmb2-media-status .img-status { 528 527 clear: none; 529 vertical-align: middle; 528 float: right; 529 margin-left: 10px; 530 530 width: auto; 531 margin-left: 10px; 532 margin-bottom: 10px; 533 margin-top: 0; 534 } 535 536 /* line 412, sass/partials/_main_wrap.scss */ 531 } 532 533 /* line 409, sass/partials/_main_wrap.scss */ 537 534 538 535 .cmb-attach-list li { 539 536 clear: both; 540 537 display: inline-block; 538 margin-bottom: 25px; 541 539 width: 100%; 542 margin-top: 5px; 543 margin-bottom: 10px; 544 } 545 546 /* line 419, sass/partials/_main_wrap.scss */ 540 } 541 542 /* line 415, sass/partials/_main_wrap.scss */ 547 543 548 544 .cmb-attach-list li img { … … 552 548 } 553 549 554 /* line 42 6, sass/partials/_main_wrap.scss */550 /* line 422, sass/partials/_main_wrap.scss */ 555 551 556 552 .cmb2-remove-wrapper { … … 558 554 } 559 555 560 /* line 4 30, sass/partials/_main_wrap.scss */556 /* line 426, sass/partials/_main_wrap.scss */ 561 557 562 558 .child-cmb2 .cmb-th { … … 584 580 /* line 16, sass/partials/_post_metaboxes.scss */ 585 581 586 . cmb2-postbox.cmb2-wrap,582 .postbox-container .cmb2-wrap, 587 583 .cmb-type-group .cmb2-wrap { 588 584 margin: 0; … … 591 587 /* line 19, sass/partials/_post_metaboxes.scss */ 592 588 593 . cmb2-postbox.cmb2-wrap > .cmb-field-list > .cmb-row,589 .postbox-container .cmb2-wrap > .cmb-field-list > .cmb-row, 594 590 .cmb-type-group .cmb2-wrap > .cmb-field-list > .cmb-row { 595 591 padding: 1.8em 0; … … 598 594 /* line 25, sass/partials/_post_metaboxes.scss */ 599 595 600 . cmb2-postbox.cmb2-wrap input[type=text].cmb2-oembed,596 .postbox-container .cmb2-wrap input[type=text].cmb2-oembed, 601 597 .cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed { 602 598 width: 100%; … … 605 601 /* line 31, sass/partials/_post_metaboxes.scss */ 606 602 607 . cmb2-postbox.cmb-row,603 .postbox-container .cmb-row, 608 604 .cmb-type-group .cmb-row { 609 605 padding: 0 0 1.8em; … … 613 609 /* line 35, sass/partials/_post_metaboxes.scss */ 614 610 615 . cmb2-postbox.cmb-row .cmbhandle,611 .postbox-container .cmb-row .cmbhandle, 616 612 .cmb-type-group .cmb-row .cmbhandle { 617 613 left: -1em; … … 621 617 /* line 41, sass/partials/_post_metaboxes.scss */ 622 618 623 . cmb2-postbox.cmb-repeatable-grouping,619 .postbox-container .cmb-repeatable-grouping, 624 620 .cmb-type-group .cmb-repeatable-grouping { 625 621 padding: 0 1em; … … 630 626 /* line 47, sass/partials/_post_metaboxes.scss */ 631 627 632 . cmb2-postbox.cmb-repeatable-group > .cmb-row,628 .postbox-container .cmb-repeatable-group > .cmb-row, 633 629 .cmb-type-group .cmb-repeatable-group > .cmb-row { 634 630 padding-bottom: 0; … … 637 633 /* line 51, sass/partials/_post_metaboxes.scss */ 638 634 639 . cmb2-postbox.cmb-th,635 .postbox-container .cmb-th, 640 636 .cmb-type-group .cmb-th { 641 637 width: 18%; … … 645 641 /* line 57, sass/partials/_post_metaboxes.scss */ 646 642 647 . cmb2-postbox.cmb-td,643 .postbox-container .cmb-td, 648 644 .cmb-type-group .cmb-td { 649 645 margin-bottom: 0; … … 654 650 /* line 63, sass/partials/_post_metaboxes.scss */ 655 651 656 . cmb2-postbox.cmb-repeat-row .cmb-td,652 .postbox-container .cmb-repeat-row .cmb-td, 657 653 .cmb-type-group .cmb-repeat-row .cmb-td { 658 654 padding-bottom: 1.8em; … … 661 657 /* line 67, sass/partials/_post_metaboxes.scss */ 662 658 663 . cmb2-postbox.cmb-th + .cmb-td,659 .postbox-container .cmb-th + .cmb-td, 664 660 .cmb-type-group .cmb-th + .cmb-td { 665 661 width: 80%; … … 669 665 /* line 72, sass/partials/_post_metaboxes.scss */ 670 666 671 . cmb2-postbox.cmb-row:not(:last-of-type),672 . cmb2-postbox.cmb-repeatable-group:not(:last-of-type),667 .postbox-container .cmb-row:not(:last-of-type), 668 .postbox-container .cmb-repeatable-group:not(:last-of-type), 673 669 .cmb-type-group .cmb-row:not(:last-of-type), 674 670 .cmb-type-group .cmb-repeatable-group:not(:last-of-type) { … … 678 674 /* line 81, sass/partials/_post_metaboxes.scss */ 679 675 680 . cmb2-postbox.cmb-repeat-group-field,681 . cmb2-postbox.cmb-remove-field-row,676 .postbox-container .cmb-repeat-group-field, 677 .postbox-container .cmb-remove-field-row, 682 678 .cmb-type-group .cmb-repeat-group-field, 683 679 .cmb-type-group .cmb-remove-field-row { … … 687 683 /* line 88, sass/partials/_post_metaboxes.scss */ 688 684 689 . cmb2-postbox.cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,690 . cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,685 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, 686 .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, 691 687 .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, 692 688 .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody { … … 697 693 /* line 92, sass/partials/_post_metaboxes.scss */ 698 694 699 . cmb2-postbox.cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,700 . cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,695 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, 696 .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, 701 697 .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, 702 698 .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text { … … 706 702 /* line 96, sass/partials/_post_metaboxes.scss */ 707 703 708 . cmb2-postbox.cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),709 . cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),704 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), 705 .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), 710 706 .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), 711 707 .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row) { … … 715 711 /* line 100, sass/partials/_post_metaboxes.scss */ 716 712 717 . cmb2-postbox.cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,718 . cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,713 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, 714 .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, 719 715 .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, 720 716 .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td { … … 726 722 /* line 106, sass/partials/_post_metaboxes.scss */ 727 723 728 . cmb2-postbox.cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,729 . cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,724 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, 725 .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, 730 726 .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, 731 727 .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td { … … 735 731 /* line 110, sass/partials/_post_metaboxes.scss */ 736 732 737 . cmb2-postbox.cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,738 . cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,733 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, 734 .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, 739 735 .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, 740 736 .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row { 741 737 padding-left: 0; 742 738 } 743 744 /*--------------------------------------------------------------745 Context Metaboxes746 --------------------------------------------------------------*/747 748 /* Metabox collapse arrow indicators */749 750 /* line 9, sass/partials/_context_metaboxes.scss */751 752 .js .cmb2-postbox.context-box .toggle-indicator:before {753 content: "\f142";754 display: inline-block;755 font: normal 20px/1 dashicons;756 speak: none;757 -webkit-font-smoothing: antialiased;758 -moz-osx-font-smoothing: grayscale;759 text-decoration: none !important;760 }761 762 /* line 22, sass/partials/_context_metaboxes.scss */763 764 .js .cmb2-postbox.context-box.closed .toggle-indicator:before {765 content: "\f140";766 }767 768 /* line 30, sass/partials/_context_metaboxes.scss */769 770 .cmb2-postbox.context-box {771 margin-bottom: 10px;772 }773 774 /* line 34, sass/partials/_context_metaboxes.scss */775 776 .cmb2-postbox.context-box.context-before_permalink-box {777 margin-top: 10px;778 }779 780 /* line 38, sass/partials/_context_metaboxes.scss */781 782 .cmb2-postbox.context-box.context-after_title-box {783 margin-top: 10px;784 }785 786 /* line 42, sass/partials/_context_metaboxes.scss */787 788 .cmb2-postbox.context-box.context-after_editor-box {789 margin-top: 20px;790 margin-bottom: 0;791 }792 793 /* line 47, sass/partials/_context_metaboxes.scss */794 795 .cmb2-postbox.context-box.context-form_top-box {796 margin-top: 10px;797 }798 799 /* line 51, sass/partials/_context_metaboxes.scss */800 801 .cmb2-postbox.context-box.context-form_top-box .hndle {802 font-size: 14px;803 padding: 8px 12px;804 margin: 0;805 line-height: 1.4;806 }807 808 /* line 59, sass/partials/_context_metaboxes.scss */809 810 .cmb2-postbox.context-box .hndle {811 cursor: auto;812 }813 814 /* line 64, sass/partials/_context_metaboxes.scss */815 816 .cmb2-context-wrap {817 margin-top: 10px;818 }819 820 /* line 68, sass/partials/_context_metaboxes.scss */821 822 .cmb2-context-wrap.cmb2-context-wrap-form_top {823 margin-left: 300px;824 width: auto;825 }826 827 /* line 75, sass/partials/_context_metaboxes.scss */828 829 .cmb2-context-wrap.cmb2-context-wrap-no-title .cmb2-metabox {830 padding: 10px;831 }832 833 /* line 80, sass/partials/_context_metaboxes.scss */834 835 .cmb2-context-wrap .cmb-th {836 padding: 0 0 0 2%;837 width: 18%;838 }839 840 /* line 85, sass/partials/_context_metaboxes.scss */841 842 .cmb2-context-wrap .cmb-td {843 width: 80%;844 padding: 0;845 }846 847 /* line 90, sass/partials/_context_metaboxes.scss */848 849 .cmb2-context-wrap .cmb-row {850 margin-bottom: 10px;851 }852 853 /* line 93, sass/partials/_context_metaboxes.scss */854 855 .cmb2-context-wrap .cmb-row:last-of-type {856 margin-bottom: 0;857 }858 859 /* one column on the post write/edit screen */860 739 861 740 /*-------------------------------------------------------------- … … 891 770 } 892 771 893 /* line 28, sass/partials/_misc.scss */ 894 895 .cmb2-postbox .cmb-spinner, 896 .cmb2-no-box-wrap .cmb-spinner { 772 /* line 27, sass/partials/_misc.scss */ 773 774 .postbox .cmb-spinner { 897 775 float: right; 898 display: none;899 }900 901 /* line 33, sass/partials/_misc.scss */902 903 .cmb-spinner {904 display: none;905 }906 907 /* line 35, sass/partials/_misc.scss */908 909 .cmb-spinner.is-active {910 display: block;911 776 } 912 777 … … 1449 1314 } 1450 1315 1451 /* line 149, sass/partials/_jquery_ui.scss */ 1452 1453 .cmb2-element.ui-datepicker select.ui-datepicker-month option, 1454 .cmb2-element.ui-datepicker select.ui-datepicker-year option, 1455 .cmb2-element .ui-datepicker select.ui-datepicker-month option, 1456 .cmb2-element .ui-datepicker select.ui-datepicker-year option { 1457 color: #333; 1458 } 1459 1460 /* line 154, sass/partials/_jquery_ui.scss */ 1316 /* line 151, sass/partials/_jquery_ui.scss */ 1461 1317 1462 1318 .cmb2-element.ui-datepicker thead, … … 1466 1322 } 1467 1323 1468 /* line 15 7, sass/partials/_jquery_ui.scss */1324 /* line 154, sass/partials/_jquery_ui.scss */ 1469 1325 1470 1326 .cmb2-element.ui-datepicker thead th, … … 1473 1329 } 1474 1330 1475 /* line 1 62, sass/partials/_jquery_ui.scss */1331 /* line 159, sass/partials/_jquery_ui.scss */ 1476 1332 1477 1333 .cmb2-element.ui-datepicker th, … … 1480 1336 } 1481 1337 1482 /* line 16 6, sass/partials/_jquery_ui.scss */1338 /* line 163, sass/partials/_jquery_ui.scss */ 1483 1339 1484 1340 .cmb2-element.ui-datepicker td, … … 1488 1344 } 1489 1345 1490 /* line 1 71, sass/partials/_jquery_ui.scss */1346 /* line 168, sass/partials/_jquery_ui.scss */ 1491 1347 1492 1348 .cmb2-element.ui-datepicker td.ui-datepicker-other-month, … … 1495 1351 } 1496 1352 1497 /* line 17 5, sass/partials/_jquery_ui.scss */1353 /* line 172, sass/partials/_jquery_ui.scss */ 1498 1354 1499 1355 .cmb2-element.ui-datepicker td.ui-datepicker-week-end, … … 1503 1359 } 1504 1360 1505 /* line 17 8, sass/partials/_jquery_ui.scss */1361 /* line 175, sass/partials/_jquery_ui.scss */ 1506 1362 1507 1363 .cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today, … … 1512 1368 } 1513 1369 1514 /* line 18 5, sass/partials/_jquery_ui.scss */1370 /* line 182, sass/partials/_jquery_ui.scss */ 1515 1371 1516 1372 .cmb2-element.ui-datepicker td.ui-datepicker-today, … … 1519 1375 } 1520 1376 1521 /* line 18 9, sass/partials/_jquery_ui.scss */1377 /* line 186, sass/partials/_jquery_ui.scss */ 1522 1378 1523 1379 .cmb2-element.ui-datepicker td.ui-datepicker-current-day, … … 1526 1382 } 1527 1383 1528 /* line 19 3, sass/partials/_jquery_ui.scss */1384 /* line 190, sass/partials/_jquery_ui.scss */ 1529 1385 1530 1386 .cmb2-element.ui-datepicker td .ui-state-default, … … 1541 1397 } 1542 1398 1543 /* line 20 5, sass/partials/_jquery_ui.scss */1399 /* line 202, sass/partials/_jquery_ui.scss */ 1544 1400 1545 1401 .cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default, … … 1548 1404 } 1549 1405 1550 /* line 2 10, sass/partials/_jquery_ui.scss */1406 /* line 207, sass/partials/_jquery_ui.scss */ 1551 1407 1552 1408 .cmb2-element.ui-datepicker .ui-widget-header, … … 1557 1413 } 1558 1414 1559 /* line 21 5, sass/partials/_jquery_ui.scss */1415 /* line 212, sass/partials/_jquery_ui.scss */ 1560 1416 1561 1417 .cmb2-element.ui-datepicker thead, … … 1564 1420 } 1565 1421 1566 /* line 21 9, sass/partials/_jquery_ui.scss */1422 /* line 216, sass/partials/_jquery_ui.scss */ 1567 1423 1568 1424 .cmb2-element.ui-datepicker td .ui-state-hover, … … 1574 1430 } 1575 1431 1576 /* line 22 4, sass/partials/_jquery_ui.scss */1432 /* line 221, sass/partials/_jquery_ui.scss */ 1577 1433 1578 1434 .cmb2-element.ui-datepicker .ui-timepicker-div, … … 1581 1437 } 1582 1438 1583 /* line 22 6, sass/partials/_jquery_ui.scss */1439 /* line 223, sass/partials/_jquery_ui.scss */ 1584 1440 1585 1441 .cmb2-element.ui-datepicker .ui-timepicker-div dl, … … 1589 1445 } 1590 1446 1591 /* line 22 9, sass/partials/_jquery_ui.scss */1447 /* line 226, sass/partials/_jquery_ui.scss */ 1592 1448 1593 1449 .cmb2-element.ui-datepicker .ui-timepicker-div dl dt, … … 1598 1454 } 1599 1455 1600 /* line 23 4, sass/partials/_jquery_ui.scss */1456 /* line 231, sass/partials/_jquery_ui.scss */ 1601 1457 1602 1458 .cmb2-element.ui-datepicker .ui-timepicker-div dl dd, … … 1605 1461 } 1606 1462 1607 /* line 23 6, sass/partials/_jquery_ui.scss */1463 /* line 233, sass/partials/_jquery_ui.scss */ 1608 1464 1609 1465 .cmb2-element.ui-datepicker .ui-timepicker-div dl dd select, … … 1612 1468 } 1613 1469 1614 /* line 2 42, sass/partials/_jquery_ui.scss */1470 /* line 239, sass/partials/_jquery_ui.scss */ 1615 1471 1616 1472 .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane, … … 1620 1476 } 1621 1477 1622 /* line 24 6, sass/partials/_jquery_ui.scss */1478 /* line 243, sass/partials/_jquery_ui.scss */ 1623 1479 1624 1480 .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-primary, … … 1633 1489 } 1634 1490 1635 /* line 2 60, sass/partials/_jquery_ui.scss */1491 /* line 257, sass/partials/_jquery_ui.scss */ 1636 1492 1637 1493 .admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header, … … 1642 1498 } 1643 1499 1644 /* line 26 5, sass/partials/_jquery_ui.scss */1500 /* line 262, sass/partials/_jquery_ui.scss */ 1645 1501 1646 1502 .admin-color-fresh .cmb2-element.ui-datepicker thead, … … 1649 1505 } 1650 1506 1651 /* line 26 9, sass/partials/_jquery_ui.scss */1507 /* line 266, sass/partials/_jquery_ui.scss */ 1652 1508 1653 1509 .admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover, … … 1657 1513 } 1658 1514 1659 /* line 27 7, sass/partials/_jquery_ui.scss */1515 /* line 274, sass/partials/_jquery_ui.scss */ 1660 1516 1661 1517 .admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header, … … 1666 1522 } 1667 1523 1668 /* line 2 82, sass/partials/_jquery_ui.scss */1524 /* line 279, sass/partials/_jquery_ui.scss */ 1669 1525 1670 1526 .admin-color-blue .cmb2-element.ui-datepicker thead, … … 1673 1529 } 1674 1530 1675 /* line 2 91, sass/partials/_jquery_ui.scss */1531 /* line 288, sass/partials/_jquery_ui.scss */ 1676 1532 1677 1533 .admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover, … … 1683 1539 } 1684 1540 1685 /* line 29 6, sass/partials/_jquery_ui.scss */1541 /* line 293, sass/partials/_jquery_ui.scss */ 1686 1542 1687 1543 .admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today, … … 1690 1546 } 1691 1547 1692 /* line 30 5, sass/partials/_jquery_ui.scss */1548 /* line 302, sass/partials/_jquery_ui.scss */ 1693 1549 1694 1550 .admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header, … … 1699 1555 } 1700 1556 1701 /* line 3 10, sass/partials/_jquery_ui.scss */1557 /* line 307, sass/partials/_jquery_ui.scss */ 1702 1558 1703 1559 .admin-color-coffee .cmb2-element.ui-datepicker thead, … … 1706 1562 } 1707 1563 1708 /* line 31 4, sass/partials/_jquery_ui.scss */1564 /* line 311, sass/partials/_jquery_ui.scss */ 1709 1565 1710 1566 .admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover, … … 1714 1570 } 1715 1571 1716 /* line 3 22, sass/partials/_jquery_ui.scss */1572 /* line 319, sass/partials/_jquery_ui.scss */ 1717 1573 1718 1574 .admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header, … … 1723 1579 } 1724 1580 1725 /* line 32 7, sass/partials/_jquery_ui.scss */1581 /* line 324, sass/partials/_jquery_ui.scss */ 1726 1582 1727 1583 .admin-color-ectoplasm .cmb2-element.ui-datepicker thead, … … 1730 1586 } 1731 1587 1732 /* line 3 31, sass/partials/_jquery_ui.scss */1588 /* line 328, sass/partials/_jquery_ui.scss */ 1733 1589 1734 1590 .admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover, … … 1738 1594 } 1739 1595 1740 /* line 33 9, sass/partials/_jquery_ui.scss */1596 /* line 336, sass/partials/_jquery_ui.scss */ 1741 1597 1742 1598 .admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header, … … 1747 1603 } 1748 1604 1749 /* line 34 4, sass/partials/_jquery_ui.scss */1605 /* line 341, sass/partials/_jquery_ui.scss */ 1750 1606 1751 1607 .admin-color-midnight .cmb2-element.ui-datepicker thead, … … 1754 1610 } 1755 1611 1756 /* line 34 8, sass/partials/_jquery_ui.scss */1612 /* line 345, sass/partials/_jquery_ui.scss */ 1757 1613 1758 1614 .admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover, … … 1762 1618 } 1763 1619 1764 /* line 35 6, sass/partials/_jquery_ui.scss */1620 /* line 353, sass/partials/_jquery_ui.scss */ 1765 1621 1766 1622 .admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header, … … 1771 1627 } 1772 1628 1773 /* line 3 61, sass/partials/_jquery_ui.scss */1629 /* line 358, sass/partials/_jquery_ui.scss */ 1774 1630 1775 1631 .admin-color-ocean .cmb2-element.ui-datepicker thead, … … 1778 1634 } 1779 1635 1780 /* line 36 5, sass/partials/_jquery_ui.scss */1636 /* line 362, sass/partials/_jquery_ui.scss */ 1781 1637 1782 1638 .admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover, … … 1786 1642 } 1787 1643 1788 /* line 37 3, sass/partials/_jquery_ui.scss */1644 /* line 370, sass/partials/_jquery_ui.scss */ 1789 1645 1790 1646 .admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header, … … 1797 1653 } 1798 1654 1799 /* line 37 9, sass/partials/_jquery_ui.scss */1655 /* line 376, sass/partials/_jquery_ui.scss */ 1800 1656 1801 1657 .admin-color-sunrise .cmb2-element.ui-datepicker th, … … 1805 1661 } 1806 1662 1807 /* line 38 4, sass/partials/_jquery_ui.scss */1663 /* line 381, sass/partials/_jquery_ui.scss */ 1808 1664 1809 1665 .admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover, … … 1813 1669 } 1814 1670 1815 /* line 3 92, sass/partials/_jquery_ui.scss */1671 /* line 389, sass/partials/_jquery_ui.scss */ 1816 1672 1817 1673 .admin-color-light .cmb2-element.ui-datepicker .ui-widget-header, … … 1822 1678 } 1823 1679 1824 /* line 39 7, sass/partials/_jquery_ui.scss */1680 /* line 394, sass/partials/_jquery_ui.scss */ 1825 1681 1826 1682 .admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month, … … 1831 1687 } 1832 1688 1833 /* line 402, sass/partials/_jquery_ui.scss */1689 /* line 399, sass/partials/_jquery_ui.scss */ 1834 1690 1835 1691 .admin-color-light .cmb2-element.ui-datepicker thead, … … 1838 1694 } 1839 1695 1840 /* line 40 6, sass/partials/_jquery_ui.scss */1696 /* line 403, sass/partials/_jquery_ui.scss */ 1841 1697 1842 1698 .admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title, … … 1851 1707 } 1852 1708 1853 /* line 41 4, sass/partials/_jquery_ui.scss */1709 /* line 411, sass/partials/_jquery_ui.scss */ 1854 1710 1855 1711 .admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover, … … 1860 1716 } 1861 1717 1862 /* line 41 8, sass/partials/_jquery_ui.scss */1718 /* line 415, sass/partials/_jquery_ui.scss */ 1863 1719 1864 1720 .admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today, … … 1867 1723 } 1868 1724 1869 /* line 42 6, sass/partials/_jquery_ui.scss */1725 /* line 423, sass/partials/_jquery_ui.scss */ 1870 1726 1871 1727 .admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header, … … 1876 1732 } 1877 1733 1878 /* line 4 31, sass/partials/_jquery_ui.scss */1734 /* line 428, sass/partials/_jquery_ui.scss */ 1879 1735 1880 1736 .admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead, … … 1883 1739 } 1884 1740 1885 /* line 43 5, sass/partials/_jquery_ui.scss */1741 /* line 432, sass/partials/_jquery_ui.scss */ 1886 1742 1887 1743 .admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover, … … 1891 1747 } 1892 1748 1893 /* line 44 3, sass/partials/_jquery_ui.scss */1749 /* line 440, sass/partials/_jquery_ui.scss */ 1894 1750 1895 1751 .admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header, … … 1900 1756 } 1901 1757 1902 /* line 44 8, sass/partials/_jquery_ui.scss */1758 /* line 445, sass/partials/_jquery_ui.scss */ 1903 1759 1904 1760 .admin-color-bbp-mint .cmb2-element.ui-datepicker thead, … … 1907 1763 } 1908 1764 1909 /* line 4 52, sass/partials/_jquery_ui.scss */1765 /* line 449, sass/partials/_jquery_ui.scss */ 1910 1766 1911 1767 .admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover, … … 1916 1772 1917 1773 /*# sourceMappingURL=cmb2.css.map */ 1918 1919 @media only screen and (max-width: 850px) {1920 1921 /* line 103, sass/partials/_context_metaboxes.scss */1922 1923 .cmb2-context-wrap.cmb2-context-wrap-form_top {1924 margin-left: 0;1925 }1926 1927 }1928 1774 1929 1775 @media (max-width: 450px) { … … 1958 1804 } 1959 1805 1960 /* line 43 5, sass/partials/_main_wrap.scss */1806 /* line 431, sass/partials/_main_wrap.scss */ 1961 1807 1962 1808 .cmb-th, … … 1970 1816 /* line 72, sass/partials/_post_metaboxes.scss */ 1971 1817 1972 . cmb2-postbox.cmb-row:not(:last-of-type),1973 . cmb2-postbox.cmb-repeatable-group:not(:last-of-type),1818 .postbox-container .cmb-row:not(:last-of-type), 1819 .postbox-container .cmb-repeatable-group:not(:last-of-type), 1974 1820 .cmb-type-group .cmb-row:not(:last-of-type), 1975 1821 .cmb-type-group .cmb-repeatable-group:not(:last-of-type) { -
bim-ba/trunk/lib/cmb2/css/cmb2-rtl.min.css
r1608679 r1610879 1 .cmb2-wrap{margin:0}.cmb2-wrap input,.cmb2-wrap textarea{font-size:14px;max-width:100%;padding:5px}.cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb2-wrap textarea{width:500px}.cmb2-wrap textarea.cmb2-textarea-code{font-family:"Courier 10 Pitch",Courier,monospace;line-height:16px}.cmb2-wrap input.cmb2-text-small,.cmb2-wrap input.cmb2-timepicker{width:100px}.cmb2-wrap input.cmb2-text-money{width:90px}.cmb2-wrap input.cmb2-text-medium{width:230px}.cmb2-wrap input.cmb2-upload-file{width:65%}.cmb2-wrap input.ed_button{padding:2px 4px}.cmb2-wrap input:not([type=hidden])+.button,.cmb2-wrap input:not([type=hidden])+input,.cmb2-wrap input:not([type=hidden])+select{margin-right:20px}.cmb2-wrap ul{margin:0}.cmb2-wrap li{font-size:14px;line-height:16px;margin:1px 0 5px}.cmb2-wrap select{font-size:14px;margin-top:3px}.cmb2-wrap input:focus,.cmb2-wrap textarea:focus{background:#fffff8}.cmb2-wrap input[type=checkbox],.cmb2-wrap input[type=radio]{margin:0 0 0 5px;padding:0}.cmb2-wrap .button,.cmb2-wrap button{white-space:nowrap}.cmb2-wrap .mceLayout{border:1px solid #e9e9e9!important}.cmb2-wrap .mceIframeContainer{background:#fff}.cmb2-wrap .meta_mce{width:97%}.cmb2-wrap .meta_mce textarea{width:100%}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-input-wrap{vertical-align:middle}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-container{margin:0 0 0 10px}.cmb2-wrap .cmb-row{margin:0}.cmb2-wrap .cmb-row:after{content:'';clear:both;display:block;width:100%}.cmb2-wrap .cmb-row.cmb-repeat-row{padding:1.8em 0 0}.cmb2-wrap .cmb-row.cmb-repeat-row:first-of-type{padding:0}.cmb2-wrap .cmb-row.cmb-repeat .cmb2-metabox-description{padding-top:0;padding-bottom:1.8em}.cmb2-metabox{clear:both;margin:0}.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-th,.cmb2-metabox>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox>.cmb-row:first-of-type>.cmb-th{border:0}.cmb2-metabox>.cmb-row .cmb-repeat-table .cmb-row>.cmb-td{padding-left:20px;box-sizing:border-box;float:right}.cmb-add-row{margin:1.8em 0 0}.cmb-nested .cmb-td,.cmb-repeatable-group .cmb-th,.cmb-repeatable-group:first-of-type{border:0}.cmb-repeatable-group:last-of-type,.cmb-row:last-of-type,.cmb2-wrap .cmb-row:last-of-type{border-bottom:0}.cmb-repeatable-grouping{border:1px solid #e9e9e9;padding:0 1em;max-width:1000px}.cmb-repeatable-grouping.cmb-row{margin:0 0 .8em}.cmb-th{color:#222;float:right;font-weight:600;line-height:1.3;padding:20px 0 20px 10px;vertical-align:top;width:200px}.cmb-td{line-height:1.3;max-width:100%;padding:15px 10px;vertical-align:middle}.cmb-type-title .cmb-td{padding:0}.cmb-th label{display:block;padding:5px 0}.cmb-th+.cmb-td{float:right}.cmb-td .cmb-td{padding-bottom:1em}.cmb-remove-row{text-align:left}.empty-row.hidden{display:none}.cmb-repeatable-group .cmb-th{padding:5px}.cmb-repeatable-group .cmb-group-title{background-color:#e9e9e9;padding:8px 2.2em 8px 12px;margin:0 -1em;min-height:1.5em;font-size:14px;line-height:1.4}.cmb-repeatable-group .cmb-group-title h4{border:0;margin:0;font-size:1.2em;font-weight:500;padding:.5em .75em}.cmb-repeatable-group .cmb-group-title .cmb-th{display:block;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th{font-size:1.2em;display:block;float:none;padding-bottom:1em;text-align:right;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-repeatable-group .cmb-group-description .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}.cmb-repeatable-group .cmb-shift-rows{font-size:1em;margin-left:1em;text-decoration:none}.cmb-repeatable-group .cmb-shift-rows .dashicons{font-size:1.5em;height:1.5em;line-height:1.2em;width:1em}.cmb-repeatable-group .cmb-shift-rows .dashicons.dashicons-arrow-down-alt2{line-height:1.3em}.cmb-repeatable-group .cmb2-upload-button{float:left}p.cmb2-metabox-description{color:#aaa;font-style:italic;margin:0;padding-top:.5em}span.cmb2-metabox-description{color:#aaa;font-style:italic}.cmb2-metabox-title{margin:0 0 5px;padding:5px 0 0;font-size:14px}.cmb-inline ul{padding:4px 0 0}.cmb-inline li{display:inline-block;padding-left:18px}.cmb-type-textarea-code pre{margin:0}.cmb2-media-status .img-status{clear:none;display:inline-block; vertical-align:middle;margin-left:10px;width:auto}.cmb2-media-status .img-status img{max-width:350px;height:auto}.cmb2-media-status .embed-status,.cmb2-media-status .img-status img{background:#fff;border:1px solid #e9e9e9;border-radius:2px;-moz-border-radius:2px;margin:15px 0 0;padding:5px}.cmb2-media-status .embed-status{float:right;max-width:800px}.cmb2-media-status .embed-status,.cmb2-media-status .img-status{position:relative}.cmb2-media-status .embed-status .cmb2-remove-file-button,.cmb2-media-status .img-status .cmb2-remove-file-button{background:url(../images/ico-delete.png);height:16px;right:-5px;position:absolute;text-indent:-9999px;top:-5px;width:16px}.cmb2-media-status .img-status .cmb2-remove-file-button{top:10px}.cmb2-media-status .file-status>span,.cmb2-media-status .img-status img{cursor:pointer}.cmb-type-file-list .cmb2-media-status .img-status{clear:none;vertical-align:middle;width:auto;margin-left:10px;margin-bottom:10px;margin-top:0}.cmb-attach-list li{clear:both;display:inline-block;width:100%;margin-top:5px;margin-bottom:10px}.cmb-attach-list li img{cursor:move;float:right;margin-left:10px}.cmb2-remove-wrapper{margin:0}.child-cmb2 .cmb-th{text-align:right}#poststuff .cmb-group-title{margin-right:-1em;margin-left:-1em;min-height:1.5em}#poststuff .repeatable .cmb-group-title{padding-right:2.2em}.cmb-type-group .cmb2-wrap,.cmb2-postbox .cmb2-wrap{margin:0}.cmb-type-group .cmb2-wrap>.cmb-field-list>.cmb-row,.cmb2-postbox .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.8em 0}.cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed,.cmb2-postbox .cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb-type-group .cmb-row,.cmb2-postbox .cmb-row{padding:0 0 1.8em;margin:0 0 .8em}.cmb-type-group .cmb-row .cmbhandle,.cmb2-postbox .cmb-row .cmbhandle{left:-1em;position:relative}.cmb-type-group .cmb-repeatable-grouping,.cmb2-postbox .cmb-repeatable-grouping{padding:0 1em;max-width:100%;min-width:1px!important}.cmb-type-group .cmb-repeatable-group>.cmb-row,.cmb2-postbox .cmb-repeatable-group>.cmb-row{padding-bottom:0}.cmb-type-group .cmb-th,.cmb2-postbox .cmb-th{width:18%;padding:0 0 0 2%}.cmb-type-group .cmb-td,.cmb2-postbox .cmb-td{margin-bottom:0;padding:0;line-height:1.3}.cmb-type-group .cmb-repeat-row .cmb-td,.cmb2-postbox .cmb-repeat-row .cmb-td{padding-bottom:1.8em}.cmb-type-group .cmb-th+.cmb-td,.cmb2-postbox .cmb-th+.cmb-td{width:80%;float:left}.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.cmb2-postbox .cmb-repeatable-group:not(:last-of-type),.cmb2-postbox .cmb-row:not(:last-of-type){border-bottom:1px solid #e9e9e9}.cmb-type-group .cmb-remove-field-row,.cmb-type-group .cmb-repeat-group-field,.cmb2-postbox .cmb-remove-field-row,.cmb2-postbox .cmb-repeat-group-field{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody{display:table;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text{width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row){display:table-row}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td{display:table-cell;float:none;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row{padding-left:0}.js .cmb2-postbox.context-box .toggle-indicator:before{content:"\f142";display:inline-block;font:400 20px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.js .cmb2-postbox.context-box.closed .toggle-indicator:before{content:"\f140"}.cmb2-postbox.context-box{margin-bottom:10px}.cmb2-postbox.context-box.context-after_title-box,.cmb2-postbox.context-box.context-before_permalink-box{margin-top:10px}.cmb2-postbox.context-box.context-after_editor-box{margin-top:20px;margin-bottom:0}.cmb2-postbox.context-box.context-form_top-box{margin-top:10px}.cmb2-postbox.context-box.context-form_top-box .hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.cmb2-postbox.context-box .hndle{cursor:auto}.cmb2-context-wrap{margin-top:10px}.cmb2-context-wrap.cmb2-context-wrap-form_top{margin-left:300px;width:auto}.cmb2-context-wrap.cmb2-context-wrap-no-title .cmb2-metabox{padding:10px}.cmb2-context-wrap .cmb-th{padding:0 0 0 2%;width:18%}.cmb2-context-wrap .cmb-td{width:80%;padding:0}.cmb2-context-wrap .cmb-row{margin-bottom:10px}.cmb2-context-wrap .cmb-row:last-of-type{margin-bottom:0}#poststuff .cmb-repeatable-group h2{margin:0}.edit-tags-php .cmb2-metabox-title,.profile-php .cmb2-metabox-title,.user-edit-php .cmb2-metabox-title{font-size:1.4em}.cmb2-options-page .cmb2-metabox-title{font-size:1.3em;margin:1em 0}.cmb2-options-page .cmb2-metabox-title+p.cmb2-metabox-description{margin-top:-1.6em;margin-bottom:.8em}.cmb2-no-box-wrap .cmb-spinner,.cmb2-postbox .cmb-spinner{float:right;display:none}.cmb-spinner{display:none}.cmb-spinner.is-active{display:block}#side-sortables .cmb2-wrap>.cmb-field-list>.cmb-row,.inner-sidebar .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.4em 0}#side-sortables .cmb2-wrap input[type=text]:not(.wp-color-picker),.inner-sidebar .cmb2-wrap input[type=text]:not(.wp-color-picker){width:100%}#side-sortables .cmb2-wrap input+input:not(.wp-picker-clear),#side-sortables .cmb2-wrap input+select,.inner-sidebar .cmb2-wrap input+input:not(.wp-picker-clear),.inner-sidebar .cmb2-wrap input+select{margin-right:0;margin-top:1em;display:block}#side-sortables .cmb2-wrap input.cmb2-text-money,.inner-sidebar .cmb2-wrap input.cmb2-text-money{max-width:70%}#side-sortables .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description,.inner-sidebar .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description{display:block}#side-sortables .cmb2-wrap label,.inner-sidebar .cmb2-wrap label{display:block;font-weight:700;padding:0 0 5px}#side-sortables textarea,.inner-sidebar textarea{max-width:99%}#side-sortables .cmb-repeatable-group,.inner-sidebar .cmb-repeatable-group{border-bottom:1px solid #e9e9e9}#side-sortables .cmb-type-group>.cmb-td>.cmb-repeatable-group,.inner-sidebar .cmb-type-group>.cmb-td>.cmb-repeatable-group{border-bottom:0;margin-bottom:-1.4em}#side-sortables .cmb-td,#side-sortables .cmb-th,#side-sortables .cmb-th+.cmb-td,.inner-sidebar .cmb-td,.inner-sidebar .cmb-th,.inner-sidebar .cmb-th+.cmb-td{width:100%;display:block;float:none}#side-sortables .closed .inside,.inner-sidebar .closed .inside{display:none}#side-sortables .cmb-td .cmb-td,.inner-sidebar .cmb-td .cmb-td{padding-bottom:1em}#side-sortables .cmb-th,.inner-sidebar .cmb-th{display:block;float:none;padding-bottom:1em;text-align:right;width:100%;padding-right:0;padding-left:0}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{display:block;margin-top:0;padding-bottom:5px}#side-sortables .cmb-th label:after,.inner-sidebar .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{font-size:14px;line-height:1.4em}#side-sortables .cmb-group-description .cmb-th,.inner-sidebar .cmb-group-description .cmb-th{padding-top:0}#side-sortables .cmb-group-description .cmb2-metabox-description,#side-sortables .cmb-group-title .cmb-th,.inner-sidebar .cmb-group-description .cmb2-metabox-description,.inner-sidebar .cmb-group-title .cmb-th{padding:0}#side-sortables .cmb-repeatable-grouping+.cmb-repeatable-grouping,.inner-sidebar .cmb-repeatable-grouping+.cmb-repeatable-grouping{margin-top:1em}#side-sortables .cmb2-media-status .embed-status img,#side-sortables .cmb2-media-status .img-status img,.inner-sidebar .cmb2-media-status .embed-status img,.inner-sidebar .cmb2-media-status .img-status img{max-width:90%;height:auto}#side-sortables .cmb2-list label,.inner-sidebar .cmb2-list label{display:inline;font-weight:400}#side-sortables .cmb2-metabox-description,.inner-sidebar .cmb2-metabox-description{display:block;padding:7px 0 0}#side-sortables .cmb-type-checkbox .cmb-td label,#side-sortables .cmb-type-checkbox .cmb2-metabox-description,.inner-sidebar .cmb-type-checkbox .cmb-td label,.inner-sidebar .cmb-type-checkbox .cmb2-metabox-description{font-weight:400;display:inline}#side-sortables .cmb-row .cmb2-metabox-description,.inner-sidebar .cmb-row .cmb2-metabox-description{padding-bottom:1.8em}#side-sortables .cmb2-metabox-title,.inner-sidebar .cmb2-metabox-title{font-size:1.2em;font-style:italic}#side-sortables .cmb-remove-row,.inner-sidebar .cmb-remove-row{clear:both;padding-top:12px;padding-bottom:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td{width:auto;clear:none;float:right;padding-top:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row{float:left;margin:0}#side-sortables .cmb2-upload-button,.inner-sidebar .cmb2-upload-button{clear:both;margin-top:12px}.cmb2-metabox .cmb-type-group{max-width:1000px}.cmb2-metabox .cmbhandle{color:#aaa;float:left;width:27px;height:30px;cursor:pointer;left:-1em;position:relative}.cmb2-metabox .cmbhandle:before{content:'\f142';left:12px;font:400 20px/1 dashicons;speak:none;display:inline-block;padding:8px 10px;top:0;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.cmb2-metabox .postbox.closed .cmbhandle:before{content:'\f140'}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row{-webkit-appearance:none!important;background:none!important;border:none!important;position:absolute;right:0;top:.5em;line-height:1em;padding:2px 6px 3px;opacity:.5}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]){cursor:pointer;color:#a00;opacity:1}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]):hover{color:red}* html .cmb2-element.ui-helper-clearfix{height:1%}.cmb2-element .ui-datepicker,.cmb2-element.ui-datepicker{padding:0;margin:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:#fff;border:1px solid #dfdfdf;border-top:none;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.075);box-shadow:0 3px 6px rgba(0,0,0,.075);min-width:17em;width:auto}.cmb2-element .ui-datepicker *,.cmb2-element.ui-datepicker *{padding:0;font-family:"Open Sans",sans-serif;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.cmb2-element .ui-datepicker table,.cmb2-element.ui-datepicker table{font-size:13px;margin:0;border:none;border-collapse:collapse}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{border:none;color:#fff;font-weight:400}.cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover{background:0 0;border-color:transparent;cursor:pointer}.cmb2-element .ui-datepicker .ui-datepicker-title,.cmb2-element.ui-datepicker .ui-datepicker-title{margin:0;padding:10px 0;color:#fff;font-size:14px;line-height:14px;text-align:center}.cmb2-element .ui-datepicker .ui-datepicker-title select,.cmb2-element.ui-datepicker .ui-datepicker-title select{margin-top:-8px;margin-bottom:-8px}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-prev{position:relative;top:0;height:34px;width:34px}.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-prev{border:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover,.cmb2-element.ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover{right:0}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-next-hover,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next-hover{left:0}.cmb2-element .ui-datepicker .ui-datepicker-next span,.cmb2-element .ui-datepicker .ui-datepicker-prev span,.cmb2-element.ui-datepicker .ui-datepicker-next span,.cmb2-element.ui-datepicker .ui-datepicker-prev span{display:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev{float:right}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next{float:left}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{font:400 20px/34px dashicons;padding-right:7px;color:#fff;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:34px;height:34px}.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{content:'\f341'}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before{content:'\f345'}.cmb2-element .ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover:before{opacity:.7}.cmb2-element .ui-datepicker select.ui-datepicker-month,.cmb2-element .ui-datepicker select.ui-datepicker-year,.cmb2-element.ui-datepicker select.ui-datepicker-month,.cmb2-element.ui-datepicker select.ui-datepicker-year{width:33%;background:0 0;border-color:transparent;box-shadow:none;color:#fff}.cmb2-element .ui-datepicker select.ui-datepicker-month option,.cmb2-element .ui-datepicker select.ui-datepicker-year option,.cmb2-element.ui-datepicker select.ui-datepicker-month option,.cmb2-element.ui-datepicker select.ui-datepicker-year option{color:#333}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{color:#fff;font-weight:600}.cmb2-element .ui-datepicker thead th,.cmb2-element.ui-datepicker thead th{font-weight:400}.cmb2-element .ui-datepicker th,.cmb2-element.ui-datepicker th{padding:10px}.cmb2-element .ui-datepicker td,.cmb2-element.ui-datepicker td{padding:0;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-other-month,.cmb2-element.ui-datepicker td.ui-datepicker-other-month{border:transparent}.cmb2-element .ui-datepicker td.ui-datepicker-week-end,.cmb2-element.ui-datepicker td.ui-datepicker-week-end{background-color:#f4f4f4;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today{-webkit-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);-moz-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1)}.cmb2-element .ui-datepicker td.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-today{background-color:#f0f0c0}.cmb2-element .ui-datepicker td.ui-datepicker-current-day,.cmb2-element.ui-datepicker td.ui-datepicker-current-day{background:#bd8}.cmb2-element .ui-datepicker td .ui-state-default,.cmb2-element.ui-datepicker td .ui-state-default{background:0 0;border:none;text-align:center;text-decoration:none;width:auto;display:block;padding:5px 10px;font-weight:400;color:#444}.cmb2-element .ui-datepicker td.ui-state-disabled .ui-state-default,.cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default{opacity:.5}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{background:#32373c}.cmb2-element .ui-datepicker td .ui-state-active,.cmb2-element .ui-datepicker td .ui-state-hover,.cmb2-element.ui-datepicker td .ui-state-active,.cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.cmb2-element .ui-datepicker .ui-timepicker-div,.cmb2-element.ui-datepicker .ui-timepicker-div{font-size:14px}.cmb2-element .ui-datepicker .ui-timepicker-div dl,.cmb2-element.ui-datepicker .ui-timepicker-div dl{text-align:right;padding:0 .6em}.cmb2-element .ui-datepicker .ui-timepicker-div dl dt,.cmb2-element.ui-datepicker .ui-timepicker-div dl dt{float:right;clear:right;padding:0 5px 0 0}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd{margin:0 40% 10px 10px}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd select,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd select{width:100%}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane{padding:.6em;text-align:right}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary{padding:0 10px 1px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;margin:0 .4em .4em .6em}.admin-color-fresh .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.admin-color-fresh .cmb2-element .ui-datepicker thead,.admin-color-fresh .cmb2-element.ui-datepicker thead{background:#32373c}.admin-color-fresh .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header{background:#52accc}.admin-color-blue .cmb2-element .ui-datepicker thead,.admin-color-blue .cmb2-element.ui-datepicker thead{background:#4796b3}.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover{background:#096484;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-coffee .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header{background:#59524c}.admin-color-coffee .cmb2-element .ui-datepicker thead,.admin-color-coffee .cmb2-element.ui-datepicker thead{background:#46403c}.admin-color-coffee .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover{background:#c7a589;color:#fff}.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header{background:#523f6d}.admin-color-ectoplasm .cmb2-element .ui-datepicker thead,.admin-color-ectoplasm .cmb2-element.ui-datepicker thead{background:#413256}.admin-color-ectoplasm .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover{background:#a3b745;color:#fff}.admin-color-midnight .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header{background:#363b3f}.admin-color-midnight .cmb2-element .ui-datepicker thead,.admin-color-midnight .cmb2-element.ui-datepicker thead{background:#26292c}.admin-color-midnight .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover{background:#e14d43;color:#fff}.admin-color-ocean .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header{background:#738e96}.admin-color-ocean .cmb2-element .ui-datepicker thead,.admin-color-ocean .cmb2-element.ui-datepicker thead{background:#627c83}.admin-color-ocean .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover{background:#9ebaa0;color:#fff}.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header{background:#cf4944}.admin-color-sunrise .cmb2-element .ui-datepicker th,.admin-color-sunrise .cmb2-element.ui-datepicker th{border-color:#be3631;background:#be3631}.admin-color-sunrise .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover{background:#dd823b;color:#fff}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element.ui-datepicker .ui-widget-header{background:#e5e5e5}.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-year,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-year{color:#555}.admin-color-light .cmb2-element .ui-datepicker thead,.admin-color-light .cmb2-element.ui-datepicker thead{background:#888}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-default,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-default{color:#555}.admin-color-light .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover{background:#ccc}.admin-color-light .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header{background:#56b274}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker thead,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead{background:#36533f}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover{background:#446950;color:#fff}.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header{background:#4ca26a}.admin-color-bbp-mint .cmb2-element .ui-datepicker thead,.admin-color-bbp-mint .cmb2-element.ui-datepicker thead{background:#4f6d59}.admin-color-bbp-mint .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover{background:#5fb37c;color:#fff}@media only screen and (max-width:850px){.cmb2-context-wrap.cmb2-context-wrap-form_top{margin-left:0}}@media (max-width:450px){.cmb-th{font-size:1.2em;padding-bottom:1em;text-align:right}.cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}.cmb-td,.cmb-th,.cmb-th+.cmb-td{display:block;float:none;width:100%}.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.cmb2-postbox .cmb-repeatable-group:not(:last-of-type),.cmb2-postbox.cmb-row:not(:last-of-type){border-bottom:0}}1 .cmb2-wrap{margin:0}.cmb2-wrap input,.cmb2-wrap textarea{font-size:14px;max-width:100%;padding:5px}.cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb2-wrap textarea{width:500px}.cmb2-wrap textarea.cmb2-textarea-code{font-family:"Courier 10 Pitch",Courier,monospace;line-height:16px}.cmb2-wrap input.cmb2-text-small,.cmb2-wrap input.cmb2-timepicker{width:100px}.cmb2-wrap input.cmb2-text-money{width:90px}.cmb2-wrap input.cmb2-text-medium{width:230px}.cmb2-wrap input.cmb2-upload-file{width:65%}.cmb2-wrap input.ed_button{padding:2px 4px}.cmb2-wrap input:not([type=hidden])+.button,.cmb2-wrap input:not([type=hidden])+input,.cmb2-wrap input:not([type=hidden])+select{margin-right:20px}.cmb2-wrap ul{margin:0}.cmb2-wrap li{font-size:14px;line-height:16px;margin:1px 0 5px}.cmb2-wrap select{font-size:14px;margin-top:3px}.cmb2-wrap input:focus,.cmb2-wrap textarea:focus{background:#fffff8}.cmb2-wrap input[type=checkbox],.cmb2-wrap input[type=radio]{margin:0 0 0 5px;padding:0}.cmb2-wrap .button,.cmb2-wrap button{white-space:nowrap}.cmb2-wrap .mceLayout{border:1px solid #e9e9e9!important}.cmb2-wrap .mceIframeContainer{background:#fff}.cmb2-wrap .meta_mce{width:97%}.cmb2-wrap .meta_mce textarea{width:100%}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-input-wrap{vertical-align:middle}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-container{margin:0 0 0 10px}.cmb2-wrap .cmb-row{margin:0}.cmb2-wrap .cmb-row:after{content:'';clear:both;display:block;width:100%}.cmb2-wrap .cmb-row.cmb-repeat-row{padding:1.8em 0 0}.cmb2-wrap .cmb-row.cmb-repeat-row:first-of-type{padding:0}.cmb2-wrap .cmb-row.cmb-repeat .cmb2-metabox-description{padding-top:0;padding-bottom:1.8em}.cmb2-metabox{clear:both;margin:0}.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-th,.cmb2-metabox>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox>.cmb-row:first-of-type>.cmb-th{border:0}.cmb2-metabox>.cmb-row .cmb-repeat-table .cmb-row>.cmb-td{padding-left:20px;box-sizing:border-box;float:right}.cmb-add-row{margin:1.8em 0 0}.cmb-nested .cmb-td,.cmb-repeatable-group .cmb-th,.cmb-repeatable-group:first-of-type{border:0}.cmb-repeatable-group:last-of-type,.cmb-row:last-of-type,.cmb2-wrap .cmb-row:last-of-type{border-bottom:0}.cmb-repeatable-grouping{border:1px solid #e9e9e9;padding:0 1em;max-width:1000px}.cmb-repeatable-grouping.cmb-row{margin:0 0 .8em}.cmb-th{color:#222;float:right;font-weight:600;line-height:1.3;padding:20px 0 20px 10px;vertical-align:top;width:200px}.cmb-td{line-height:1.3;max-width:100%;padding:15px 10px;vertical-align:middle}.cmb-type-title .cmb-td{padding:0}.cmb-th label{display:block;padding:5px 0}.cmb-th+.cmb-td{float:right}.cmb-td .cmb-td{padding-bottom:1em}.cmb-remove-row{text-align:left}.empty-row.hidden{display:none}.cmb-repeatable-group .cmb-th{padding:5px}.cmb-repeatable-group .cmb-group-title{background-color:#e9e9e9;padding:8px 2.2em 8px 12px;margin:0 -1em;min-height:1.5em;font-size:14px;line-height:1.4}.cmb-repeatable-group .cmb-group-title h4{border:0;margin:0;font-size:1.2em;font-weight:500;padding:.5em .75em}.cmb-repeatable-group .cmb-group-title .cmb-th{display:block;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th{font-size:1.2em;display:block;float:none;padding-bottom:1em;text-align:right;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-repeatable-group .cmb-group-description .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}.cmb-repeatable-group .cmb-shift-rows{font-size:1em;margin-left:1em;text-decoration:none}.cmb-repeatable-group .cmb-shift-rows .dashicons{font-size:1.5em;height:1.5em;line-height:1.2em;width:1em}.cmb-repeatable-group .cmb-shift-rows .dashicons.dashicons-arrow-down-alt2{line-height:1.3em}.cmb-repeatable-group .cmb2-upload-button{float:left}p.cmb2-metabox-description{color:#aaa;font-style:italic;margin:0;padding-top:.5em}span.cmb2-metabox-description{color:#aaa;font-style:italic}.cmb2-metabox-title{margin:0 0 5px;padding:5px 0 0;font-size:14px}.cmb-inline ul{padding:4px 0 0}.cmb-inline li{display:inline-block;padding-left:18px}.cmb-type-textarea-code pre{margin:0}.cmb2-media-status .img-status{clear:none;display:inline-block;float:right;margin-left:10px;width:auto}.cmb2-media-status .img-status img{max-width:350px}.cmb2-media-status .embed-status,.cmb2-media-status .img-status img{background:#fff;border:1px solid #e9e9e9;border-radius:2px;-moz-border-radius:2px;margin:15px 0 0;padding:5px}.cmb2-media-status .embed-status{float:right;max-width:800px}.cmb2-media-status .embed-status,.cmb2-media-status .img-status{position:relative}.cmb2-media-status .embed-status .cmb2-remove-file-button,.cmb2-media-status .img-status .cmb2-remove-file-button{background:url(../images/ico-delete.png);height:16px;right:-5px;position:absolute;text-indent:-9999px;top:-5px;width:16px}.cmb2-media-status .img-status .cmb2-remove-file-button{top:10px}.cmb2-media-status .file-status>span,.cmb2-media-status .img-status img{cursor:pointer}.cmb-type-file-list .cmb2-media-status .img-status{clear:none;float:right;margin-left:10px;width:auto}.cmb-attach-list li{clear:both;display:inline-block;margin-bottom:25px;width:100%}.cmb-attach-list li img{cursor:move;float:right;margin-left:10px}.cmb2-remove-wrapper{margin:0}.child-cmb2 .cmb-th{text-align:right}#poststuff .cmb-group-title{margin-right:-1em;margin-left:-1em;min-height:1.5em}#poststuff .repeatable .cmb-group-title{padding-right:2.2em}.cmb-type-group .cmb2-wrap,.postbox-container .cmb2-wrap{margin:0}.cmb-type-group .cmb2-wrap>.cmb-field-list>.cmb-row,.postbox-container .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.8em 0}.cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed,.postbox-container .cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb-type-group .cmb-row,.postbox-container .cmb-row{padding:0 0 1.8em;margin:0 0 .8em}.cmb-type-group .cmb-row .cmbhandle,.postbox-container .cmb-row .cmbhandle{left:-1em;position:relative}.cmb-type-group .cmb-repeatable-grouping,.postbox-container .cmb-repeatable-grouping{padding:0 1em;max-width:100%;min-width:1px!important}.cmb-type-group .cmb-repeatable-group>.cmb-row,.postbox-container .cmb-repeatable-group>.cmb-row{padding-bottom:0}.cmb-type-group .cmb-th,.postbox-container .cmb-th{width:18%;padding:0 0 0 2%}.cmb-type-group .cmb-td,.postbox-container .cmb-td{margin-bottom:0;padding:0;line-height:1.3}.cmb-type-group .cmb-repeat-row .cmb-td,.postbox-container .cmb-repeat-row .cmb-td{padding-bottom:1.8em}.cmb-type-group .cmb-th+.cmb-td,.postbox-container .cmb-th+.cmb-td{width:80%;float:left}.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.postbox-container .cmb-repeatable-group:not(:last-of-type),.postbox-container .cmb-row:not(:last-of-type){border-bottom:1px solid #e9e9e9}.cmb-type-group .cmb-remove-field-row,.cmb-type-group .cmb-repeat-group-field,.postbox-container .cmb-remove-field-row,.postbox-container .cmb-repeat-group-field{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody{display:table;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text{width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row){display:table-row}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td{display:table-cell;float:none;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row{padding-left:0}#poststuff .cmb-repeatable-group h2{margin:0}.edit-tags-php .cmb2-metabox-title,.profile-php .cmb2-metabox-title,.user-edit-php .cmb2-metabox-title{font-size:1.4em}.cmb2-options-page .cmb2-metabox-title{font-size:1.3em;margin:1em 0}.cmb2-options-page .cmb2-metabox-title+p.cmb2-metabox-description{margin-top:-1.6em;margin-bottom:.8em}.postbox .cmb-spinner{float:right}#side-sortables .cmb2-wrap>.cmb-field-list>.cmb-row,.inner-sidebar .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.4em 0}#side-sortables .cmb2-wrap input[type=text]:not(.wp-color-picker),.inner-sidebar .cmb2-wrap input[type=text]:not(.wp-color-picker){width:100%}#side-sortables .cmb2-wrap input+input:not(.wp-picker-clear),#side-sortables .cmb2-wrap input+select,.inner-sidebar .cmb2-wrap input+input:not(.wp-picker-clear),.inner-sidebar .cmb2-wrap input+select{margin-right:0;margin-top:1em;display:block}#side-sortables .cmb2-wrap input.cmb2-text-money,.inner-sidebar .cmb2-wrap input.cmb2-text-money{max-width:70%}#side-sortables .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description,.inner-sidebar .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description{display:block}#side-sortables .cmb2-wrap label,.inner-sidebar .cmb2-wrap label{display:block;font-weight:700;padding:0 0 5px}#side-sortables textarea,.inner-sidebar textarea{max-width:99%}#side-sortables .cmb-repeatable-group,.inner-sidebar .cmb-repeatable-group{border-bottom:1px solid #e9e9e9}#side-sortables .cmb-type-group>.cmb-td>.cmb-repeatable-group,.inner-sidebar .cmb-type-group>.cmb-td>.cmb-repeatable-group{border-bottom:0;margin-bottom:-1.4em}#side-sortables .cmb-td,#side-sortables .cmb-th,#side-sortables .cmb-th+.cmb-td,.inner-sidebar .cmb-td,.inner-sidebar .cmb-th,.inner-sidebar .cmb-th+.cmb-td{width:100%;display:block;float:none}#side-sortables .closed .inside,.inner-sidebar .closed .inside{display:none}#side-sortables .cmb-td .cmb-td,.inner-sidebar .cmb-td .cmb-td{padding-bottom:1em}#side-sortables .cmb-th,.inner-sidebar .cmb-th{display:block;float:none;padding-bottom:1em;text-align:right;width:100%;padding-right:0;padding-left:0}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{display:block;margin-top:0;padding-bottom:5px}#side-sortables .cmb-th label:after,.inner-sidebar .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{font-size:14px;line-height:1.4em}#side-sortables .cmb-group-description .cmb-th,.inner-sidebar .cmb-group-description .cmb-th{padding-top:0}#side-sortables .cmb-group-description .cmb2-metabox-description,#side-sortables .cmb-group-title .cmb-th,.inner-sidebar .cmb-group-description .cmb2-metabox-description,.inner-sidebar .cmb-group-title .cmb-th{padding:0}#side-sortables .cmb-repeatable-grouping+.cmb-repeatable-grouping,.inner-sidebar .cmb-repeatable-grouping+.cmb-repeatable-grouping{margin-top:1em}#side-sortables .cmb2-media-status .embed-status img,#side-sortables .cmb2-media-status .img-status img,.inner-sidebar .cmb2-media-status .embed-status img,.inner-sidebar .cmb2-media-status .img-status img{max-width:90%;height:auto}#side-sortables .cmb2-list label,.inner-sidebar .cmb2-list label{display:inline;font-weight:400}#side-sortables .cmb2-metabox-description,.inner-sidebar .cmb2-metabox-description{display:block;padding:7px 0 0}#side-sortables .cmb-type-checkbox .cmb-td label,#side-sortables .cmb-type-checkbox .cmb2-metabox-description,.inner-sidebar .cmb-type-checkbox .cmb-td label,.inner-sidebar .cmb-type-checkbox .cmb2-metabox-description{font-weight:400;display:inline}#side-sortables .cmb-row .cmb2-metabox-description,.inner-sidebar .cmb-row .cmb2-metabox-description{padding-bottom:1.8em}#side-sortables .cmb2-metabox-title,.inner-sidebar .cmb2-metabox-title{font-size:1.2em;font-style:italic}#side-sortables .cmb-remove-row,.inner-sidebar .cmb-remove-row{clear:both;padding-top:12px;padding-bottom:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td{width:auto;clear:none;float:right;padding-top:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row{float:left;margin:0}#side-sortables .cmb2-upload-button,.inner-sidebar .cmb2-upload-button{clear:both;margin-top:12px}.cmb2-metabox .cmb-type-group{max-width:1000px}.cmb2-metabox .cmbhandle{color:#aaa;float:left;width:27px;height:30px;cursor:pointer;left:-1em;position:relative}.cmb2-metabox .cmbhandle:before{content:'\f142';left:12px;font:400 20px/1 dashicons;speak:none;display:inline-block;padding:8px 10px;top:0;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.cmb2-metabox .postbox.closed .cmbhandle:before{content:'\f140'}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row{-webkit-appearance:none!important;background:none!important;border:none!important;position:absolute;right:0;top:.5em;line-height:1em;padding:2px 6px 3px;opacity:.5}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]){cursor:pointer;color:#a00;opacity:1}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]):hover{color:red}* html .cmb2-element.ui-helper-clearfix{height:1%}.cmb2-element .ui-datepicker,.cmb2-element.ui-datepicker{padding:0;margin:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:#fff;border:1px solid #dfdfdf;border-top:none;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.075);box-shadow:0 3px 6px rgba(0,0,0,.075);min-width:17em;width:auto}.cmb2-element .ui-datepicker *,.cmb2-element.ui-datepicker *{padding:0;font-family:"Open Sans",sans-serif;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.cmb2-element .ui-datepicker table,.cmb2-element.ui-datepicker table{font-size:13px;margin:0;border:none;border-collapse:collapse}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{border:none;color:#fff;font-weight:400}.cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover{background:0 0;border-color:transparent;cursor:pointer}.cmb2-element .ui-datepicker .ui-datepicker-title,.cmb2-element.ui-datepicker .ui-datepicker-title{margin:0;padding:10px 0;color:#fff;font-size:14px;line-height:14px;text-align:center}.cmb2-element .ui-datepicker .ui-datepicker-title select,.cmb2-element.ui-datepicker .ui-datepicker-title select{margin-top:-8px;margin-bottom:-8px}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-prev{position:relative;top:0;height:34px;width:34px}.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-prev{border:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover,.cmb2-element.ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover{right:0}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-next-hover,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next-hover{left:0}.cmb2-element .ui-datepicker .ui-datepicker-next span,.cmb2-element .ui-datepicker .ui-datepicker-prev span,.cmb2-element.ui-datepicker .ui-datepicker-next span,.cmb2-element.ui-datepicker .ui-datepicker-prev span{display:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev{float:right}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next{float:left}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{font:400 20px/34px dashicons;padding-right:7px;color:#fff;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:34px;height:34px}.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{content:'\f341'}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before{content:'\f345'}.cmb2-element .ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover:before{opacity:.7}.cmb2-element .ui-datepicker select.ui-datepicker-month,.cmb2-element .ui-datepicker select.ui-datepicker-year,.cmb2-element.ui-datepicker select.ui-datepicker-month,.cmb2-element.ui-datepicker select.ui-datepicker-year{width:33%;background:0 0;border-color:transparent;box-shadow:none;color:#fff}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{color:#fff;font-weight:600}.cmb2-element .ui-datepicker thead th,.cmb2-element.ui-datepicker thead th{font-weight:400}.cmb2-element .ui-datepicker th,.cmb2-element.ui-datepicker th{padding:10px}.cmb2-element .ui-datepicker td,.cmb2-element.ui-datepicker td{padding:0;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-other-month,.cmb2-element.ui-datepicker td.ui-datepicker-other-month{border:transparent}.cmb2-element .ui-datepicker td.ui-datepicker-week-end,.cmb2-element.ui-datepicker td.ui-datepicker-week-end{background-color:#f4f4f4;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today{-webkit-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);-moz-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1)}.cmb2-element .ui-datepicker td.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-today{background-color:#f0f0c0}.cmb2-element .ui-datepicker td.ui-datepicker-current-day,.cmb2-element.ui-datepicker td.ui-datepicker-current-day{background:#bd8}.cmb2-element .ui-datepicker td .ui-state-default,.cmb2-element.ui-datepicker td .ui-state-default{background:0 0;border:none;text-align:center;text-decoration:none;width:auto;display:block;padding:5px 10px;font-weight:400;color:#444}.cmb2-element .ui-datepicker td.ui-state-disabled .ui-state-default,.cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default{opacity:.5}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{background:#32373c}.cmb2-element .ui-datepicker td .ui-state-active,.cmb2-element .ui-datepicker td .ui-state-hover,.cmb2-element.ui-datepicker td .ui-state-active,.cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.cmb2-element .ui-datepicker .ui-timepicker-div,.cmb2-element.ui-datepicker .ui-timepicker-div{font-size:14px}.cmb2-element .ui-datepicker .ui-timepicker-div dl,.cmb2-element.ui-datepicker .ui-timepicker-div dl{text-align:right;padding:0 .6em}.cmb2-element .ui-datepicker .ui-timepicker-div dl dt,.cmb2-element.ui-datepicker .ui-timepicker-div dl dt{float:right;clear:right;padding:0 5px 0 0}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd{margin:0 40% 10px 10px}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd select,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd select{width:100%}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane{padding:.6em;text-align:right}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary{padding:0 10px 1px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;margin:0 .4em .4em .6em}.admin-color-fresh .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.admin-color-fresh .cmb2-element .ui-datepicker thead,.admin-color-fresh .cmb2-element.ui-datepicker thead{background:#32373c}.admin-color-fresh .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header{background:#52accc}.admin-color-blue .cmb2-element .ui-datepicker thead,.admin-color-blue .cmb2-element.ui-datepicker thead{background:#4796b3}.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover{background:#096484;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-coffee .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header{background:#59524c}.admin-color-coffee .cmb2-element .ui-datepicker thead,.admin-color-coffee .cmb2-element.ui-datepicker thead{background:#46403c}.admin-color-coffee .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover{background:#c7a589;color:#fff}.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header{background:#523f6d}.admin-color-ectoplasm .cmb2-element .ui-datepicker thead,.admin-color-ectoplasm .cmb2-element.ui-datepicker thead{background:#413256}.admin-color-ectoplasm .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover{background:#a3b745;color:#fff}.admin-color-midnight .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header{background:#363b3f}.admin-color-midnight .cmb2-element .ui-datepicker thead,.admin-color-midnight .cmb2-element.ui-datepicker thead{background:#26292c}.admin-color-midnight .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover{background:#e14d43;color:#fff}.admin-color-ocean .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header{background:#738e96}.admin-color-ocean .cmb2-element .ui-datepicker thead,.admin-color-ocean .cmb2-element.ui-datepicker thead{background:#627c83}.admin-color-ocean .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover{background:#9ebaa0;color:#fff}.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header{background:#cf4944}.admin-color-sunrise .cmb2-element .ui-datepicker th,.admin-color-sunrise .cmb2-element.ui-datepicker th{border-color:#be3631;background:#be3631}.admin-color-sunrise .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover{background:#dd823b;color:#fff}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element.ui-datepicker .ui-widget-header{background:#e5e5e5}.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-year,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-year{color:#555}.admin-color-light .cmb2-element .ui-datepicker thead,.admin-color-light .cmb2-element.ui-datepicker thead{background:#888}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-default,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-default{color:#555}.admin-color-light .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover{background:#ccc}.admin-color-light .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header{background:#56b274}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker thead,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead{background:#36533f}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover{background:#446950;color:#fff}.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header{background:#4ca26a}.admin-color-bbp-mint .cmb2-element .ui-datepicker thead,.admin-color-bbp-mint .cmb2-element.ui-datepicker thead{background:#4f6d59}.admin-color-bbp-mint .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover{background:#5fb37c;color:#fff}@media (max-width:450px){.cmb-th{font-size:1.2em;padding-bottom:1em;text-align:right}.cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}.cmb-td,.cmb-th,.cmb-th+.cmb-td{display:block;float:none;width:100%}.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.postbox-container .cmb-repeatable-group:not(:last-of-type),.postbox-container .cmb-row:not(:last-of-type){border-bottom:0}} -
bim-ba/trunk/lib/cmb2/css/cmb2.css
r1608679 r1610879 459 459 clear: none; 460 460 display: inline-block; 461 vertical-align: middle;461 float: left; 462 462 margin-right: 10px; 463 463 width: auto; … … 468 468 .cmb2-media-status .img-status img { 469 469 max-width: 350px; 470 height: auto; 471 } 472 473 /* line 360, sass/partials/_main_wrap.scss */ 470 } 471 472 /* line 359, sass/partials/_main_wrap.scss */ 474 473 475 474 .cmb2-media-status .img-status img, … … 483 482 } 484 483 485 /* line 3 70, sass/partials/_main_wrap.scss */484 /* line 369, sass/partials/_main_wrap.scss */ 486 485 487 486 .cmb2-media-status .embed-status { … … 490 489 } 491 490 492 /* line 37 5, sass/partials/_main_wrap.scss */491 /* line 374, sass/partials/_main_wrap.scss */ 493 492 494 493 .cmb2-media-status .img-status, … … 497 496 } 498 497 499 /* line 37 8, sass/partials/_main_wrap.scss */498 /* line 377, sass/partials/_main_wrap.scss */ 500 499 501 500 .cmb2-media-status .img-status .cmb2-remove-file-button, … … 510 509 } 511 510 512 /* line 39 2, sass/partials/_main_wrap.scss */511 /* line 391, sass/partials/_main_wrap.scss */ 513 512 514 513 .cmb2-media-status .img-status .cmb2-remove-file-button { … … 516 515 } 517 516 518 /* line 39 7, sass/partials/_main_wrap.scss */517 /* line 396, sass/partials/_main_wrap.scss */ 519 518 520 519 .cmb2-media-status .img-status img, … … 523 522 } 524 523 525 /* line 40 3, sass/partials/_main_wrap.scss */524 /* line 402, sass/partials/_main_wrap.scss */ 526 525 527 526 .cmb-type-file-list .cmb2-media-status .img-status { 528 527 clear: none; 529 vertical-align: middle; 528 float: left; 529 margin-right: 10px; 530 530 width: auto; 531 margin-right: 10px; 532 margin-bottom: 10px; 533 margin-top: 0; 534 } 535 536 /* line 412, sass/partials/_main_wrap.scss */ 531 } 532 533 /* line 409, sass/partials/_main_wrap.scss */ 537 534 538 535 .cmb-attach-list li { 539 536 clear: both; 540 537 display: inline-block; 538 margin-bottom: 25px; 541 539 width: 100%; 542 margin-top: 5px; 543 margin-bottom: 10px; 544 } 545 546 /* line 419, sass/partials/_main_wrap.scss */ 540 } 541 542 /* line 415, sass/partials/_main_wrap.scss */ 547 543 548 544 .cmb-attach-list li img { … … 552 548 } 553 549 554 /* line 42 6, sass/partials/_main_wrap.scss */550 /* line 422, sass/partials/_main_wrap.scss */ 555 551 556 552 .cmb2-remove-wrapper { … … 558 554 } 559 555 560 /* line 4 30, sass/partials/_main_wrap.scss */556 /* line 426, sass/partials/_main_wrap.scss */ 561 557 562 558 .child-cmb2 .cmb-th { … … 584 580 /* line 16, sass/partials/_post_metaboxes.scss */ 585 581 586 . cmb2-postbox.cmb2-wrap,582 .postbox-container .cmb2-wrap, 587 583 .cmb-type-group .cmb2-wrap { 588 584 margin: 0; … … 591 587 /* line 19, sass/partials/_post_metaboxes.scss */ 592 588 593 . cmb2-postbox.cmb2-wrap > .cmb-field-list > .cmb-row,589 .postbox-container .cmb2-wrap > .cmb-field-list > .cmb-row, 594 590 .cmb-type-group .cmb2-wrap > .cmb-field-list > .cmb-row { 595 591 padding: 1.8em 0; … … 598 594 /* line 25, sass/partials/_post_metaboxes.scss */ 599 595 600 . cmb2-postbox.cmb2-wrap input[type=text].cmb2-oembed,596 .postbox-container .cmb2-wrap input[type=text].cmb2-oembed, 601 597 .cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed { 602 598 width: 100%; … … 605 601 /* line 31, sass/partials/_post_metaboxes.scss */ 606 602 607 . cmb2-postbox.cmb-row,603 .postbox-container .cmb-row, 608 604 .cmb-type-group .cmb-row { 609 605 padding: 0 0 1.8em; … … 613 609 /* line 35, sass/partials/_post_metaboxes.scss */ 614 610 615 . cmb2-postbox.cmb-row .cmbhandle,611 .postbox-container .cmb-row .cmbhandle, 616 612 .cmb-type-group .cmb-row .cmbhandle { 617 613 right: -1em; … … 621 617 /* line 41, sass/partials/_post_metaboxes.scss */ 622 618 623 . cmb2-postbox.cmb-repeatable-grouping,619 .postbox-container .cmb-repeatable-grouping, 624 620 .cmb-type-group .cmb-repeatable-grouping { 625 621 padding: 0 1em; … … 630 626 /* line 47, sass/partials/_post_metaboxes.scss */ 631 627 632 . cmb2-postbox.cmb-repeatable-group > .cmb-row,628 .postbox-container .cmb-repeatable-group > .cmb-row, 633 629 .cmb-type-group .cmb-repeatable-group > .cmb-row { 634 630 padding-bottom: 0; … … 637 633 /* line 51, sass/partials/_post_metaboxes.scss */ 638 634 639 . cmb2-postbox.cmb-th,635 .postbox-container .cmb-th, 640 636 .cmb-type-group .cmb-th { 641 637 width: 18%; … … 645 641 /* line 57, sass/partials/_post_metaboxes.scss */ 646 642 647 . cmb2-postbox.cmb-td,643 .postbox-container .cmb-td, 648 644 .cmb-type-group .cmb-td { 649 645 margin-bottom: 0; … … 654 650 /* line 63, sass/partials/_post_metaboxes.scss */ 655 651 656 . cmb2-postbox.cmb-repeat-row .cmb-td,652 .postbox-container .cmb-repeat-row .cmb-td, 657 653 .cmb-type-group .cmb-repeat-row .cmb-td { 658 654 padding-bottom: 1.8em; … … 661 657 /* line 67, sass/partials/_post_metaboxes.scss */ 662 658 663 . cmb2-postbox.cmb-th + .cmb-td,659 .postbox-container .cmb-th + .cmb-td, 664 660 .cmb-type-group .cmb-th + .cmb-td { 665 661 width: 80%; … … 669 665 /* line 72, sass/partials/_post_metaboxes.scss */ 670 666 671 . cmb2-postbox.cmb-row:not(:last-of-type),672 . cmb2-postbox.cmb-repeatable-group:not(:last-of-type),667 .postbox-container .cmb-row:not(:last-of-type), 668 .postbox-container .cmb-repeatable-group:not(:last-of-type), 673 669 .cmb-type-group .cmb-row:not(:last-of-type), 674 670 .cmb-type-group .cmb-repeatable-group:not(:last-of-type) { … … 678 674 /* line 81, sass/partials/_post_metaboxes.scss */ 679 675 680 . cmb2-postbox.cmb-repeat-group-field,681 . cmb2-postbox.cmb-remove-field-row,676 .postbox-container .cmb-repeat-group-field, 677 .postbox-container .cmb-remove-field-row, 682 678 .cmb-type-group .cmb-repeat-group-field, 683 679 .cmb-type-group .cmb-remove-field-row { … … 687 683 /* line 88, sass/partials/_post_metaboxes.scss */ 688 684 689 . cmb2-postbox.cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,690 . cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,685 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, 686 .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, 691 687 .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, 692 688 .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody { … … 697 693 /* line 92, sass/partials/_post_metaboxes.scss */ 698 694 699 . cmb2-postbox.cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,700 . cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,695 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, 696 .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, 701 697 .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, 702 698 .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text { … … 706 702 /* line 96, sass/partials/_post_metaboxes.scss */ 707 703 708 . cmb2-postbox.cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),709 . cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),704 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), 705 .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), 710 706 .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), 711 707 .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row) { … … 715 711 /* line 100, sass/partials/_post_metaboxes.scss */ 716 712 717 . cmb2-postbox.cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,718 . cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,713 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, 714 .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, 719 715 .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, 720 716 .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td { … … 726 722 /* line 106, sass/partials/_post_metaboxes.scss */ 727 723 728 . cmb2-postbox.cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,729 . cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,724 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, 725 .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, 730 726 .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, 731 727 .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td { … … 735 731 /* line 110, sass/partials/_post_metaboxes.scss */ 736 732 737 . cmb2-postbox.cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,738 . cmb2-postbox.cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,733 .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, 734 .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, 739 735 .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, 740 736 .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row { 741 737 padding-right: 0; 742 738 } 743 744 /*--------------------------------------------------------------745 Context Metaboxes746 --------------------------------------------------------------*/747 748 /* Metabox collapse arrow indicators */749 750 /* line 9, sass/partials/_context_metaboxes.scss */751 752 .js .cmb2-postbox.context-box .toggle-indicator:before {753 content: "\f142";754 display: inline-block;755 font: normal 20px/1 dashicons;756 speak: none;757 -webkit-font-smoothing: antialiased;758 -moz-osx-font-smoothing: grayscale;759 text-decoration: none !important;760 }761 762 /* line 22, sass/partials/_context_metaboxes.scss */763 764 .js .cmb2-postbox.context-box.closed .toggle-indicator:before {765 content: "\f140";766 }767 768 /* line 30, sass/partials/_context_metaboxes.scss */769 770 .cmb2-postbox.context-box {771 margin-bottom: 10px;772 }773 774 /* line 34, sass/partials/_context_metaboxes.scss */775 776 .cmb2-postbox.context-box.context-before_permalink-box {777 margin-top: 10px;778 }779 780 /* line 38, sass/partials/_context_metaboxes.scss */781 782 .cmb2-postbox.context-box.context-after_title-box {783 margin-top: 10px;784 }785 786 /* line 42, sass/partials/_context_metaboxes.scss */787 788 .cmb2-postbox.context-box.context-after_editor-box {789 margin-top: 20px;790 margin-bottom: 0;791 }792 793 /* line 47, sass/partials/_context_metaboxes.scss */794 795 .cmb2-postbox.context-box.context-form_top-box {796 margin-top: 10px;797 }798 799 /* line 51, sass/partials/_context_metaboxes.scss */800 801 .cmb2-postbox.context-box.context-form_top-box .hndle {802 font-size: 14px;803 padding: 8px 12px;804 margin: 0;805 line-height: 1.4;806 }807 808 /* line 59, sass/partials/_context_metaboxes.scss */809 810 .cmb2-postbox.context-box .hndle {811 cursor: auto;812 }813 814 /* line 64, sass/partials/_context_metaboxes.scss */815 816 .cmb2-context-wrap {817 margin-top: 10px;818 }819 820 /* line 68, sass/partials/_context_metaboxes.scss */821 822 .cmb2-context-wrap.cmb2-context-wrap-form_top {823 margin-right: 300px;824 width: auto;825 }826 827 /* line 75, sass/partials/_context_metaboxes.scss */828 829 .cmb2-context-wrap.cmb2-context-wrap-no-title .cmb2-metabox {830 padding: 10px;831 }832 833 /* line 80, sass/partials/_context_metaboxes.scss */834 835 .cmb2-context-wrap .cmb-th {836 padding: 0 2% 0 0;837 width: 18%;838 }839 840 /* line 85, sass/partials/_context_metaboxes.scss */841 842 .cmb2-context-wrap .cmb-td {843 width: 80%;844 padding: 0;845 }846 847 /* line 90, sass/partials/_context_metaboxes.scss */848 849 .cmb2-context-wrap .cmb-row {850 margin-bottom: 10px;851 }852 853 /* line 93, sass/partials/_context_metaboxes.scss */854 855 .cmb2-context-wrap .cmb-row:last-of-type {856 margin-bottom: 0;857 }858 859 /* one column on the post write/edit screen */860 739 861 740 /*-------------------------------------------------------------- … … 891 770 } 892 771 893 /* line 28, sass/partials/_misc.scss */ 894 895 .cmb2-postbox .cmb-spinner, 896 .cmb2-no-box-wrap .cmb-spinner { 772 /* line 27, sass/partials/_misc.scss */ 773 774 .postbox .cmb-spinner { 897 775 float: left; 898 display: none;899 }900 901 /* line 33, sass/partials/_misc.scss */902 903 .cmb-spinner {904 display: none;905 }906 907 /* line 35, sass/partials/_misc.scss */908 909 .cmb-spinner.is-active {910 display: block;911 776 } 912 777 … … 1449 1314 } 1450 1315 1451 /* line 149, sass/partials/_jquery_ui.scss */ 1452 1453 .cmb2-element.ui-datepicker select.ui-datepicker-month option, 1454 .cmb2-element.ui-datepicker select.ui-datepicker-year option, 1455 .cmb2-element .ui-datepicker select.ui-datepicker-month option, 1456 .cmb2-element .ui-datepicker select.ui-datepicker-year option { 1457 color: #333; 1458 } 1459 1460 /* line 154, sass/partials/_jquery_ui.scss */ 1316 /* line 151, sass/partials/_jquery_ui.scss */ 1461 1317 1462 1318 .cmb2-element.ui-datepicker thead, … … 1466 1322 } 1467 1323 1468 /* line 15 7, sass/partials/_jquery_ui.scss */1324 /* line 154, sass/partials/_jquery_ui.scss */ 1469 1325 1470 1326 .cmb2-element.ui-datepicker thead th, … … 1473 1329 } 1474 1330 1475 /* line 1 62, sass/partials/_jquery_ui.scss */1331 /* line 159, sass/partials/_jquery_ui.scss */ 1476 1332 1477 1333 .cmb2-element.ui-datepicker th, … … 1480 1336 } 1481 1337 1482 /* line 16 6, sass/partials/_jquery_ui.scss */1338 /* line 163, sass/partials/_jquery_ui.scss */ 1483 1339 1484 1340 .cmb2-element.ui-datepicker td, … … 1488 1344 } 1489 1345 1490 /* line 1 71, sass/partials/_jquery_ui.scss */1346 /* line 168, sass/partials/_jquery_ui.scss */ 1491 1347 1492 1348 .cmb2-element.ui-datepicker td.ui-datepicker-other-month, … … 1495 1351 } 1496 1352 1497 /* line 17 5, sass/partials/_jquery_ui.scss */1353 /* line 172, sass/partials/_jquery_ui.scss */ 1498 1354 1499 1355 .cmb2-element.ui-datepicker td.ui-datepicker-week-end, … … 1503 1359 } 1504 1360 1505 /* line 17 8, sass/partials/_jquery_ui.scss */1361 /* line 175, sass/partials/_jquery_ui.scss */ 1506 1362 1507 1363 .cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today, … … 1512 1368 } 1513 1369 1514 /* line 18 5, sass/partials/_jquery_ui.scss */1370 /* line 182, sass/partials/_jquery_ui.scss */ 1515 1371 1516 1372 .cmb2-element.ui-datepicker td.ui-datepicker-today, … … 1519 1375 } 1520 1376 1521 /* line 18 9, sass/partials/_jquery_ui.scss */1377 /* line 186, sass/partials/_jquery_ui.scss */ 1522 1378 1523 1379 .cmb2-element.ui-datepicker td.ui-datepicker-current-day, … … 1526 1382 } 1527 1383 1528 /* line 19 3, sass/partials/_jquery_ui.scss */1384 /* line 190, sass/partials/_jquery_ui.scss */ 1529 1385 1530 1386 .cmb2-element.ui-datepicker td .ui-state-default, … … 1541 1397 } 1542 1398 1543 /* line 20 5, sass/partials/_jquery_ui.scss */1399 /* line 202, sass/partials/_jquery_ui.scss */ 1544 1400 1545 1401 .cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default, … … 1548 1404 } 1549 1405 1550 /* line 2 10, sass/partials/_jquery_ui.scss */1406 /* line 207, sass/partials/_jquery_ui.scss */ 1551 1407 1552 1408 .cmb2-element.ui-datepicker .ui-widget-header, … … 1557 1413 } 1558 1414 1559 /* line 21 5, sass/partials/_jquery_ui.scss */1415 /* line 212, sass/partials/_jquery_ui.scss */ 1560 1416 1561 1417 .cmb2-element.ui-datepicker thead, … … 1564 1420 } 1565 1421 1566 /* line 21 9, sass/partials/_jquery_ui.scss */1422 /* line 216, sass/partials/_jquery_ui.scss */ 1567 1423 1568 1424 .cmb2-element.ui-datepicker td .ui-state-hover, … … 1574 1430 } 1575 1431 1576 /* line 22 4, sass/partials/_jquery_ui.scss */1432 /* line 221, sass/partials/_jquery_ui.scss */ 1577 1433 1578 1434 .cmb2-element.ui-datepicker .ui-timepicker-div, … … 1581 1437 } 1582 1438 1583 /* line 22 6, sass/partials/_jquery_ui.scss */1439 /* line 223, sass/partials/_jquery_ui.scss */ 1584 1440 1585 1441 .cmb2-element.ui-datepicker .ui-timepicker-div dl, … … 1589 1445 } 1590 1446 1591 /* line 22 9, sass/partials/_jquery_ui.scss */1447 /* line 226, sass/partials/_jquery_ui.scss */ 1592 1448 1593 1449 .cmb2-element.ui-datepicker .ui-timepicker-div dl dt, … … 1598 1454 } 1599 1455 1600 /* line 23 4, sass/partials/_jquery_ui.scss */1456 /* line 231, sass/partials/_jquery_ui.scss */ 1601 1457 1602 1458 .cmb2-element.ui-datepicker .ui-timepicker-div dl dd, … … 1605 1461 } 1606 1462 1607 /* line 23 6, sass/partials/_jquery_ui.scss */1463 /* line 233, sass/partials/_jquery_ui.scss */ 1608 1464 1609 1465 .cmb2-element.ui-datepicker .ui-timepicker-div dl dd select, … … 1612 1468 } 1613 1469 1614 /* line 2 42, sass/partials/_jquery_ui.scss */1470 /* line 239, sass/partials/_jquery_ui.scss */ 1615 1471 1616 1472 .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane, … … 1620 1476 } 1621 1477 1622 /* line 24 6, sass/partials/_jquery_ui.scss */1478 /* line 243, sass/partials/_jquery_ui.scss */ 1623 1479 1624 1480 .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-primary, … … 1633 1489 } 1634 1490 1635 /* line 2 60, sass/partials/_jquery_ui.scss */1491 /* line 257, sass/partials/_jquery_ui.scss */ 1636 1492 1637 1493 .admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header, … … 1642 1498 } 1643 1499 1644 /* line 26 5, sass/partials/_jquery_ui.scss */1500 /* line 262, sass/partials/_jquery_ui.scss */ 1645 1501 1646 1502 .admin-color-fresh .cmb2-element.ui-datepicker thead, … … 1649 1505 } 1650 1506 1651 /* line 26 9, sass/partials/_jquery_ui.scss */1507 /* line 266, sass/partials/_jquery_ui.scss */ 1652 1508 1653 1509 .admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover, … … 1657 1513 } 1658 1514 1659 /* line 27 7, sass/partials/_jquery_ui.scss */1515 /* line 274, sass/partials/_jquery_ui.scss */ 1660 1516 1661 1517 .admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header, … … 1666 1522 } 1667 1523 1668 /* line 2 82, sass/partials/_jquery_ui.scss */1524 /* line 279, sass/partials/_jquery_ui.scss */ 1669 1525 1670 1526 .admin-color-blue .cmb2-element.ui-datepicker thead, … … 1673 1529 } 1674 1530 1675 /* line 2 91, sass/partials/_jquery_ui.scss */1531 /* line 288, sass/partials/_jquery_ui.scss */ 1676 1532 1677 1533 .admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover, … … 1683 1539 } 1684 1540 1685 /* line 29 6, sass/partials/_jquery_ui.scss */1541 /* line 293, sass/partials/_jquery_ui.scss */ 1686 1542 1687 1543 .admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today, … … 1690 1546 } 1691 1547 1692 /* line 30 5, sass/partials/_jquery_ui.scss */1548 /* line 302, sass/partials/_jquery_ui.scss */ 1693 1549 1694 1550 .admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header, … … 1699 1555 } 1700 1556 1701 /* line 3 10, sass/partials/_jquery_ui.scss */1557 /* line 307, sass/partials/_jquery_ui.scss */ 1702 1558 1703 1559 .admin-color-coffee .cmb2-element.ui-datepicker thead, … … 1706 1562 } 1707 1563 1708 /* line 31 4, sass/partials/_jquery_ui.scss */1564 /* line 311, sass/partials/_jquery_ui.scss */ 1709 1565 1710 1566 .admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover, … … 1714 1570 } 1715 1571 1716 /* line 3 22, sass/partials/_jquery_ui.scss */1572 /* line 319, sass/partials/_jquery_ui.scss */ 1717 1573 1718 1574 .admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header, … … 1723 1579 } 1724 1580 1725 /* line 32 7, sass/partials/_jquery_ui.scss */1581 /* line 324, sass/partials/_jquery_ui.scss */ 1726 1582 1727 1583 .admin-color-ectoplasm .cmb2-element.ui-datepicker thead, … … 1730 1586 } 1731 1587 1732 /* line 3 31, sass/partials/_jquery_ui.scss */1588 /* line 328, sass/partials/_jquery_ui.scss */ 1733 1589 1734 1590 .admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover, … … 1738 1594 } 1739 1595 1740 /* line 33 9, sass/partials/_jquery_ui.scss */1596 /* line 336, sass/partials/_jquery_ui.scss */ 1741 1597 1742 1598 .admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header, … … 1747 1603 } 1748 1604 1749 /* line 34 4, sass/partials/_jquery_ui.scss */1605 /* line 341, sass/partials/_jquery_ui.scss */ 1750 1606 1751 1607 .admin-color-midnight .cmb2-element.ui-datepicker thead, … … 1754 1610 } 1755 1611 1756 /* line 34 8, sass/partials/_jquery_ui.scss */1612 /* line 345, sass/partials/_jquery_ui.scss */ 1757 1613 1758 1614 .admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover, … … 1762 1618 } 1763 1619 1764 /* line 35 6, sass/partials/_jquery_ui.scss */1620 /* line 353, sass/partials/_jquery_ui.scss */ 1765 1621 1766 1622 .admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header, … … 1771 1627 } 1772 1628 1773 /* line 3 61, sass/partials/_jquery_ui.scss */1629 /* line 358, sass/partials/_jquery_ui.scss */ 1774 1630 1775 1631 .admin-color-ocean .cmb2-element.ui-datepicker thead, … … 1778 1634 } 1779 1635 1780 /* line 36 5, sass/partials/_jquery_ui.scss */1636 /* line 362, sass/partials/_jquery_ui.scss */ 1781 1637 1782 1638 .admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover, … … 1786 1642 } 1787 1643 1788 /* line 37 3, sass/partials/_jquery_ui.scss */1644 /* line 370, sass/partials/_jquery_ui.scss */ 1789 1645 1790 1646 .admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header, … … 1797 1653 } 1798 1654 1799 /* line 37 9, sass/partials/_jquery_ui.scss */1655 /* line 376, sass/partials/_jquery_ui.scss */ 1800 1656 1801 1657 .admin-color-sunrise .cmb2-element.ui-datepicker th, … … 1805 1661 } 1806 1662 1807 /* line 38 4, sass/partials/_jquery_ui.scss */1663 /* line 381, sass/partials/_jquery_ui.scss */ 1808 1664 1809 1665 .admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover, … … 1813 1669 } 1814 1670 1815 /* line 3 92, sass/partials/_jquery_ui.scss */1671 /* line 389, sass/partials/_jquery_ui.scss */ 1816 1672 1817 1673 .admin-color-light .cmb2-element.ui-datepicker .ui-widget-header, … … 1822 1678 } 1823 1679 1824 /* line 39 7, sass/partials/_jquery_ui.scss */1680 /* line 394, sass/partials/_jquery_ui.scss */ 1825 1681 1826 1682 .admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month, … … 1831 1687 } 1832 1688 1833 /* line 402, sass/partials/_jquery_ui.scss */1689 /* line 399, sass/partials/_jquery_ui.scss */ 1834 1690 1835 1691 .admin-color-light .cmb2-element.ui-datepicker thead, … … 1838 1694 } 1839 1695 1840 /* line 40 6, sass/partials/_jquery_ui.scss */1696 /* line 403, sass/partials/_jquery_ui.scss */ 1841 1697 1842 1698 .admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title, … … 1851 1707 } 1852 1708 1853 /* line 41 4, sass/partials/_jquery_ui.scss */1709 /* line 411, sass/partials/_jquery_ui.scss */ 1854 1710 1855 1711 .admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover, … … 1860 1716 } 1861 1717 1862 /* line 41 8, sass/partials/_jquery_ui.scss */1718 /* line 415, sass/partials/_jquery_ui.scss */ 1863 1719 1864 1720 .admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today, … … 1867 1723 } 1868 1724 1869 /* line 42 6, sass/partials/_jquery_ui.scss */1725 /* line 423, sass/partials/_jquery_ui.scss */ 1870 1726 1871 1727 .admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header, … … 1876 1732 } 1877 1733 1878 /* line 4 31, sass/partials/_jquery_ui.scss */1734 /* line 428, sass/partials/_jquery_ui.scss */ 1879 1735 1880 1736 .admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead, … … 1883 1739 } 1884 1740 1885 /* line 43 5, sass/partials/_jquery_ui.scss */1741 /* line 432, sass/partials/_jquery_ui.scss */ 1886 1742 1887 1743 .admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover, … … 1891 1747 } 1892 1748 1893 /* line 44 3, sass/partials/_jquery_ui.scss */1749 /* line 440, sass/partials/_jquery_ui.scss */ 1894 1750 1895 1751 .admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header, … … 1900 1756 } 1901 1757 1902 /* line 44 8, sass/partials/_jquery_ui.scss */1758 /* line 445, sass/partials/_jquery_ui.scss */ 1903 1759 1904 1760 .admin-color-bbp-mint .cmb2-element.ui-datepicker thead, … … 1907 1763 } 1908 1764 1909 /* line 4 52, sass/partials/_jquery_ui.scss */1765 /* line 449, sass/partials/_jquery_ui.scss */ 1910 1766 1911 1767 .admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover, … … 1916 1772 1917 1773 /*# sourceMappingURL=cmb2.css.map */ 1918 1919 @media only screen and (max-width: 850px) {1920 1921 /* line 103, sass/partials/_context_metaboxes.scss */1922 1923 .cmb2-context-wrap.cmb2-context-wrap-form_top {1924 margin-right: 0;1925 }1926 1927 }1928 1774 1929 1775 @media (max-width: 450px) { … … 1958 1804 } 1959 1805 1960 /* line 43 5, sass/partials/_main_wrap.scss */1806 /* line 431, sass/partials/_main_wrap.scss */ 1961 1807 1962 1808 .cmb-th, … … 1970 1816 /* line 72, sass/partials/_post_metaboxes.scss */ 1971 1817 1972 . cmb2-postbox.cmb-row:not(:last-of-type),1973 . cmb2-postbox.cmb-repeatable-group:not(:last-of-type),1818 .postbox-container .cmb-row:not(:last-of-type), 1819 .postbox-container .cmb-repeatable-group:not(:last-of-type), 1974 1820 .cmb-type-group .cmb-row:not(:last-of-type), 1975 1821 .cmb-type-group .cmb-repeatable-group:not(:last-of-type) { -
bim-ba/trunk/lib/cmb2/css/cmb2.min.css
r1608679 r1610879 1 .cmb2-wrap{margin:0}.cmb2-wrap input,.cmb2-wrap textarea{font-size:14px;max-width:100%;padding:5px}.cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb2-wrap textarea{width:500px}.cmb2-wrap textarea.cmb2-textarea-code{font-family:"Courier 10 Pitch",Courier,monospace;line-height:16px}.cmb2-wrap input.cmb2-text-small,.cmb2-wrap input.cmb2-timepicker{width:100px}.cmb2-wrap input.cmb2-text-money{width:90px}.cmb2-wrap input.cmb2-text-medium{width:230px}.cmb2-wrap input.cmb2-upload-file{width:65%}.cmb2-wrap input.ed_button{padding:2px 4px}.cmb2-wrap input:not([type=hidden])+.button,.cmb2-wrap input:not([type=hidden])+input,.cmb2-wrap input:not([type=hidden])+select{margin-left:20px}.cmb2-wrap ul{margin:0}.cmb2-wrap li{font-size:14px;line-height:16px;margin:1px 0 5px}.cmb2-wrap select{font-size:14px;margin-top:3px}.cmb2-wrap input:focus,.cmb2-wrap textarea:focus{background:#fffff8}.cmb2-wrap input[type=checkbox],.cmb2-wrap input[type=radio]{margin:0 5px 0 0;padding:0}.cmb2-wrap .button,.cmb2-wrap button{white-space:nowrap}.cmb2-wrap .mceLayout{border:1px solid #e9e9e9!important}.cmb2-wrap .mceIframeContainer{background:#fff}.cmb2-wrap .meta_mce{width:97%}.cmb2-wrap .meta_mce textarea{width:100%}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-input-wrap{vertical-align:middle}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-container{margin:0 10px 0 0}.cmb2-wrap .cmb-row{margin:0}.cmb2-wrap .cmb-row:after{content:'';clear:both;display:block;width:100%}.cmb2-wrap .cmb-row.cmb-repeat-row{padding:1.8em 0 0}.cmb2-wrap .cmb-row.cmb-repeat-row:first-of-type{padding:0}.cmb2-wrap .cmb-row.cmb-repeat .cmb2-metabox-description{padding-top:0;padding-bottom:1.8em}.cmb2-metabox{clear:both;margin:0}.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-th,.cmb2-metabox>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox>.cmb-row:first-of-type>.cmb-th{border:0}.cmb2-metabox>.cmb-row .cmb-repeat-table .cmb-row>.cmb-td{padding-right:20px;box-sizing:border-box;float:left}.cmb-add-row{margin:1.8em 0 0}.cmb-nested .cmb-td,.cmb-repeatable-group .cmb-th,.cmb-repeatable-group:first-of-type{border:0}.cmb-repeatable-group:last-of-type,.cmb-row:last-of-type,.cmb2-wrap .cmb-row:last-of-type{border-bottom:0}.cmb-repeatable-grouping{border:1px solid #e9e9e9;padding:0 1em;max-width:1000px}.cmb-repeatable-grouping.cmb-row{margin:0 0 .8em}.cmb-th{color:#222;float:left;font-weight:600;line-height:1.3;padding:20px 10px 20px 0;vertical-align:top;width:200px}.cmb-td{line-height:1.3;max-width:100%;padding:15px 10px;vertical-align:middle}.cmb-type-title .cmb-td{padding:0}.cmb-th label{display:block;padding:5px 0}.cmb-th+.cmb-td{float:left}.cmb-td .cmb-td{padding-bottom:1em}.cmb-remove-row{text-align:right}.empty-row.hidden{display:none}.cmb-repeatable-group .cmb-th{padding:5px}.cmb-repeatable-group .cmb-group-title{background-color:#e9e9e9;padding:8px 12px 8px 2.2em;margin:0 -1em;min-height:1.5em;font-size:14px;line-height:1.4}.cmb-repeatable-group .cmb-group-title h4{border:0;margin:0;font-size:1.2em;font-weight:500;padding:.5em .75em}.cmb-repeatable-group .cmb-group-title .cmb-th{display:block;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th{font-size:1.2em;display:block;float:none;padding-bottom:1em;text-align:left;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-repeatable-group .cmb-group-description .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}.cmb-repeatable-group .cmb-shift-rows{font-size:1em;margin-right:1em;text-decoration:none}.cmb-repeatable-group .cmb-shift-rows .dashicons{font-size:1.5em;height:1.5em;line-height:1.2em;width:1em}.cmb-repeatable-group .cmb-shift-rows .dashicons.dashicons-arrow-down-alt2{line-height:1.3em}.cmb-repeatable-group .cmb2-upload-button{float:right}p.cmb2-metabox-description{color:#aaa;font-style:italic;margin:0;padding-top:.5em}span.cmb2-metabox-description{color:#aaa;font-style:italic}.cmb2-metabox-title{margin:0 0 5px;padding:5px 0 0;font-size:14px}.cmb-inline ul{padding:4px 0 0}.cmb-inline li{display:inline-block;padding-right:18px}.cmb-type-textarea-code pre{margin:0}.cmb2-media-status .img-status{clear:none;display:inline-block; vertical-align:middle;margin-right:10px;width:auto}.cmb2-media-status .img-status img{max-width:350px;height:auto}.cmb2-media-status .embed-status,.cmb2-media-status .img-status img{background:#fff;border:1px solid #e9e9e9;border-radius:2px;-moz-border-radius:2px;margin:15px 0 0;padding:5px}.cmb2-media-status .embed-status{float:left;max-width:800px}.cmb2-media-status .embed-status,.cmb2-media-status .img-status{position:relative}.cmb2-media-status .embed-status .cmb2-remove-file-button,.cmb2-media-status .img-status .cmb2-remove-file-button{background:url(../images/ico-delete.png);height:16px;left:-5px;position:absolute;text-indent:-9999px;top:-5px;width:16px}.cmb2-media-status .img-status .cmb2-remove-file-button{top:10px}.cmb2-media-status .file-status>span,.cmb2-media-status .img-status img{cursor:pointer}.cmb-type-file-list .cmb2-media-status .img-status{clear:none;vertical-align:middle;width:auto;margin-right:10px;margin-bottom:10px;margin-top:0}.cmb-attach-list li{clear:both;display:inline-block;width:100%;margin-top:5px;margin-bottom:10px}.cmb-attach-list li img{cursor:move;float:left;margin-right:10px}.cmb2-remove-wrapper{margin:0}.child-cmb2 .cmb-th{text-align:left}#poststuff .cmb-group-title{margin-left:-1em;margin-right:-1em;min-height:1.5em}#poststuff .repeatable .cmb-group-title{padding-left:2.2em}.cmb-type-group .cmb2-wrap,.cmb2-postbox .cmb2-wrap{margin:0}.cmb-type-group .cmb2-wrap>.cmb-field-list>.cmb-row,.cmb2-postbox .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.8em 0}.cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed,.cmb2-postbox .cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb-type-group .cmb-row,.cmb2-postbox .cmb-row{padding:0 0 1.8em;margin:0 0 .8em}.cmb-type-group .cmb-row .cmbhandle,.cmb2-postbox .cmb-row .cmbhandle{right:-1em;position:relative}.cmb-type-group .cmb-repeatable-grouping,.cmb2-postbox .cmb-repeatable-grouping{padding:0 1em;max-width:100%;min-width:1px!important}.cmb-type-group .cmb-repeatable-group>.cmb-row,.cmb2-postbox .cmb-repeatable-group>.cmb-row{padding-bottom:0}.cmb-type-group .cmb-th,.cmb2-postbox .cmb-th{width:18%;padding:0 2% 0 0}.cmb-type-group .cmb-td,.cmb2-postbox .cmb-td{margin-bottom:0;padding:0;line-height:1.3}.cmb-type-group .cmb-repeat-row .cmb-td,.cmb2-postbox .cmb-repeat-row .cmb-td{padding-bottom:1.8em}.cmb-type-group .cmb-th+.cmb-td,.cmb2-postbox .cmb-th+.cmb-td{width:80%;float:right}.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.cmb2-postbox .cmb-repeatable-group:not(:last-of-type),.cmb2-postbox .cmb-row:not(:last-of-type){border-bottom:1px solid #e9e9e9}.cmb-type-group .cmb-remove-field-row,.cmb-type-group .cmb-repeat-group-field,.cmb2-postbox .cmb-remove-field-row,.cmb2-postbox .cmb-repeat-group-field{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody{display:table;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text{width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row){display:table-row}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td{display:table-cell;float:none;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb2-postbox .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb2-postbox .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row{padding-right:0}.js .cmb2-postbox.context-box .toggle-indicator:before{content:"\f142";display:inline-block;font:400 20px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.js .cmb2-postbox.context-box.closed .toggle-indicator:before{content:"\f140"}.cmb2-postbox.context-box{margin-bottom:10px}.cmb2-postbox.context-box.context-after_title-box,.cmb2-postbox.context-box.context-before_permalink-box{margin-top:10px}.cmb2-postbox.context-box.context-after_editor-box{margin-top:20px;margin-bottom:0}.cmb2-postbox.context-box.context-form_top-box{margin-top:10px}.cmb2-postbox.context-box.context-form_top-box .hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.cmb2-postbox.context-box .hndle{cursor:auto}.cmb2-context-wrap{margin-top:10px}.cmb2-context-wrap.cmb2-context-wrap-form_top{margin-right:300px;width:auto}.cmb2-context-wrap.cmb2-context-wrap-no-title .cmb2-metabox{padding:10px}.cmb2-context-wrap .cmb-th{padding:0 2% 0 0;width:18%}.cmb2-context-wrap .cmb-td{width:80%;padding:0}.cmb2-context-wrap .cmb-row{margin-bottom:10px}.cmb2-context-wrap .cmb-row:last-of-type{margin-bottom:0}#poststuff .cmb-repeatable-group h2{margin:0}.edit-tags-php .cmb2-metabox-title,.profile-php .cmb2-metabox-title,.user-edit-php .cmb2-metabox-title{font-size:1.4em}.cmb2-options-page .cmb2-metabox-title{font-size:1.3em;margin:1em 0}.cmb2-options-page .cmb2-metabox-title+p.cmb2-metabox-description{margin-top:-1.6em;margin-bottom:.8em}.cmb2-no-box-wrap .cmb-spinner,.cmb2-postbox .cmb-spinner{float:left;display:none}.cmb-spinner{display:none}.cmb-spinner.is-active{display:block}#side-sortables .cmb2-wrap>.cmb-field-list>.cmb-row,.inner-sidebar .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.4em 0}#side-sortables .cmb2-wrap input[type=text]:not(.wp-color-picker),.inner-sidebar .cmb2-wrap input[type=text]:not(.wp-color-picker){width:100%}#side-sortables .cmb2-wrap input+input:not(.wp-picker-clear),#side-sortables .cmb2-wrap input+select,.inner-sidebar .cmb2-wrap input+input:not(.wp-picker-clear),.inner-sidebar .cmb2-wrap input+select{margin-left:0;margin-top:1em;display:block}#side-sortables .cmb2-wrap input.cmb2-text-money,.inner-sidebar .cmb2-wrap input.cmb2-text-money{max-width:70%}#side-sortables .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description,.inner-sidebar .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description{display:block}#side-sortables .cmb2-wrap label,.inner-sidebar .cmb2-wrap label{display:block;font-weight:700;padding:0 0 5px}#side-sortables textarea,.inner-sidebar textarea{max-width:99%}#side-sortables .cmb-repeatable-group,.inner-sidebar .cmb-repeatable-group{border-bottom:1px solid #e9e9e9}#side-sortables .cmb-type-group>.cmb-td>.cmb-repeatable-group,.inner-sidebar .cmb-type-group>.cmb-td>.cmb-repeatable-group{border-bottom:0;margin-bottom:-1.4em}#side-sortables .cmb-td,#side-sortables .cmb-th,#side-sortables .cmb-th+.cmb-td,.inner-sidebar .cmb-td,.inner-sidebar .cmb-th,.inner-sidebar .cmb-th+.cmb-td{width:100%;display:block;float:none}#side-sortables .closed .inside,.inner-sidebar .closed .inside{display:none}#side-sortables .cmb-td .cmb-td,.inner-sidebar .cmb-td .cmb-td{padding-bottom:1em}#side-sortables .cmb-th,.inner-sidebar .cmb-th{display:block;float:none;padding-bottom:1em;text-align:left;width:100%;padding-left:0;padding-right:0}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{display:block;margin-top:0;padding-bottom:5px}#side-sortables .cmb-th label:after,.inner-sidebar .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{font-size:14px;line-height:1.4em}#side-sortables .cmb-group-description .cmb-th,.inner-sidebar .cmb-group-description .cmb-th{padding-top:0}#side-sortables .cmb-group-description .cmb2-metabox-description,#side-sortables .cmb-group-title .cmb-th,.inner-sidebar .cmb-group-description .cmb2-metabox-description,.inner-sidebar .cmb-group-title .cmb-th{padding:0}#side-sortables .cmb-repeatable-grouping+.cmb-repeatable-grouping,.inner-sidebar .cmb-repeatable-grouping+.cmb-repeatable-grouping{margin-top:1em}#side-sortables .cmb2-media-status .embed-status img,#side-sortables .cmb2-media-status .img-status img,.inner-sidebar .cmb2-media-status .embed-status img,.inner-sidebar .cmb2-media-status .img-status img{max-width:90%;height:auto}#side-sortables .cmb2-list label,.inner-sidebar .cmb2-list label{display:inline;font-weight:400}#side-sortables .cmb2-metabox-description,.inner-sidebar .cmb2-metabox-description{display:block;padding:7px 0 0}#side-sortables .cmb-type-checkbox .cmb-td label,#side-sortables .cmb-type-checkbox .cmb2-metabox-description,.inner-sidebar .cmb-type-checkbox .cmb-td label,.inner-sidebar .cmb-type-checkbox .cmb2-metabox-description{font-weight:400;display:inline}#side-sortables .cmb-row .cmb2-metabox-description,.inner-sidebar .cmb-row .cmb2-metabox-description{padding-bottom:1.8em}#side-sortables .cmb2-metabox-title,.inner-sidebar .cmb2-metabox-title{font-size:1.2em;font-style:italic}#side-sortables .cmb-remove-row,.inner-sidebar .cmb-remove-row{clear:both;padding-top:12px;padding-bottom:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td{width:auto;clear:none;float:left;padding-top:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row{float:right;margin:0}#side-sortables .cmb2-upload-button,.inner-sidebar .cmb2-upload-button{clear:both;margin-top:12px}.cmb2-metabox .cmb-type-group{max-width:1000px}.cmb2-metabox .cmbhandle{color:#aaa;float:right;width:27px;height:30px;cursor:pointer;right:-1em;position:relative}.cmb2-metabox .cmbhandle:before{content:'\f142';right:12px;font:400 20px/1 dashicons;speak:none;display:inline-block;padding:8px 10px;top:0;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.cmb2-metabox .postbox.closed .cmbhandle:before{content:'\f140'}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row{-webkit-appearance:none!important;background:none!important;border:none!important;position:absolute;left:0;top:.5em;line-height:1em;padding:2px 6px 3px;opacity:.5}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]){cursor:pointer;color:#a00;opacity:1}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]):hover{color:red}* html .cmb2-element.ui-helper-clearfix{height:1%}.cmb2-element .ui-datepicker,.cmb2-element.ui-datepicker{padding:0;margin:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:#fff;border:1px solid #dfdfdf;border-top:none;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.075);box-shadow:0 3px 6px rgba(0,0,0,.075);min-width:17em;width:auto}.cmb2-element .ui-datepicker *,.cmb2-element.ui-datepicker *{padding:0;font-family:"Open Sans",sans-serif;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.cmb2-element .ui-datepicker table,.cmb2-element.ui-datepicker table{font-size:13px;margin:0;border:none;border-collapse:collapse}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{border:none;color:#fff;font-weight:400}.cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover{background:0 0;border-color:transparent;cursor:pointer}.cmb2-element .ui-datepicker .ui-datepicker-title,.cmb2-element.ui-datepicker .ui-datepicker-title{margin:0;padding:10px 0;color:#fff;font-size:14px;line-height:14px;text-align:center}.cmb2-element .ui-datepicker .ui-datepicker-title select,.cmb2-element.ui-datepicker .ui-datepicker-title select{margin-top:-8px;margin-bottom:-8px}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-prev{position:relative;top:0;height:34px;width:34px}.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-prev{border:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover,.cmb2-element.ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover{left:0}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-next-hover,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next-hover{right:0}.cmb2-element .ui-datepicker .ui-datepicker-next span,.cmb2-element .ui-datepicker .ui-datepicker-prev span,.cmb2-element.ui-datepicker .ui-datepicker-next span,.cmb2-element.ui-datepicker .ui-datepicker-prev span{display:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev{float:left}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next{float:right}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{font:400 20px/34px dashicons;padding-left:7px;color:#fff;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:34px;height:34px}.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{content:'\f341'}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before{content:'\f345'}.cmb2-element .ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover:before{opacity:.7}.cmb2-element .ui-datepicker select.ui-datepicker-month,.cmb2-element .ui-datepicker select.ui-datepicker-year,.cmb2-element.ui-datepicker select.ui-datepicker-month,.cmb2-element.ui-datepicker select.ui-datepicker-year{width:33%;background:0 0;border-color:transparent;box-shadow:none;color:#fff}.cmb2-element .ui-datepicker select.ui-datepicker-month option,.cmb2-element .ui-datepicker select.ui-datepicker-year option,.cmb2-element.ui-datepicker select.ui-datepicker-month option,.cmb2-element.ui-datepicker select.ui-datepicker-year option{color:#333}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{color:#fff;font-weight:600}.cmb2-element .ui-datepicker thead th,.cmb2-element.ui-datepicker thead th{font-weight:400}.cmb2-element .ui-datepicker th,.cmb2-element.ui-datepicker th{padding:10px}.cmb2-element .ui-datepicker td,.cmb2-element.ui-datepicker td{padding:0;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-other-month,.cmb2-element.ui-datepicker td.ui-datepicker-other-month{border:transparent}.cmb2-element .ui-datepicker td.ui-datepicker-week-end,.cmb2-element.ui-datepicker td.ui-datepicker-week-end{background-color:#f4f4f4;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today{-webkit-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);-moz-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1)}.cmb2-element .ui-datepicker td.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-today{background-color:#f0f0c0}.cmb2-element .ui-datepicker td.ui-datepicker-current-day,.cmb2-element.ui-datepicker td.ui-datepicker-current-day{background:#bd8}.cmb2-element .ui-datepicker td .ui-state-default,.cmb2-element.ui-datepicker td .ui-state-default{background:0 0;border:none;text-align:center;text-decoration:none;width:auto;display:block;padding:5px 10px;font-weight:400;color:#444}.cmb2-element .ui-datepicker td.ui-state-disabled .ui-state-default,.cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default{opacity:.5}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{background:#32373c}.cmb2-element .ui-datepicker td .ui-state-active,.cmb2-element .ui-datepicker td .ui-state-hover,.cmb2-element.ui-datepicker td .ui-state-active,.cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.cmb2-element .ui-datepicker .ui-timepicker-div,.cmb2-element.ui-datepicker .ui-timepicker-div{font-size:14px}.cmb2-element .ui-datepicker .ui-timepicker-div dl,.cmb2-element.ui-datepicker .ui-timepicker-div dl{text-align:left;padding:0 .6em}.cmb2-element .ui-datepicker .ui-timepicker-div dl dt,.cmb2-element.ui-datepicker .ui-timepicker-div dl dt{float:left;clear:left;padding:0 0 0 5px}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd{margin:0 10px 10px 40%}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd select,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd select{width:100%}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane{padding:.6em;text-align:left}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary{padding:0 10px 1px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;margin:0 .6em .4em .4em}.admin-color-fresh .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.admin-color-fresh .cmb2-element .ui-datepicker thead,.admin-color-fresh .cmb2-element.ui-datepicker thead{background:#32373c}.admin-color-fresh .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header{background:#52accc}.admin-color-blue .cmb2-element .ui-datepicker thead,.admin-color-blue .cmb2-element.ui-datepicker thead{background:#4796b3}.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover{background:#096484;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-coffee .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header{background:#59524c}.admin-color-coffee .cmb2-element .ui-datepicker thead,.admin-color-coffee .cmb2-element.ui-datepicker thead{background:#46403c}.admin-color-coffee .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover{background:#c7a589;color:#fff}.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header{background:#523f6d}.admin-color-ectoplasm .cmb2-element .ui-datepicker thead,.admin-color-ectoplasm .cmb2-element.ui-datepicker thead{background:#413256}.admin-color-ectoplasm .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover{background:#a3b745;color:#fff}.admin-color-midnight .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header{background:#363b3f}.admin-color-midnight .cmb2-element .ui-datepicker thead,.admin-color-midnight .cmb2-element.ui-datepicker thead{background:#26292c}.admin-color-midnight .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover{background:#e14d43;color:#fff}.admin-color-ocean .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header{background:#738e96}.admin-color-ocean .cmb2-element .ui-datepicker thead,.admin-color-ocean .cmb2-element.ui-datepicker thead{background:#627c83}.admin-color-ocean .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover{background:#9ebaa0;color:#fff}.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header{background:#cf4944}.admin-color-sunrise .cmb2-element .ui-datepicker th,.admin-color-sunrise .cmb2-element.ui-datepicker th{border-color:#be3631;background:#be3631}.admin-color-sunrise .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover{background:#dd823b;color:#fff}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element.ui-datepicker .ui-widget-header{background:#e5e5e5}.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-year,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-year{color:#555}.admin-color-light .cmb2-element .ui-datepicker thead,.admin-color-light .cmb2-element.ui-datepicker thead{background:#888}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-default,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-default{color:#555}.admin-color-light .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover{background:#ccc}.admin-color-light .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header{background:#56b274}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker thead,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead{background:#36533f}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover{background:#446950;color:#fff}.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header{background:#4ca26a}.admin-color-bbp-mint .cmb2-element .ui-datepicker thead,.admin-color-bbp-mint .cmb2-element.ui-datepicker thead{background:#4f6d59}.admin-color-bbp-mint .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover{background:#5fb37c;color:#fff}@media only screen and (max-width:850px){.cmb2-context-wrap.cmb2-context-wrap-form_top{margin-right:0}}@media (max-width:450px){.cmb-th{font-size:1.2em;padding-bottom:1em;text-align:left}.cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}.cmb-td,.cmb-th,.cmb-th+.cmb-td{display:block;float:none;width:100%}.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.cmb2-postbox .cmb-repeatable-group:not(:last-of-type),.cmb2-postbox.cmb-row:not(:last-of-type){border-bottom:0}}1 .cmb2-wrap{margin:0}.cmb2-wrap input,.cmb2-wrap textarea{font-size:14px;max-width:100%;padding:5px}.cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb2-wrap textarea{width:500px}.cmb2-wrap textarea.cmb2-textarea-code{font-family:"Courier 10 Pitch",Courier,monospace;line-height:16px}.cmb2-wrap input.cmb2-text-small,.cmb2-wrap input.cmb2-timepicker{width:100px}.cmb2-wrap input.cmb2-text-money{width:90px}.cmb2-wrap input.cmb2-text-medium{width:230px}.cmb2-wrap input.cmb2-upload-file{width:65%}.cmb2-wrap input.ed_button{padding:2px 4px}.cmb2-wrap input:not([type=hidden])+.button,.cmb2-wrap input:not([type=hidden])+input,.cmb2-wrap input:not([type=hidden])+select{margin-left:20px}.cmb2-wrap ul{margin:0}.cmb2-wrap li{font-size:14px;line-height:16px;margin:1px 0 5px}.cmb2-wrap select{font-size:14px;margin-top:3px}.cmb2-wrap input:focus,.cmb2-wrap textarea:focus{background:#fffff8}.cmb2-wrap input[type=checkbox],.cmb2-wrap input[type=radio]{margin:0 5px 0 0;padding:0}.cmb2-wrap .button,.cmb2-wrap button{white-space:nowrap}.cmb2-wrap .mceLayout{border:1px solid #e9e9e9!important}.cmb2-wrap .mceIframeContainer{background:#fff}.cmb2-wrap .meta_mce{width:97%}.cmb2-wrap .meta_mce textarea{width:100%}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-input-wrap{vertical-align:middle}.cmb2-wrap .wp-color-result,.cmb2-wrap .wp-picker-container{margin:0 10px 0 0}.cmb2-wrap .cmb-row{margin:0}.cmb2-wrap .cmb-row:after{content:'';clear:both;display:block;width:100%}.cmb2-wrap .cmb-row.cmb-repeat-row{padding:1.8em 0 0}.cmb2-wrap .cmb-row.cmb-repeat-row:first-of-type{padding:0}.cmb2-wrap .cmb-row.cmb-repeat .cmb2-metabox-description{padding-top:0;padding-bottom:1.8em}.cmb2-metabox{clear:both;margin:0}.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox .cmb-field-list>.cmb-row:first-of-type>.cmb-th,.cmb2-metabox>.cmb-row:first-of-type>.cmb-td,.cmb2-metabox>.cmb-row:first-of-type>.cmb-th{border:0}.cmb2-metabox>.cmb-row .cmb-repeat-table .cmb-row>.cmb-td{padding-right:20px;box-sizing:border-box;float:left}.cmb-add-row{margin:1.8em 0 0}.cmb-nested .cmb-td,.cmb-repeatable-group .cmb-th,.cmb-repeatable-group:first-of-type{border:0}.cmb-repeatable-group:last-of-type,.cmb-row:last-of-type,.cmb2-wrap .cmb-row:last-of-type{border-bottom:0}.cmb-repeatable-grouping{border:1px solid #e9e9e9;padding:0 1em;max-width:1000px}.cmb-repeatable-grouping.cmb-row{margin:0 0 .8em}.cmb-th{color:#222;float:left;font-weight:600;line-height:1.3;padding:20px 10px 20px 0;vertical-align:top;width:200px}.cmb-td{line-height:1.3;max-width:100%;padding:15px 10px;vertical-align:middle}.cmb-type-title .cmb-td{padding:0}.cmb-th label{display:block;padding:5px 0}.cmb-th+.cmb-td{float:left}.cmb-td .cmb-td{padding-bottom:1em}.cmb-remove-row{text-align:right}.empty-row.hidden{display:none}.cmb-repeatable-group .cmb-th{padding:5px}.cmb-repeatable-group .cmb-group-title{background-color:#e9e9e9;padding:8px 12px 8px 2.2em;margin:0 -1em;min-height:1.5em;font-size:14px;line-height:1.4}.cmb-repeatable-group .cmb-group-title h4{border:0;margin:0;font-size:1.2em;font-weight:500;padding:.5em .75em}.cmb-repeatable-group .cmb-group-title .cmb-th{display:block;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th{font-size:1.2em;display:block;float:none;padding-bottom:1em;text-align:left;width:100%}.cmb-repeatable-group .cmb-group-description .cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-repeatable-group .cmb-group-description .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}.cmb-repeatable-group .cmb-shift-rows{font-size:1em;margin-right:1em;text-decoration:none}.cmb-repeatable-group .cmb-shift-rows .dashicons{font-size:1.5em;height:1.5em;line-height:1.2em;width:1em}.cmb-repeatable-group .cmb-shift-rows .dashicons.dashicons-arrow-down-alt2{line-height:1.3em}.cmb-repeatable-group .cmb2-upload-button{float:right}p.cmb2-metabox-description{color:#aaa;font-style:italic;margin:0;padding-top:.5em}span.cmb2-metabox-description{color:#aaa;font-style:italic}.cmb2-metabox-title{margin:0 0 5px;padding:5px 0 0;font-size:14px}.cmb-inline ul{padding:4px 0 0}.cmb-inline li{display:inline-block;padding-right:18px}.cmb-type-textarea-code pre{margin:0}.cmb2-media-status .img-status{clear:none;display:inline-block;float:left;margin-right:10px;width:auto}.cmb2-media-status .img-status img{max-width:350px}.cmb2-media-status .embed-status,.cmb2-media-status .img-status img{background:#fff;border:1px solid #e9e9e9;border-radius:2px;-moz-border-radius:2px;margin:15px 0 0;padding:5px}.cmb2-media-status .embed-status{float:left;max-width:800px}.cmb2-media-status .embed-status,.cmb2-media-status .img-status{position:relative}.cmb2-media-status .embed-status .cmb2-remove-file-button,.cmb2-media-status .img-status .cmb2-remove-file-button{background:url(../images/ico-delete.png);height:16px;left:-5px;position:absolute;text-indent:-9999px;top:-5px;width:16px}.cmb2-media-status .img-status .cmb2-remove-file-button{top:10px}.cmb2-media-status .file-status>span,.cmb2-media-status .img-status img{cursor:pointer}.cmb-type-file-list .cmb2-media-status .img-status{clear:none;float:left;margin-right:10px;width:auto}.cmb-attach-list li{clear:both;display:inline-block;margin-bottom:25px;width:100%}.cmb-attach-list li img{cursor:move;float:left;margin-right:10px}.cmb2-remove-wrapper{margin:0}.child-cmb2 .cmb-th{text-align:left}#poststuff .cmb-group-title{margin-left:-1em;margin-right:-1em;min-height:1.5em}#poststuff .repeatable .cmb-group-title{padding-left:2.2em}.cmb-type-group .cmb2-wrap,.postbox-container .cmb2-wrap{margin:0}.cmb-type-group .cmb2-wrap>.cmb-field-list>.cmb-row,.postbox-container .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.8em 0}.cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed,.postbox-container .cmb2-wrap input[type=text].cmb2-oembed{width:100%}.cmb-type-group .cmb-row,.postbox-container .cmb-row{padding:0 0 1.8em;margin:0 0 .8em}.cmb-type-group .cmb-row .cmbhandle,.postbox-container .cmb-row .cmbhandle{right:-1em;position:relative}.cmb-type-group .cmb-repeatable-grouping,.postbox-container .cmb-repeatable-grouping{padding:0 1em;max-width:100%;min-width:1px!important}.cmb-type-group .cmb-repeatable-group>.cmb-row,.postbox-container .cmb-repeatable-group>.cmb-row{padding-bottom:0}.cmb-type-group .cmb-th,.postbox-container .cmb-th{width:18%;padding:0 2% 0 0}.cmb-type-group .cmb-td,.postbox-container .cmb-td{margin-bottom:0;padding:0;line-height:1.3}.cmb-type-group .cmb-repeat-row .cmb-td,.postbox-container .cmb-repeat-row .cmb-td{padding-bottom:1.8em}.cmb-type-group .cmb-th+.cmb-td,.postbox-container .cmb-th+.cmb-td{width:80%;float:right}.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.postbox-container .cmb-repeatable-group:not(:last-of-type),.postbox-container .cmb-row:not(:last-of-type){border-bottom:1px solid #e9e9e9}.cmb-type-group .cmb-remove-field-row,.cmb-type-group .cmb-repeat-group-field,.postbox-container .cmb-remove-field-row,.postbox-container .cmb-repeat-group-field{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody{display:table;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text{width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row),.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row){display:table-row}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td{display:table-cell;float:none;width:100%}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td{padding-top:1.8em}.cmb-type-group .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.cmb-type-group .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.postbox-container .cmb2-metabox>.cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row,.postbox-container .cmb2-metabox>.cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row{padding-right:0}#poststuff .cmb-repeatable-group h2{margin:0}.edit-tags-php .cmb2-metabox-title,.profile-php .cmb2-metabox-title,.user-edit-php .cmb2-metabox-title{font-size:1.4em}.cmb2-options-page .cmb2-metabox-title{font-size:1.3em;margin:1em 0}.cmb2-options-page .cmb2-metabox-title+p.cmb2-metabox-description{margin-top:-1.6em;margin-bottom:.8em}.postbox .cmb-spinner{float:left}#side-sortables .cmb2-wrap>.cmb-field-list>.cmb-row,.inner-sidebar .cmb2-wrap>.cmb-field-list>.cmb-row{padding:1.4em 0}#side-sortables .cmb2-wrap input[type=text]:not(.wp-color-picker),.inner-sidebar .cmb2-wrap input[type=text]:not(.wp-color-picker){width:100%}#side-sortables .cmb2-wrap input+input:not(.wp-picker-clear),#side-sortables .cmb2-wrap input+select,.inner-sidebar .cmb2-wrap input+input:not(.wp-picker-clear),.inner-sidebar .cmb2-wrap input+select{margin-left:0;margin-top:1em;display:block}#side-sortables .cmb2-wrap input.cmb2-text-money,.inner-sidebar .cmb2-wrap input.cmb2-text-money{max-width:70%}#side-sortables .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description,.inner-sidebar .cmb2-wrap input.cmb2-text-money+.cmb2-metabox-description{display:block}#side-sortables .cmb2-wrap label,.inner-sidebar .cmb2-wrap label{display:block;font-weight:700;padding:0 0 5px}#side-sortables textarea,.inner-sidebar textarea{max-width:99%}#side-sortables .cmb-repeatable-group,.inner-sidebar .cmb-repeatable-group{border-bottom:1px solid #e9e9e9}#side-sortables .cmb-type-group>.cmb-td>.cmb-repeatable-group,.inner-sidebar .cmb-type-group>.cmb-td>.cmb-repeatable-group{border-bottom:0;margin-bottom:-1.4em}#side-sortables .cmb-td,#side-sortables .cmb-th,#side-sortables .cmb-th+.cmb-td,.inner-sidebar .cmb-td,.inner-sidebar .cmb-th,.inner-sidebar .cmb-th+.cmb-td{width:100%;display:block;float:none}#side-sortables .closed .inside,.inner-sidebar .closed .inside{display:none}#side-sortables .cmb-td .cmb-td,.inner-sidebar .cmb-td .cmb-td{padding-bottom:1em}#side-sortables .cmb-th,.inner-sidebar .cmb-th{display:block;float:none;padding-bottom:1em;text-align:left;width:100%;padding-left:0;padding-right:0}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{display:block;margin-top:0;padding-bottom:5px}#side-sortables .cmb-th label:after,.inner-sidebar .cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}#side-sortables .cmb-th label,.inner-sidebar .cmb-th label{font-size:14px;line-height:1.4em}#side-sortables .cmb-group-description .cmb-th,.inner-sidebar .cmb-group-description .cmb-th{padding-top:0}#side-sortables .cmb-group-description .cmb2-metabox-description,#side-sortables .cmb-group-title .cmb-th,.inner-sidebar .cmb-group-description .cmb2-metabox-description,.inner-sidebar .cmb-group-title .cmb-th{padding:0}#side-sortables .cmb-repeatable-grouping+.cmb-repeatable-grouping,.inner-sidebar .cmb-repeatable-grouping+.cmb-repeatable-grouping{margin-top:1em}#side-sortables .cmb2-media-status .embed-status img,#side-sortables .cmb2-media-status .img-status img,.inner-sidebar .cmb2-media-status .embed-status img,.inner-sidebar .cmb2-media-status .img-status img{max-width:90%;height:auto}#side-sortables .cmb2-list label,.inner-sidebar .cmb2-list label{display:inline;font-weight:400}#side-sortables .cmb2-metabox-description,.inner-sidebar .cmb2-metabox-description{display:block;padding:7px 0 0}#side-sortables .cmb-type-checkbox .cmb-td label,#side-sortables .cmb-type-checkbox .cmb2-metabox-description,.inner-sidebar .cmb-type-checkbox .cmb-td label,.inner-sidebar .cmb-type-checkbox .cmb2-metabox-description{font-weight:400;display:inline}#side-sortables .cmb-row .cmb2-metabox-description,.inner-sidebar .cmb-row .cmb2-metabox-description{padding-bottom:1.8em}#side-sortables .cmb2-metabox-title,.inner-sidebar .cmb2-metabox-title{font-size:1.2em;font-style:italic}#side-sortables .cmb-remove-row,.inner-sidebar .cmb-remove-row{clear:both;padding-top:12px;padding-bottom:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td{width:auto;clear:none;float:left;padding-top:0}#side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row,.inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row{float:right;margin:0}#side-sortables .cmb2-upload-button,.inner-sidebar .cmb2-upload-button{clear:both;margin-top:12px}.cmb2-metabox .cmb-type-group{max-width:1000px}.cmb2-metabox .cmbhandle{color:#aaa;float:right;width:27px;height:30px;cursor:pointer;right:-1em;position:relative}.cmb2-metabox .cmbhandle:before{content:'\f142';right:12px;font:400 20px/1 dashicons;speak:none;display:inline-block;padding:8px 10px;top:0;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.cmb2-metabox .postbox.closed .cmbhandle:before{content:'\f140'}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row{-webkit-appearance:none!important;background:none!important;border:none!important;position:absolute;left:0;top:.5em;line-height:1em;padding:2px 6px 3px;opacity:.5}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]){cursor:pointer;color:#a00;opacity:1}.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]):hover{color:red}* html .cmb2-element.ui-helper-clearfix{height:1%}.cmb2-element .ui-datepicker,.cmb2-element.ui-datepicker{padding:0;margin:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background-color:#fff;border:1px solid #dfdfdf;border-top:none;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.075);box-shadow:0 3px 6px rgba(0,0,0,.075);min-width:17em;width:auto}.cmb2-element .ui-datepicker *,.cmb2-element.ui-datepicker *{padding:0;font-family:"Open Sans",sans-serif;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.cmb2-element .ui-datepicker table,.cmb2-element.ui-datepicker table{font-size:13px;margin:0;border:none;border-collapse:collapse}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{border:none;color:#fff;font-weight:400}.cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover{background:0 0;border-color:transparent;cursor:pointer}.cmb2-element .ui-datepicker .ui-datepicker-title,.cmb2-element.ui-datepicker .ui-datepicker-title{margin:0;padding:10px 0;color:#fff;font-size:14px;line-height:14px;text-align:center}.cmb2-element .ui-datepicker .ui-datepicker-title select,.cmb2-element.ui-datepicker .ui-datepicker-title select{margin-top:-8px;margin-bottom:-8px}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-prev{position:relative;top:0;height:34px;width:34px}.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-next,.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-prev{border:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover,.cmb2-element.ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover{left:0}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element .ui-datepicker .ui-datepicker-next-hover,.cmb2-element.ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next-hover{right:0}.cmb2-element .ui-datepicker .ui-datepicker-next span,.cmb2-element .ui-datepicker .ui-datepicker-prev span,.cmb2-element.ui-datepicker .ui-datepicker-next span,.cmb2-element.ui-datepicker .ui-datepicker-prev span{display:none}.cmb2-element .ui-datepicker .ui-datepicker-prev,.cmb2-element.ui-datepicker .ui-datepicker-prev{float:left}.cmb2-element .ui-datepicker .ui-datepicker-next,.cmb2-element.ui-datepicker .ui-datepicker-next{float:right}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{font:400 20px/34px dashicons;padding-left:7px;color:#fff;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:34px;height:34px}.cmb2-element .ui-datepicker .ui-datepicker-prev:before,.cmb2-element.ui-datepicker .ui-datepicker-prev:before{content:'\f341'}.cmb2-element .ui-datepicker .ui-datepicker-next:before,.cmb2-element.ui-datepicker .ui-datepicker-next:before{content:'\f345'}.cmb2-element .ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element .ui-datepicker .ui-datepicker-prev-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-next-hover:before,.cmb2-element.ui-datepicker .ui-datepicker-prev-hover:before{opacity:.7}.cmb2-element .ui-datepicker select.ui-datepicker-month,.cmb2-element .ui-datepicker select.ui-datepicker-year,.cmb2-element.ui-datepicker select.ui-datepicker-month,.cmb2-element.ui-datepicker select.ui-datepicker-year{width:33%;background:0 0;border-color:transparent;box-shadow:none;color:#fff}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{color:#fff;font-weight:600}.cmb2-element .ui-datepicker thead th,.cmb2-element.ui-datepicker thead th{font-weight:400}.cmb2-element .ui-datepicker th,.cmb2-element.ui-datepicker th{padding:10px}.cmb2-element .ui-datepicker td,.cmb2-element.ui-datepicker td{padding:0;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-other-month,.cmb2-element.ui-datepicker td.ui-datepicker-other-month{border:transparent}.cmb2-element .ui-datepicker td.ui-datepicker-week-end,.cmb2-element.ui-datepicker td.ui-datepicker-week-end{background-color:#f4f4f4;border:1px solid #f4f4f4}.cmb2-element .ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today{-webkit-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);-moz-box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1);box-shadow:inset 0 0 1px 0 rgba(0,0,0,.1)}.cmb2-element .ui-datepicker td.ui-datepicker-today,.cmb2-element.ui-datepicker td.ui-datepicker-today{background-color:#f0f0c0}.cmb2-element .ui-datepicker td.ui-datepicker-current-day,.cmb2-element.ui-datepicker td.ui-datepicker-current-day{background:#bd8}.cmb2-element .ui-datepicker td .ui-state-default,.cmb2-element.ui-datepicker td .ui-state-default{background:0 0;border:none;text-align:center;text-decoration:none;width:auto;display:block;padding:5px 10px;font-weight:400;color:#444}.cmb2-element .ui-datepicker td.ui-state-disabled .ui-state-default,.cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default{opacity:.5}.cmb2-element .ui-datepicker .ui-datepicker-header,.cmb2-element .ui-datepicker .ui-widget-header,.cmb2-element.ui-datepicker .ui-datepicker-header,.cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.cmb2-element .ui-datepicker thead,.cmb2-element.ui-datepicker thead{background:#32373c}.cmb2-element .ui-datepicker td .ui-state-active,.cmb2-element .ui-datepicker td .ui-state-hover,.cmb2-element.ui-datepicker td .ui-state-active,.cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.cmb2-element .ui-datepicker .ui-timepicker-div,.cmb2-element.ui-datepicker .ui-timepicker-div{font-size:14px}.cmb2-element .ui-datepicker .ui-timepicker-div dl,.cmb2-element.ui-datepicker .ui-timepicker-div dl{text-align:left;padding:0 .6em}.cmb2-element .ui-datepicker .ui-timepicker-div dl dt,.cmb2-element.ui-datepicker .ui-timepicker-div dl dt{float:left;clear:left;padding:0 0 0 5px}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd{margin:0 10px 10px 40%}.cmb2-element .ui-datepicker .ui-timepicker-div dl dd select,.cmb2-element.ui-datepicker .ui-timepicker-div dl dd select{width:100%}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane{padding:.6em;text-align:left}.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element .ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-primary,.cmb2-element.ui-datepicker .ui-timepicker-div+.ui-datepicker-buttonpane .button-secondary{padding:0 10px 1px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;margin:0 .6em .4em .4em}.admin-color-fresh .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header{background:#00a0d2}.admin-color-fresh .cmb2-element .ui-datepicker thead,.admin-color-fresh .cmb2-element.ui-datepicker thead{background:#32373c}.admin-color-fresh .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover{background:#0073aa;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header{background:#52accc}.admin-color-blue .cmb2-element .ui-datepicker thead,.admin-color-blue .cmb2-element.ui-datepicker thead{background:#4796b3}.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover{background:#096484;color:#fff}.admin-color-blue .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-coffee .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header{background:#59524c}.admin-color-coffee .cmb2-element .ui-datepicker thead,.admin-color-coffee .cmb2-element.ui-datepicker thead{background:#46403c}.admin-color-coffee .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover{background:#c7a589;color:#fff}.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header{background:#523f6d}.admin-color-ectoplasm .cmb2-element .ui-datepicker thead,.admin-color-ectoplasm .cmb2-element.ui-datepicker thead{background:#413256}.admin-color-ectoplasm .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover{background:#a3b745;color:#fff}.admin-color-midnight .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header{background:#363b3f}.admin-color-midnight .cmb2-element .ui-datepicker thead,.admin-color-midnight .cmb2-element.ui-datepicker thead{background:#26292c}.admin-color-midnight .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover{background:#e14d43;color:#fff}.admin-color-ocean .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header{background:#738e96}.admin-color-ocean .cmb2-element .ui-datepicker thead,.admin-color-ocean .cmb2-element.ui-datepicker thead{background:#627c83}.admin-color-ocean .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover{background:#9ebaa0;color:#fff}.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header{background:#cf4944}.admin-color-sunrise .cmb2-element .ui-datepicker th,.admin-color-sunrise .cmb2-element.ui-datepicker th{border-color:#be3631;background:#be3631}.admin-color-sunrise .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover{background:#dd823b;color:#fff}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-light .cmb2-element.ui-datepicker .ui-widget-header{background:#e5e5e5}.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-year,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month,.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-year{color:#555}.admin-color-light .cmb2-element .ui-datepicker thead,.admin-color-light .cmb2-element.ui-datepicker thead{background:#888}.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-default,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-next:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-prev:before,.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-default{color:#555}.admin-color-light .cmb2-element .ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-active,.admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover{background:#ccc}.admin-color-light .cmb2-element .ui-datepicker td.ui-datepicker-today,.admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today{background:#eee}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header{background:#56b274}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker thead,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead{background:#36533f}.admin-color-bbp-evergreen .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover{background:#446950;color:#fff}.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-widget-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-datepicker-header,.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header{background:#4ca26a}.admin-color-bbp-mint .cmb2-element .ui-datepicker thead,.admin-color-bbp-mint .cmb2-element.ui-datepicker thead{background:#4f6d59}.admin-color-bbp-mint .cmb2-element .ui-datepicker td .ui-state-hover,.admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover{background:#5fb37c;color:#fff}@media (max-width:450px){.cmb-th{font-size:1.2em;padding-bottom:1em;text-align:left}.cmb-th label{display:block;margin-top:0;padding-bottom:5px}.cmb-th label:after{border-bottom:1px solid #e9e9e9;content:'';clear:both;display:block;padding-top:.4em}.cmb-td,.cmb-th,.cmb-th+.cmb-td{display:block;float:none;width:100%}.cmb-type-group .cmb-repeatable-group:not(:last-of-type),.cmb-type-group .cmb-row:not(:last-of-type),.postbox-container .cmb-repeatable-group:not(:last-of-type),.postbox-container .cmb-row:not(:last-of-type){border-bottom:0}} -
bim-ba/trunk/lib/cmb2/includes/CMB2.php
r1608679 r1610879 53 53 'id' => '', 54 54 'title' => '', 55 // Post type slug, or 'user', 'term', 'comment', or 'options-page' 56 'object_types' => array(), 57 /* 58 * The context within the screen where the boxes should display. Available contexts vary 59 * from screen to screen. Post edit screen contexts include 'normal', 'side', and 'advanced'. 60 * 61 * For placement in locations outside of a metabox, other options include: 62 * 'form_top', 'before_permalink', 'after_title', 'after_editor' 63 * 64 * Comments screen contexts include 'normal' and 'side'. Default is 'normal'. 65 */ 55 'object_types' => array(), // Post type 66 56 'context' => 'normal', 67 57 'priority' => 'high', … … 236 226 237 227 /** 238 * Add our context classes for non-standard metaboxes.239 *240 * @since 2.2.4241 */242 if ( $this->is_alternate_context_box() ) {243 244 // Include custom class if requesting no title.245 if ( ! $this->prop( 'title' ) && ! $this->prop( 'remove_box_wrap' ) ) {246 $context[] = 'cmb2-context-wrap-no-title';247 }248 249 // Include a generic context wrapper.250 $context[] = 'cmb2-context-wrap';251 252 // Include a context-type based context wrapper.253 $context[] = 'cmb2-context-wrap-' . $this->prop( 'context' );254 255 // Include an ID based context wrapper as well.256 $context[] = 'cmb2-context-wrap-' . $this->prop( 'id' );257 258 // And merge all the classes back into the array.259 $classes = array_merge( $classes, $context );260 }261 262 /**263 228 * Globally filter box wrap classes 264 229 * … … 272 237 // Clean up. 273 238 $classes = array_map( 'strip_tags', array_filter( $classes ) ); 274 275 // Remove any duplicates.276 $classes = array_unique( $classes );277 239 278 240 // Make a string. … … 518 480 } 519 481 520 $type s= new CMB2_Types( $field );482 $type = new CMB2_Types( $field ); 521 483 522 484 if ( $field_group ) { 523 $type s->iterator = $field_group->index;524 } 525 526 $this->hidden_fields[] = $type s;485 $type->iterator = $field_group->index; 486 } 487 488 $this->hidden_fields[] = $type; 527 489 528 490 return $field; … … 556 518 cmb2_options( 0 )->set(); 557 519 558 // We want to get any taxonomy values back.559 add_filter( "cmb2_return_taxonomy_values_{$this->cmb_id}", '__return_true' );560 561 520 // Process/save fields 562 521 $this->process_fields(); 563 564 // Put things back the way they were.565 remove_filter( "cmb2_return_taxonomy_values_{$this->cmb_id}", '__return_true' );566 522 567 523 // Get data from temp. data store … … 741 697 742 698 foreach ( array_values( $field_group->fields() ) as $field_args ) { 743 if ( 'title' === $field_args['type'] ) {744 // Don't process title fields745 continue;746 }747 699 748 700 $field = $this->get_new_field( $field_args, $field_group ); … … 954 906 } 955 907 956 if ( defined( 'DOING_AJAX' ) && isset( $_POST['action'] ) && 'add-tag' === $_POST['action'] ) {957 $type = 'term';958 }959 960 908 return $type; 961 909 } … … 1004 952 1005 953 $parent_field_id = ! empty( $field_group ) ? $field_group->id() : ''; 1006 $ids = $this->get_field_ids( $field_id, $parent_field_id );954 $ids = $this->get_field_ids( $field_id, $parent_field_id, true ); 1007 955 1008 956 if ( ! $ids ) { … … 1122 1070 } 1123 1071 1124 // Perform some field-type-specific initiation actions. 1125 switch ( $field['type'] ) { 1126 case 'file': 1127 case 'file_list': 1128 1129 // Initiate attachment JS hooks 1130 add_filter( 'wp_prepare_attachment_for_js', array( 'CMB2_Type_File_Base', 'prepare_image_sizes_for_js' ), 10, 3 ); 1131 break; 1132 1133 case 'oembed': 1134 1135 // Initiate oembed Ajax hooks 1136 cmb2_ajax(); 1137 break; 1072 if ( 'oembed' === $field['type'] ) { 1073 // Initiate oembed Ajax hooks 1074 cmb2_ajax(); 1138 1075 } 1139 1076 … … 1358 1295 $this->generated_nonce = sanitize_html_class( 'nonce_' . basename( __FILE__ ) . $this->cmb_id ); 1359 1296 return $this->generated_nonce; 1360 }1361 1362 /**1363 * Whether this box is an "alternate context" box. This means the box has a 'context' property defined as:1364 * 'form_top', 'before_permalink', 'after_title', or 'after_editor'.1365 *1366 * @since 2.2.41367 * @return bool1368 */1369 public function is_alternate_context_box() {1370 return $this->prop( 'context' ) && in_array( $this->prop( 'context' ), array( 'form_top', 'before_permalink', 'after_title', 'after_editor' ) );1371 1297 } 1372 1298 -
bim-ba/trunk/lib/cmb2/includes/CMB2_Base.php
r1608679 r1610879 44 44 * @since 2.2.3 45 45 */ 46 protected $object_type = ' ';46 protected $object_type = 'post'; 47 47 48 48 /** … … 457 457 return $this->{$field}; 458 458 default: 459 throw new Exception( sprintf( esc_html__( 'Invalid %1$s property: %2$s', ' cmb2' ), __CLASS__, $field ) );459 throw new Exception( sprintf( esc_html__( 'Invalid %1$s property: %2$s', 'give' ), __CLASS__, $field ) ); 460 460 } 461 461 } … … 471 471 472 472 if ( ! has_filter( "{$object_class}_inherit_{$method}" ) ) { 473 throw new Exception( sprintf( esc_html__( 'Invalid %1$s method: %2$s', ' cmb2' ), get_class( $this ), $method ) );473 throw new Exception( sprintf( esc_html__( 'Invalid %1$s method: %2$s', 'give' ), get_class( $this ), $method ) ); 474 474 } 475 475 -
bim-ba/trunk/lib/cmb2/includes/CMB2_Field.php
r1608679 r1610879 799 799 $this->peform_param_callback( 'before' ); 800 800 801 $ types= new CMB2_Types( $this );802 $ types->render();801 $field_type = new CMB2_Types( $this ); 802 $field_type->render(); 803 803 804 804 $this->peform_param_callback( 'after' ); -
bim-ba/trunk/lib/cmb2/includes/CMB2_Field_Display.php
r1608679 r1610879 308 308 */ 309 309 protected function _display() { 310 $taxonomy = $this->field->args( 'taxonomy' ); 311 $types = new CMB2_Types( $this->field ); 312 $type = $types->get_new_render_type( $this->field->type(), 'CMB2_Type_Taxonomy_Radio' ); 313 $terms = $type->get_object_terms(); 314 $term = false; 310 $taxonomy = $this->field->args( 'taxonomy' ); 311 $field_type = new CMB2_Type_Taxonomy_Radio( new CMB2_Types( $this->field ) ); 312 $terms = $field_type->get_object_terms(); 313 $term = false; 315 314 316 315 if ( is_wp_error( $terms ) || empty( $terms ) && ( $default = $this->field->get_default() ) ) { … … 333 332 */ 334 333 protected function _display() { 335 $taxonomy = $this->field->args( 'taxonomy' ); 336 $types = new CMB2_Types( $this->field ); 337 $type = $types->get_new_render_type( $this->field->type(), 'CMB2_Type_Taxonomy_Multicheck' ); 338 $terms = $type->get_object_terms(); 334 $taxonomy = $this->field->args( 'taxonomy' ); 335 $field_type = new CMB2_Type_Taxonomy_Multicheck( new CMB2_Types( $this->field ) ); 336 $terms = $field_type->get_object_terms(); 339 337 340 338 if ( is_wp_error( $terms ) || empty( $terms ) && ( $default = $this->field->get_default() ) ) { … … 376 374 $this->value = esc_url_raw( $this->value ); 377 375 378 $types = new CMB2_Types( $this->field ); 379 $type = $types->get_new_render_type( $this->field->type(), 'CMB2_Type_File_Base' ); 376 $field_type = new CMB2_Type_File_Base( new CMB2_Types( $this->field ) ); 380 377 381 378 $id = $this->field->get_field_clone( array( … … 383 380 ) )->escaped_value( 'absint' ); 384 381 385 $this->file_output( $this->value, $id, $ type );382 $this->file_output( $this->value, $id, $field_type ); 386 383 } 387 384 … … 426 423 } 427 424 428 $types = new CMB2_Types( $this->field ); 429 $type = $types->get_new_render_type( $this->field->type(), 'CMB2_Type_File_Base' ); 425 $field_type = new CMB2_Type_File_Base( new CMB2_Types( $this->field ) ); 430 426 431 427 echo '<ul class="cmb2-display-file-list">'; 432 428 foreach ( $this->value as $id => $fullurl ) { 433 echo '<li>', $this->file_output( esc_url_raw( $fullurl ), $id, $ type ), '</li>';429 echo '<li>', $this->file_output( esc_url_raw( $fullurl ), $id, $field_type ), '</li>'; 434 430 } 435 431 echo '</ul>'; -
bim-ba/trunk/lib/cmb2/includes/CMB2_JS.php
r1608679 r1610879 64 64 if ( isset( $dependencies['media-editor'] ) ) { 65 65 wp_enqueue_media(); 66 CMB2_Type_File_Base::output_js_underscore_templates();67 66 } 68 67 … … 85 84 86 85 self::localize( $debug ); 87 88 do_action( 'cmb2_footer_enqueue' );89 86 } 90 87 -
bim-ba/trunk/lib/cmb2/includes/CMB2_Sanitize.php
r1608679 r1610879 81 81 case 'taxonomy_multicheck': 82 82 case 'taxonomy_multicheck_inline': 83 $sanitized_value = $this->_taxonomy(); 83 if ( $this->field->args( 'taxonomy' ) ) { 84 wp_set_object_terms( $this->field->object_id, $this->value, $this->field->args( 'taxonomy' ) ); 85 } else { 86 CMB2_Utils::log_if_debug( __METHOD__, __LINE__, "{$this->field->type()} {$this->field->_id()} is missing the 'taxonomy' parameter." ); 87 } 84 88 break; 85 89 case 'multicheck': … … 93 97 // Handle repeatable fields array 94 98 // We'll fallback to 'sanitize_text_field' 95 $sanitized_value = $this->_default_sanitization();99 $sanitized_value = is_array( $this->value ) ? array_map( 'sanitize_text_field', $this->value ) : sanitize_text_field( $this->value ); 96 100 break; 97 101 } 98 102 99 103 return $this->_is_empty_array( $sanitized_value ) ? '' : $sanitized_value; 100 }101 102 /**103 * Default sanitization method, sanitize_text_field. Checks if value is array.104 * @since 2.2.4105 * @return mixed Sanitized value.106 */107 protected function _default_sanitization() {108 // Handle repeatable fields array109 return is_array( $this->value ) ? array_map( 'sanitize_text_field', $this->value ) : sanitize_text_field( $this->value );110 }111 112 /**113 * Sets the object terms to the object (if not options-page) and optionally returns the sanitized term values.114 * @since 2.2.4115 * @return mixed Blank value, or sanitized term values if "cmb2_return_taxonomy_values_{$cmb_id}" is true.116 */117 protected function _taxonomy() {118 $sanitized_value = '';119 120 if ( ! $this->field->args( 'taxonomy' ) ) {121 CMB2_Utils::log_if_debug( __METHOD__, __LINE__, "{$this->field->type()} {$this->field->_id()} is missing the 'taxonomy' parameter." );122 } else {123 124 if ( 'options-page' === $this->field->object_type ) {125 $return_values = true;126 } else {127 wp_set_object_terms( $this->field->object_id, $this->value, $this->field->args( 'taxonomy' ) );128 $return_values = false;129 }130 131 $cmb_id = $this->field->cmb_id;132 133 /**134 * Filter whether 'taxonomy_*' fields should return their value when being sanitized.135 *136 * By default, these fields do not return a value as we do not want them stored to meta137 * (as they are stored as terms). This allows overriding that and is used by CMB2::get_sanitized_values().138 *139 * The dynamic portion of the hook, $cmb_id, refers to the this field's CMB2 box id.140 *141 * @since 2.2.4142 *143 * @param bool $return_values By default, this is only true for 'options-page' boxes. To enable:144 * `add_filter( "cmb2_return_taxonomy_values_{$cmb_id}", '__return_true' );`145 * @param CMB2_Sanitize $sanitizer This object.146 */147 if ( apply_filters( "cmb2_return_taxonomy_values_{$cmb_id}", $return_values, $this ) ) {148 $sanitized_value = $this->_default_sanitization();149 }150 }151 152 return $sanitized_value;153 104 } 154 105 … … 425 376 $id_val = isset( $alldata[ $base_id ][ $i ][ $id_key ] ) 426 377 ? absint( $alldata[ $base_id ][ $i ][ $id_key ] ) 427 : ''; 428 429 // We don't want to save 0 to the DB for file fields. 430 if ( 0 === $id_val ) { 431 $id_val = ''; 432 } 378 : 0; 433 379 434 380 return array( -
bim-ba/trunk/lib/cmb2/includes/CMB2_Types.php
r1608679 r1610879 51 51 */ 52 52 public function __call( $fieldtype, $arguments ) { 53 54 // Check for methods to be proxied to the CMB2_Type_Base object. 55 if ( $exists = $this->maybe_proxy_method( $fieldtype, $arguments ) ) { 56 return $exists['value']; 57 } 58 59 // Check for custom field type class. 60 if ( $object = $this->maybe_custom_field_object( $fieldtype, $arguments ) ) { 61 return $object->render(); 53 $proxied = array( 54 'get_object_terms' => array(), 55 'is_valid_img_ext' => false, 56 'parse_args' => array(), 57 'concat_items' => '', 58 'select_option' => '', 59 'list_input' => '', 60 'list_input_checkbox' => '', 61 'img_status_output' => '', 62 'file_status_output' => '', 63 'parse_picker_options' => array(), 64 ); 65 if ( isset( $proxied[ $fieldtype ] ) ) { 66 // Proxies the method call to the CMB2_Type_Base object 67 return $this->proxy_method( $fieldtype, $proxied[ $fieldtype ], $arguments ); 62 68 } 63 69 64 70 /** 65 * Pass non-existent field types through an action .71 * Pass non-existent field types through an action 66 72 * 67 73 * The dynamic portion of the hook name, $fieldtype, refers to the field type. … … 110 116 * @param string $method Method to call on the CMB2_Type_Base object. 111 117 * @param mixed $default Default fallback value if method is not found. 112 * @param array $args Optional arguments to pass to proxy method.113 118 * 114 119 * @return mixed Results from called method. … … 139 144 */ 140 145 protected function guess_type_object( $method ) { 141 $fieldtype = $this->field->type();142 146 143 147 // Try to "guess" the Type object based on the method requested. … … 147 151 case 'list_input_checkbox': 148 152 case 'concat_items': 149 $this-> get_new_render_type( $fieldtype, 'CMB2_Type_Select');153 $this->type = new CMB2_Type_Select( $this ); 150 154 break; 151 155 case 'is_valid_img_ext': 152 156 case 'img_status_output': 153 157 case 'file_status_output': 154 $this-> get_new_render_type( $fieldtype, 'CMB2_Type_File_Base');158 $this->type = new CMB2_Type_File_Base( $this ); 155 159 break; 156 160 case 'parse_picker_options': 157 $this-> get_new_render_type( $fieldtype, 'CMB2_Type_Text_Date');161 $this->type = new CMB2_Type_Text_Date( $this ); 158 162 break; 159 163 case 'get_object_terms': 160 164 case 'get_terms': 161 $this-> get_new_render_type( $fieldtype, 'CMB2_Type_Taxonomy_Multicheck');165 $this->type = new CMB2_Type_Taxonomy_Multicheck( $this ); 162 166 break; 163 167 case 'date_args': 164 168 case 'time_args': 165 $this-> get_new_render_type( $fieldtype, 'CMB2_Type_Text_Datetime_Timestamp');169 $this->type = new CMB2_Type_Text_Datetime_Timestamp( $this ); 166 170 break; 167 171 case 'parse_args': 168 $this-> get_new_render_type( $fieldtype, 'CMB2_Type_Text');172 $this->type = new CMB2_Type_Text( $this ); 169 173 break; 170 174 } 171 175 172 176 return null !== $this->type; 173 }174 175 /**176 * Check for methods to be proxied to the CMB2_Type_Base object.177 * @since 2.2.4178 * @param string $method The possible method to proxy.179 * @param array $arguments All arguments passed to the method.180 * @return bool|array False if not proxied, else array with 'value' key being the return of the method.181 */182 public function maybe_proxy_method( $method, $arguments ) {183 $exists = false;184 185 $proxied = array(186 'get_object_terms' => array(),187 'is_valid_img_ext' => false,188 'parse_args' => array(),189 'concat_items' => '',190 'select_option' => '',191 'list_input' => '',192 'list_input_checkbox' => '',193 'img_status_output' => '',194 'file_status_output' => '',195 'parse_picker_options' => array(),196 );197 if ( isset( $proxied[ $method ] ) ) {198 $exists = array(199 // Ok, proxy the method call to the CMB2_Type_Base object.200 'value' => $this->proxy_method( $method, $proxied[ $method ], $arguments ),201 );202 }203 204 return $exists;205 }206 207 /**208 * Checks for a custom field CMB2_Type_Base class to use for rendering.209 * @since 2.2.4210 * @param string $fieldtype Non-existent field type name211 * @param array $args Optional field arguments.212 * @return CMB2_Type_Base Type object.213 */214 public function maybe_custom_field_object( $fieldtype, $args = array() ) {215 if ( $render_class_name = $this->get_render_type_class( $fieldtype ) ) {216 217 $this->type = new $render_class_name( $this, $args );218 219 if ( ! ( $this->type instanceof CMB2_Type_Base ) ) {220 throw new Exception( __( 'Custom CMB2 field type classes must extend CMB2_Type_Base.', 'cmb2' ) );221 }222 }223 224 return $this->type;225 }226 227 /**228 * Gets the render type CMB2_Type_Base object to use for rendering the field.229 * @since 2.2.4230 * @param string $fieldtype The type of field being rendered.231 * @param string $render_class_name The default field type class to use. Defaults to null.232 * @param array $args Optional arguments to pass to type class.233 * @param mixed $additional Optional additional argument to pass to type class.234 * @return CMB2_Type_Base Type object.235 */236 public function get_new_render_type( $fieldtype, $render_class_name = null, $args = array(), $additional = '' ) {237 $render_class_name = $this->get_render_type_class( $fieldtype, $render_class_name );238 $this->type = new $render_class_name( $this, $args, $additional );239 240 return $this->type;241 }242 243 /**244 * Checks for the render type class to use for rendering the field.245 * @since 2.2.4246 * @param string $fieldtype The type of field being rendered.247 * @param string $render_class_name The default field type class to use. Defaults to null.248 * @return string The field type class to use.249 */250 public function get_render_type_class( $fieldtype, $render_class_name = null ) {251 $render_class_name = $this->field->args( 'render_class' ) ? $this->field->args( 'render_class' ) : $render_class_name;252 253 if ( has_action( "cmb2_render_class_{$fieldtype}" ) ) {254 255 /**256 * Filters the custom field type class used for rendering the field. Class is required to extend CMB2_Type_Base.257 *258 * The dynamic portion of the hook name, $fieldtype, refers to the (custom) field type.259 *260 * @since 2.2.4261 *262 * @param string $render_class_name The custom field type class to use. Default null.263 * @param object $field_type_object This `CMB2_Types` object.264 */265 $render_class_name = apply_filters( "cmb2_render_class_{$fieldtype}", $render_class_name, $this );266 }267 268 return $render_class_name && class_exists( $render_class_name ) ? $render_class_name : false;269 177 } 270 178 … … 454 362 */ 455 363 public function input( $args = array(), $type = __FUNCTION__ ) { 456 return $this->get_new_render_type( 'text', 'CMB2_Type_Text', $args, $type )->render(); 364 $this->type = new CMB2_Type_Text( $this, $args, $type ); 365 return $this->type->render(); 457 366 } 458 367 … … 464 373 */ 465 374 public function textarea( $args = array() ) { 466 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Textarea', $args )->render(); 375 $this->type = new CMB2_Type_Textarea( $this, $args ); 376 return $this->type->render(); 467 377 } 468 378 … … 477 387 public function hidden() { 478 388 $args = array( 479 'type' => 'hidden',480 'desc' => '',389 'type' => 'hidden', 390 'desc' => '', 481 391 'class' => 'cmb2-hidden', 482 392 ); … … 485 395 $args['data-iterator'] = $this->iterator; 486 396 } 487 488 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Text', $args, 'input' )->render(); 397 return $this->input( $args ); 489 398 } 490 399 491 400 public function text_small() { 492 return $this-> get_new_render_type( __FUNCTION__, 'CMB2_Type_Text',array(401 return $this->input( array( 493 402 'class' => 'cmb2-text-small', 494 'desc' => $this->_desc(),495 ) , 'input' )->render();403 'desc' => $this->_desc(), 404 ) ); 496 405 } 497 406 498 407 public function text_medium() { 499 return $this-> get_new_render_type( __FUNCTION__, 'CMB2_Type_Text',array(408 return $this->input( array( 500 409 'class' => 'cmb2-text-medium', 501 'desc' => $this->_desc(),502 ) , 'input' )->render();410 'desc' => $this->_desc(), 411 ) ); 503 412 } 504 413 505 414 public function text_email() { 506 return $this-> get_new_render_type( __FUNCTION__, 'CMB2_Type_Text',array(415 return $this->input( array( 507 416 'class' => 'cmb2-text-email cmb2-text-medium', 508 'type' => 'email',509 ) , 'input' )->render();417 'type' => 'email', 418 ) ); 510 419 } 511 420 512 421 public function text_url() { 513 return $this-> get_new_render_type( __FUNCTION__, 'CMB2_Type_Text',array(422 return $this->input( array( 514 423 'class' => 'cmb2-text-url cmb2-text-medium regular-text', 515 424 'value' => $this->field->escaped_value( 'esc_url' ), 516 ) , 'input' )->render();425 ) ); 517 426 } 518 427 519 428 public function text_money() { 520 $input = $this-> get_new_render_type( __FUNCTION__, 'CMB2_Type_Text',array(429 $input = $this->input( array( 521 430 'class' => 'cmb2-text-money', 522 'desc' => $this->_desc(),523 ) , 'input' )->render();431 'desc' => $this->_desc(), 432 ) ); 524 433 return ( ! $this->field->get_param_callback_result( 'before_field' ) ? '$ ' : ' ' ) . $input; 525 434 } 526 435 527 436 public function textarea_small() { 528 return $this-> get_new_render_type( __FUNCTION__, 'CMB2_Type_Textarea',array(437 return $this->textarea( array( 529 438 'class' => 'cmb2-textarea-small', 530 'rows' => 4, 531 ) )->render(); 532 } 533 534 public function textarea_code( $args = array() ) { 535 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Textarea_Code', $args )->render(); 439 'rows' => 4, 440 ) ); 441 } 442 443 public function textarea_code() { 444 $this->type = new CMB2_Type_Textarea_Code( $this ); 445 return $this->type->render(); 536 446 } 537 447 538 448 public function wysiwyg( $args = array() ) { 539 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Wysiwyg', $args )->render(); 449 $this->type = new CMB2_Type_Wysiwyg( $this, $args ); 450 return $this->type->render(); 540 451 } 541 452 542 453 public function text_date( $args = array() ) { 543 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Text_Date', $args )->render(); 454 $this->type = new CMB2_Type_Text_Date( $this, $args ); 455 return $this->type->render(); 544 456 } 545 457 546 458 // Alias for text_date 547 459 public function text_date_timestamp( $args = array() ) { 548 return $this-> get_new_render_type( __FUNCTION__, 'CMB2_Type_Text_Date', $args )->render();460 return $this->text_date( $args ); 549 461 } 550 462 551 463 public function text_time( $args = array() ) { 552 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Text_Time', $args )->render(); 464 $this->type = new CMB2_Type_Text_Time( $this, $args ); 465 return $this->type->render(); 553 466 } 554 467 555 468 public function text_datetime_timestamp( $args = array() ) { 556 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Text_Datetime_Timestamp', $args )->render(); 469 $this->type = new CMB2_Type_Text_Datetime_Timestamp( $this, $args ); 470 return $this->type->render(); 557 471 } 558 472 559 473 public function text_datetime_timestamp_timezone( $args = array() ) { 560 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Text_Datetime_Timestamp_Timezone', $args )->render(); 561 } 562 563 public function select_timezone( $args = array() ) { 564 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Select_Timezone', $args )->render(); 474 $this->type = new CMB2_Type_Text_Datetime_Timestamp_Timezone( $this, $args ); 475 return $this->type->render(); 476 } 477 478 public function select_timezone() { 479 $this->type = new CMB2_Type_Select_Timezone( $this ); 480 return $this->type->render(); 565 481 } 566 482 567 483 public function colorpicker( $args = array(), $meta_value = '' ) { 568 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Colorpicker', $args, $meta_value )->render(); 484 $this->type = new CMB2_Type_Colorpicker( $this, $args, $meta_value ); 485 return $this->type->render(); 569 486 } 570 487 571 488 public function title( $args = array() ) { 572 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Title', $args )->render(); 489 $this->type = new CMB2_Type_Title( $this, $args ); 490 return $this->type->render(); 573 491 } 574 492 575 493 public function select( $args = array() ) { 576 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Select', $args )->render(); 577 } 578 579 public function taxonomy_select( $args = array() ) { 580 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Taxonomy_Select', $args )->render(); 494 $this->type = new CMB2_Type_Select( $this, $args ); 495 return $this->type->render(); 496 } 497 498 public function taxonomy_select() { 499 $this->type = new CMB2_Type_Taxonomy_Select( $this ); 500 return $this->type->render(); 581 501 } 582 502 583 503 public function radio( $args = array(), $type = __FUNCTION__ ) { 584 return $this->get_new_render_type( $type, 'CMB2_Type_Radio', $args, $type )->render(); 585 } 586 587 public function radio_inline( $args = array() ) { 588 return $this->radio( $args, __FUNCTION__ ); 504 $this->type = new CMB2_Type_Radio( $this, $args, $type ); 505 return $this->type->render(); 506 } 507 508 public function radio_inline() { 509 return $this->radio( array(), __FUNCTION__ ); 589 510 } 590 511 591 512 public function multicheck( $type = 'checkbox' ) { 592 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Multicheck', array(), $type )->render(); 513 $this->type = new CMB2_Type_Multicheck( $this, array(), $type ); 514 return $this->type->render(); 593 515 } 594 516 … … 598 520 599 521 public function checkbox( $args = array(), $is_checked = null ) { 600 // Avoid get_new_render_type since we need a different default for the 3rd argument than ''. 601 $render_class_name = $this->get_render_type_class( __FUNCTION__, 'CMB2_Type_Checkbox' ); 602 $this->type = new $render_class_name( $this, $args, $is_checked ); 603 return $this->type->render(); 604 } 605 606 public function taxonomy_radio( $args = array() ) { 607 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Taxonomy_Radio', $args )->render(); 608 } 609 610 public function taxonomy_radio_inline( $args = array() ) { 611 return $this->taxonomy_radio( $args ); 612 } 613 614 public function taxonomy_multicheck( $args = array() ) { 615 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Taxonomy_Multicheck', $args )->render(); 616 } 617 618 public function taxonomy_multicheck_inline( $args = array() ) { 619 return $this->taxonomy_multicheck( $args ); 620 } 621 622 public function oembed( $args = array() ) { 623 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_Oembed', $args )->render(); 624 } 625 626 public function file_list( $args = array() ) { 627 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_File_List', $args )->render(); 628 } 629 630 public function file( $args = array() ) { 631 return $this->get_new_render_type( __FUNCTION__, 'CMB2_Type_File', $args )->render(); 522 $this->type = new CMB2_Type_Checkbox( $this, $args, $is_checked ); 523 return $this->type->render(); 524 } 525 526 public function taxonomy_radio() { 527 $this->type = new CMB2_Type_Taxonomy_Radio( $this ); 528 return $this->type->render(); 529 } 530 531 public function taxonomy_radio_inline() { 532 return $this->taxonomy_radio(); 533 } 534 535 public function taxonomy_multicheck() { 536 $this->type = new CMB2_Type_Taxonomy_Multicheck( $this ); 537 return $this->type->render(); 538 } 539 540 public function taxonomy_multicheck_inline() { 541 return $this->taxonomy_multicheck(); 542 } 543 544 public function oembed() { 545 $this->type = new CMB2_Type_Oembed( $this ); 546 return $this->type->render(); 547 } 548 549 public function file_list() { 550 $this->type = new CMB2_Type_File_List( $this ); 551 return $this->type->render(); 552 } 553 554 public function file() { 555 $this->type = new CMB2_Type_File( $this ); 556 return $this->type->render(); 632 557 } 633 558 -
bim-ba/trunk/lib/cmb2/includes/CMB2_Utils.php
r1608679 r1610879 77 77 78 78 /** 79 * Utility method to get a combined list of default and custom registered image sizes80 * @since 2.2.481 * @link http://core.trac.wordpress.org/ticket/1894782 * @global array $_wp_additional_image_sizes83 * @return array The image sizes84 */85 static function get_available_image_sizes() {86 global $_wp_additional_image_sizes;87 88 $default_image_sizes = array( 'thumbnail', 'medium', 'large' );89 foreach ( $default_image_sizes as $size ) {90 $image_sizes[ $size ] = array(91 'height' => intval( get_option( "{$size}_size_h" ) ),92 'width' => intval( get_option( "{$size}_size_w" ) ),93 'crop' => get_option( "{$size}_crop" ) ? get_option( "{$size}_crop" ) : false,94 );95 }96 97 if ( isset( $_wp_additional_image_sizes ) && count( $_wp_additional_image_sizes ) ) {98 $image_sizes = array_merge( $image_sizes, $_wp_additional_image_sizes );99 }100 101 return $image_sizes;102 }103 104 /**105 * Utility method to return the closest named size from an array of values106 *107 * Based off of WordPress's image_get_intermediate_size()108 * If the size matches an existing size then it will be used. If there is no109 * direct match, then the nearest image size larger than the specified size110 * will be used. If nothing is found, then the function will return false.111 * Uses get_available_image_sizes() to get all available sizes.112 *113 * @since 2.2.4114 * @param array|string $size Image size. Accepts an array of width and height (in that order)115 * @return false|string Named image size e.g. 'thumbnail'116 */117 public static function get_named_size( $size ) {118 $data = array();119 120 // Find the best match when '$size' is an array.121 if ( is_array( $size ) ) {122 $image_sizes = self::get_available_image_sizes();123 $candidates = array();124 125 foreach ( $image_sizes as $_size => $data ) {126 127 // If there's an exact match to an existing image size, short circuit.128 if ( $data['width'] == $size[0] && $data['height'] == $size[1] ) {129 $candidates[ $data['width'] * $data['height'] ] = array( $_size, $data );130 break;131 }132 133 // If it's not an exact match, consider larger sizes with the same aspect ratio.134 if ( $data['width'] >= $size[0] && $data['height'] >= $size[1] ) {135 136 /*137 * To test for varying crops, we constrain the dimensions of the larger image138 * to the dimensions of the smaller image and see if they match.139 */140 if ( $data['width'] > $size[0] ) {141 $constrained_size = wp_constrain_dimensions( $data['width'], $data['height'], $size[0] );142 $expected_size = array( $size[0], $size[1] );143 } else {144 $constrained_size = wp_constrain_dimensions( $size[0], $size[1], $data['width'] );145 $expected_size = array( $data['width'], $data['height'] );146 }147 148 // If the image dimensions are within 1px of the expected size, we consider it a match.149 $matched = ( abs( $constrained_size[0] - $expected_size[0] ) <= 1 && abs( $constrained_size[1] - $expected_size[1] ) <= 1 );150 151 if ( $matched ) {152 $candidates[ $data['width'] * $data['height'] ] = array( $_size, $data );153 }154 }155 }156 157 if ( ! empty( $candidates ) ) {158 // Sort the array by size if we have more than one candidate.159 if ( 1 < count( $candidates ) ) {160 ksort( $candidates );161 }162 163 $data = array_shift( $candidates );164 $data = $data[0];165 }166 /*167 * When the size requested is smaller than the thumbnail dimensions, we168 * fall back to the thumbnail size.169 */170 elseif ( ! empty( $image_sizes['thumbnail'] ) && $image_sizes['thumbnail']['width'] >= $size[0] && $image_sizes['thumbnail']['width'] >= $size[1] ) {171 $data = 'thumbnail';172 } else {173 return false;174 }175 176 } elseif ( ! empty( $image_sizes[ $size ] ) ) {177 $data = $size;178 }179 180 // If we still don't have a match at this point, return false.181 if ( empty( $data ) ) {182 return false;183 }184 185 return $data;186 }187 188 /**189 79 * Utility method that returns time string offset by timezone 190 80 * @since 1.0.0 … … 281 171 */ 282 172 public static function isempty( $value ) { 283 return null === $value || '' === $value || false === $value || array() === $value;173 return null === $value || '' === $value || false === $value; 284 174 } 285 175 … … 291 181 */ 292 182 public static function notempty( $value ){ 293 return null !== $value && '' !== $value && false !== $value && array() !== $value;183 return null !== $value && '' !== $value && false !== $value; 294 184 } 295 185 … … 512 402 */ 513 403 public static function get_file_ext( $file ) { 514 $parsed = parse_url( $file, PHP_URL_PATH );404 $parsed = @parse_url( $file, PHP_URL_PATH ); 515 405 return $parsed ? strtolower( pathinfo( $parsed, PATHINFO_EXTENSION ) ) : false; 516 406 } -
bim-ba/trunk/lib/cmb2/includes/CMB2_hookup.php
r1608679 r1610879 78 78 79 79 public function post_hooks() { 80 81 // Fetch the context we set in our call. 82 $context = $this->cmb->prop( 'context' ) ? $this->cmb->prop( 'context' ) : 'normal'; 83 84 // Call the proper hook based on the context provided. 85 switch ( $context ) { 86 87 case 'form_top': 88 add_action( 'edit_form_top', array( $this, 'add_context_metaboxes' ) ); 89 break; 90 91 case 'before_permalink': 92 add_action( 'edit_form_before_permalink', array( $this, 'add_context_metaboxes' ) ); 93 break; 94 95 case 'after_title': 96 add_action( 'edit_form_after_title', array( $this, 'add_context_metaboxes' ) ); 97 break; 98 99 case 'after_editor': 100 add_action( 'edit_form_after_editor', array( $this, 'add_context_metaboxes' ) ); 101 break; 102 103 default: 104 add_action( 'add_meta_boxes', array( $this, 'add_metaboxes' ) ); 105 } 106 80 add_action( 'add_meta_boxes', array( $this, 'add_metaboxes' ) ); 107 81 add_action( 'add_attachment', array( $this, 'save_post' ) ); 108 82 add_action( 'edit_attachment', array( $this, 'save_post' ) ); … … 321 295 322 296 /** 323 * Output the CMB2 box/fields in an alternate context (not in a standard metabox area).324 * @since 2.2.4325 */ 326 public function add_ context_metaboxes() {297 * Add metaboxes (to 'post' or 'comment' object types) 298 * @since 1.0.0 299 */ 300 public function add_metaboxes() { 327 301 328 302 if ( ! $this->show_on() ) { … … 330 304 } 331 305 332 $page = get_current_screen()->id; 333 334 foreach ( $this->cmb->prop( 'object_types' ) as $object_type ) { 335 $screen = convert_to_screen( $object_type ); 336 337 // If we're on the right post-type/object... 338 if ( isset( $screen->id ) && $screen->id === $page ) { 339 340 // Show the box. 341 $this->output_context_metabox(); 342 } 343 } 344 } 345 346 /** 347 * Output the CMB2 box/fields in an alternate context (not in a standard metabox area). 348 * @since 2.2.4 349 */ 350 public function output_context_metabox() { 351 $title = $this->cmb->prop( 'title' ); 352 353 /* 354 * To keep from outputting the open/close markup, do not include 355 * a 'title' property in your metabox registration array. 356 * 357 * To output the fields 'naked' (without a postbox wrapper/style), then 358 * add a `'remove_box_wrap' => true` to your metabox registration array. 359 */ 360 $add_wrap = ! empty( $title ) || ! $this->cmb->prop( 'remove_box_wrap' ); 361 $add_handle = $add_wrap && ! empty( $title ); 362 363 // Open the context-box wrap. 364 $add_handle = $this->context_box_title_markup_open( $add_handle ); 365 366 // Show the form fields. 367 $this->cmb->show_form(); 368 369 // Close the context-box wrap. 370 $this->context_box_title_markup_close( $add_handle ); 371 } 372 373 /** 374 * Output the opening markup for a context box. 375 * @since 2.2.4 376 * @param $add_handle Whether to add the metabox handle and opening div for .inside 377 */ 378 public function context_box_title_markup_open( $add_handle = true ) { 379 $title = $this->cmb->prop( 'title' ); 380 381 $page = get_current_screen()->id; 382 add_filter( "postbox_classes_{$page}_{$this->cmb->cmb_id}", array( $this, 'postbox_classes' ) ); 383 384 echo '<div id="' . $this->cmb->cmb_id . '" class="' . postbox_classes( $this->cmb->cmb_id, $page ) . '">' . "\n"; 385 386 if ( $add_handle ) { 387 388 echo '<button type="button" class="handlediv button-link" aria-expanded="true">'; 389 echo '<span class="screen-reader-text">' . sprintf( __( 'Toggle panel: %s' ), $title ) . '</span>'; 390 echo '<span class="toggle-indicator" aria-hidden="true"></span>'; 391 echo '</button>'; 392 393 echo '<h2 class="hndle"><span>' . esc_attr( $title ) . '</span></h2>' . "\n"; 394 echo '<div class="inside">' . "\n"; 395 } 396 } 397 398 /** 399 * Output the closing markup for a context box. 400 * @since 2.2.4 401 * @param $add_inside_close Whether to add closing div for .inside. 402 */ 403 public function context_box_title_markup_close( $add_inside_close = true ) { 404 405 // Load the closing divs for a title box. 406 if ( $add_inside_close ) { 407 echo '</div>' . "\n"; // .inside 408 } 409 410 echo '</div>' . "\n"; // .context-box 411 } 412 413 /** 414 * Add metaboxes (to 'post' or 'comment' object types) 415 * @since 1.0.0 416 */ 417 public function add_metaboxes() { 418 419 if ( ! $this->show_on() ) { 420 return; 421 } 422 423 /* 306 /** 424 307 * To keep from registering an actual post-screen metabox, 425 * omit the 'title' propertyfrom the metabox registration array.308 * omit the 'title' attribute from the metabox registration array. 426 309 * 427 310 * (WordPress will not display metaboxes without titles anyway) 428 311 * 429 * This is a good solution if you want to handle outputting your430 * metaboxes/fields elsewhere in the post-screen.312 * This is a good solution if you want to output your metaboxes 313 * Somewhere else in the post-screen 431 314 */ 432 315 if ( ! $this->cmb->prop( 'title' ) ) { … … 434 317 } 435 318 436 $page = get_current_screen()->id; 437 add_filter( "postbox_classes_{$page}_{$this->cmb->cmb_id}", array( $this, 'postbox_classes' ) ); 438 439 foreach ( $this->cmb->prop( 'object_types' ) as $object_type ) { 319 foreach ( $this->cmb->prop( 'object_types' ) as $post_type ) { 320 if ( $this->cmb->prop( 'closed' ) ) { 321 add_filter( "postbox_classes_{$post_type}_{$this->cmb->cmb_id}", array( $this, 'close_metabox_class' ) ); 322 } 323 440 324 if ( count( $this->cmb->tax_metaboxes_to_remove ) ) { 441 $this->remove_default_tax_metaboxes( $ object_type );442 } 443 444 add_meta_box( $this->cmb->cmb_id, $this->cmb->prop( 'title' ), array( $this, 'metabox_callback' ), $ object_type, $this->cmb->prop( 'context' ), $this->cmb->prop( 'priority' ) );325 $this->remove_default_tax_metaboxes( $post_type ); 326 } 327 328 add_meta_box( $this->cmb->cmb_id, $this->cmb->prop( 'title' ), array( $this, 'metabox_callback' ), $post_type, $this->cmb->prop( 'context' ), $this->cmb->prop( 'priority' ) ); 445 329 } 446 330 } … … 463 347 464 348 /** 465 * Modify metabox postbox classes.466 * @since 2. 2.4349 * Add 'closed' class to metabox 350 * @since 2.0.0 467 351 * @param array $classes Array of classes 468 352 * @return array Modified array of classes 469 353 */ 470 public function postbox_classes( $classes ) { 471 if ( $this->cmb->prop( 'closed' ) && ! in_array( 'closed', $classes ) ) { 472 $classes[] = 'closed'; 473 } 474 475 if ( $this->cmb->is_alternate_context_box() ) { 476 $classes = $this->alternate_context_postbox_classes( $classes ); 477 } else { 478 $classes[] = 'cmb2-postbox'; 479 } 480 481 return $classes; 482 } 483 484 /** 485 * Modify metabox altnernate context postbox classes. 486 * @since 2.2.4 487 * @param array $classes Array of classes 488 * @return array Modified array of classes 489 */ 490 protected function alternate_context_postbox_classes( $classes ) { 491 $classes[] = 'context-box'; 492 $classes[] = 'context-' . $this->cmb->prop( 'context' ) . '-box'; 493 494 if ( in_array( $this->cmb->cmb_id, get_hidden_meta_boxes( get_current_screen() ) ) ) { 495 $classes[] = 'hide-if-js'; 496 } 497 498 $add_wrap = $this->cmb->prop( 'title' ) || ! $this->cmb->prop( 'remove_box_wrap' ); 499 500 if ( $add_wrap ) { 501 $classes[] = 'cmb2-postbox postbox'; 502 } else { 503 $classes[] = 'cmb2-no-box-wrap'; 504 } 505 354 public function close_metabox_class( $classes ) { 355 $classes[] = 'closed'; 506 356 return $classes; 507 357 } -
bim-ba/trunk/lib/cmb2/includes/helper-functions.php
r1608679 r1610879 261 261 // Get cmb form 262 262 cmb2_print_metabox_form( $cmb, $object_id, $args ); 263 $form = ob_get_clean(); 263 $form = ob_get_contents(); 264 ob_end_clean(); 264 265 265 266 return apply_filters( 'cmb2_get_metabox_form', $form, $object_id, $cmb ); -
bim-ba/trunk/lib/cmb2/init.php
r1608679 r1610879 18 18 * Andrew Norcross (@norcross / andrewnorcross.com) 19 19 * 20 * Version: 2.2. 420 * Version: 2.2.3.1 21 21 * 22 22 * Text Domain: cmb2 … … 49 49 *************************************************************************/ 50 50 51 if ( ! class_exists( 'CMB2_Bootstrap_22 4', false ) ) {51 if ( ! class_exists( 'CMB2_Bootstrap_2231', false ) ) { 52 52 53 53 /** … … 62 62 * @link http://webdevstudios.com 63 63 */ 64 class CMB2_Bootstrap_22 4{64 class CMB2_Bootstrap_2231 { 65 65 66 66 /** … … 69 69 * @since 1.0.0 70 70 */ 71 const VERSION = '2.2. 4';71 const VERSION = '2.2.3.1'; 72 72 73 73 /** … … 78 78 * @since 2.0.0 79 79 */ 80 const PRIORITY = 997 7;80 const PRIORITY = 9978; 81 81 82 82 /** 83 * Single instance of the CMB2_Bootstrap_22 4object83 * Single instance of the CMB2_Bootstrap_2231 object 84 84 * 85 * @var CMB2_Bootstrap_22 485 * @var CMB2_Bootstrap_2231 86 86 */ 87 87 public static $single_instance = null; 88 88 89 89 /** 90 * Creates/returns the single instance CMB2_Bootstrap_22 4object90 * Creates/returns the single instance CMB2_Bootstrap_2231 object 91 91 * 92 92 * @since 2.0.0 93 * @return CMB2_Bootstrap_22 4Single instance object93 * @return CMB2_Bootstrap_2231 Single instance object 94 94 */ 95 95 public static function initiate() { … … 182 182 183 183 // Make it so... 184 CMB2_Bootstrap_22 4::initiate();184 CMB2_Bootstrap_2231::initiate(); 185 185 186 186 } -
bim-ba/trunk/lib/cmb2/languages/cmb2.pot
r1608679 r1610879 1 # Copyright (C) 201 7WebDevStudios1 # Copyright (C) 2016 WebDevStudios 2 2 # This file is distributed under the same license as the CMB2 package. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: CMB2 2.2. 4\n"5 "Project-Id-Version: CMB2 2.2.3\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/cmb2\n" 7 "POT-Creation-Date: 201 7-02-15 17:51:05+00:00\n"7 "POT-Creation-Date: 2016-10-25 20:49:50+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=utf-8\n" 10 10 "Content-Transfer-Encoding: 8bit\n" 11 "PO-Revision-Date: 201 7-2-15 17:51+300\n"11 "PO-Revision-Date: 2016-10-25 20:49+240\n" 12 12 "Last-Translator: WebDevStudios contact@webdevstudios.com\n" 13 13 "Language-Team: WebDevStudios contact@webdevstudios.com\n" … … 25 25 "X-Textdomain-Support: yes\n" 26 26 27 #: example-functions.php:117 tests/test-cmb-field.php:26 127 #: example-functions.php:117 tests/test-cmb-field.php:262 28 28 msgid "Test Metabox" 29 29 msgstr "" 30 30 31 #: example-functions.php:13 0 example-functions.php:45231 #: example-functions.php:131 example-functions.php:454 32 32 msgid "Test Text" 33 33 msgstr "" 34 34 35 #: example-functions.php:13 1 example-functions.php:14436 #: example-functions.php:15 7 example-functions.php:16437 #: example-functions.php:17 7 example-functions.php:18538 #: example-functions.php:19 4 example-functions.php:20239 #: example-functions.php:21 7 example-functions.php:22540 #: example-functions.php:23 3 example-functions.php:25041 #: example-functions.php:2 59 example-functions.php:27242 #: example-functions.php:2 79 example-functions.php:28643 #: example-functions.php:30 0 example-functions.php:31344 #: example-functions.php:32 6 example-functions.php:33845 #: example-functions.php:34 7 example-functions.php:35546 #: example-functions.php:36 4 example-functions.php:37147 #: example-functions.php:38 5 example-functions.php:45348 #: example-functions.php:54 4 example-functions.php:55249 #: example-functions.php:5 59 example-functions.php:56650 #: example-functions.php:57 3 example-functions.php:58051 #: example-functions.php:58 7 example-functions.php:61452 #: example-functions.php:62 2 example-functions.php:62953 #: example-functions.php:66 6 tests/test-cmb-field.php:27335 #: example-functions.php:132 example-functions.php:146 36 #: example-functions.php:159 example-functions.php:166 37 #: example-functions.php:179 example-functions.php:187 38 #: example-functions.php:196 example-functions.php:204 39 #: example-functions.php:219 example-functions.php:227 40 #: example-functions.php:235 example-functions.php:252 41 #: example-functions.php:261 example-functions.php:274 42 #: example-functions.php:281 example-functions.php:288 43 #: example-functions.php:302 example-functions.php:315 44 #: example-functions.php:328 example-functions.php:340 45 #: example-functions.php:349 example-functions.php:357 46 #: example-functions.php:366 example-functions.php:373 47 #: example-functions.php:387 example-functions.php:455 48 #: example-functions.php:546 example-functions.php:554 49 #: example-functions.php:561 example-functions.php:568 50 #: example-functions.php:575 example-functions.php:582 51 #: example-functions.php:589 example-functions.php:616 52 #: example-functions.php:624 example-functions.php:631 53 #: example-functions.php:668 tests/test-cmb-field.php:274 54 54 msgid "field description (optional)" 55 55 msgstr "" 56 56 57 #: example-functions.php:14 357 #: example-functions.php:145 58 58 msgid "Test Text Small" 59 59 msgstr "" 60 60 61 #: example-functions.php:15 661 #: example-functions.php:158 62 62 msgid "Test Text Medium" 63 63 msgstr "" 64 64 65 #: example-functions.php:16 365 #: example-functions.php:165 66 66 msgid "Read-only Disabled Field" 67 67 msgstr "" 68 68 69 #: example-functions.php:16 769 #: example-functions.php:169 70 70 msgid "Hey there, I'm a read-only field" 71 71 msgstr "" 72 72 73 #: example-functions.php:17 673 #: example-functions.php:178 74 74 msgid "Custom Rendered Field" 75 75 msgstr "" 76 76 77 #: example-functions.php:18 477 #: example-functions.php:186 78 78 msgid "Website URL" 79 79 msgstr "" 80 80 81 #: example-functions.php:19 381 #: example-functions.php:195 82 82 msgid "Test Text Email" 83 83 msgstr "" 84 84 85 #: example-functions.php:20 185 #: example-functions.php:203 86 86 msgid "Test Time" 87 87 msgstr "" 88 88 89 #: example-functions.php:2 09 example-functions.php:21089 #: example-functions.php:211 example-functions.php:212 90 90 msgid "Time zone" 91 91 msgstr "" 92 92 93 #: example-functions.php:21 693 #: example-functions.php:218 94 94 msgid "Test Date Picker" 95 95 msgstr "" 96 96 97 #: example-functions.php:22 497 #: example-functions.php:226 98 98 msgid "Test Date Picker (UNIX timestamp)" 99 99 msgstr "" 100 100 101 #: example-functions.php:23 2101 #: example-functions.php:234 102 102 msgid "Test Date/Time Picker Combo (UNIX timestamp)" 103 103 msgstr "" 104 104 105 #: example-functions.php:2 49105 #: example-functions.php:251 106 106 msgid "Test Money" 107 107 msgstr "" 108 108 109 #: example-functions.php:2 58109 #: example-functions.php:260 110 110 msgid "Test Color Picker" 111 111 msgstr "" 112 112 113 #: example-functions.php:27 1113 #: example-functions.php:273 114 114 msgid "Test Text Area" 115 115 msgstr "" 116 116 117 #: example-functions.php:2 78117 #: example-functions.php:280 118 118 msgid "Test Text Area Small" 119 119 msgstr "" 120 120 121 #: example-functions.php:28 5121 #: example-functions.php:287 122 122 msgid "Test Text Area for Code" 123 123 msgstr "" 124 124 125 #: example-functions.php:29 2125 #: example-functions.php:294 126 126 msgid "Test Title Weeeee" 127 127 msgstr "" 128 128 129 #: example-functions.php:29 3129 #: example-functions.php:295 130 130 msgid "This is a title description" 131 131 msgstr "" 132 132 133 #: example-functions.php: 299133 #: example-functions.php:301 134 134 msgid "Test Select" 135 msgstr ""136 137 #: example-functions.php:305 example-functions.php:318138 #: example-functions.php:330139 msgid "Option One"140 msgstr ""141 142 #: example-functions.php:306 example-functions.php:319143 #: example-functions.php:331144 msgid "Option Two"145 135 msgstr "" 146 136 147 137 #: example-functions.php:307 example-functions.php:320 148 138 #: example-functions.php:332 139 msgid "Option One" 140 msgstr "" 141 142 #: example-functions.php:308 example-functions.php:321 143 #: example-functions.php:333 144 msgid "Option Two" 145 msgstr "" 146 147 #: example-functions.php:309 example-functions.php:322 148 #: example-functions.php:334 149 149 msgid "Option Three" 150 150 msgstr "" 151 151 152 #: example-functions.php:31 2152 #: example-functions.php:314 153 153 msgid "Test Radio inline" 154 154 msgstr "" 155 155 156 #: example-functions.php:32 5156 #: example-functions.php:327 157 157 msgid "Test Radio" 158 158 msgstr "" 159 159 160 #: example-functions.php:33 7160 #: example-functions.php:339 161 161 msgid "Test Taxonomy Radio" 162 162 msgstr "" 163 163 164 #: example-functions.php:34 6164 #: example-functions.php:348 165 165 msgid "Test Taxonomy Select" 166 166 msgstr "" 167 167 168 #: example-functions.php:35 4168 #: example-functions.php:356 169 169 msgid "Test Taxonomy Multi Checkbox" 170 170 msgstr "" 171 171 172 #: example-functions.php:36 3172 #: example-functions.php:365 173 173 msgid "Test Checkbox" 174 174 msgstr "" 175 175 176 #: example-functions.php:37 0 tests/test-cmb-field.php:272176 #: example-functions.php:372 tests/test-cmb-field.php:273 177 177 msgid "Test Multi Checkbox" 178 178 msgstr "" 179 179 180 #: example-functions.php:37 6 tests/test-cmb-field.php:278180 #: example-functions.php:378 tests/test-cmb-field.php:279 181 181 msgid "Check One" 182 182 msgstr "" 183 183 184 #: example-functions.php:37 7 tests/test-cmb-field.php:279184 #: example-functions.php:379 tests/test-cmb-field.php:280 185 185 msgid "Check Two" 186 186 msgstr "" 187 187 188 #: example-functions.php:3 78 tests/test-cmb-field.php:280188 #: example-functions.php:380 tests/test-cmb-field.php:281 189 189 msgid "Check Three" 190 190 msgstr "" 191 191 192 #: example-functions.php:38 4192 #: example-functions.php:386 193 193 msgid "Test wysiwyg" 194 194 msgstr "" 195 195 196 #: example-functions.php:39 2196 #: example-functions.php:394 197 197 msgid "Test Image" 198 198 msgstr "" 199 199 200 #: example-functions.php:39 3200 #: example-functions.php:395 201 201 msgid "Upload an image or enter a URL." 202 202 msgstr "" 203 203 204 #: example-functions.php: 399204 #: example-functions.php:401 205 205 msgid "Multiple Files" 206 206 msgstr "" 207 207 208 #: example-functions.php:40 0208 #: example-functions.php:402 209 209 msgid "Upload or add multiple images/attachments." 210 210 msgstr "" 211 211 212 #: example-functions.php:40 7212 #: example-functions.php:409 213 213 msgid "oEmbed" 214 214 msgstr "" 215 215 216 #: example-functions.php:41 0216 #: example-functions.php:412 217 217 #. translators: %s: link to codex.wordpress.org/Embeds 218 218 msgid "Enter a youtube, twitter, or instagram URL. Supports services listed at %s." 219 219 msgstr "" 220 220 221 #: example-functions.php:44 3221 #: example-functions.php:445 222 222 msgid "About Page Metabox" 223 223 msgstr "" 224 224 225 #: example-functions.php:47 2225 #: example-functions.php:474 226 226 msgid "Repeating Field Group" 227 227 msgstr "" 228 228 229 #: example-functions.php:48 0229 #: example-functions.php:482 230 230 msgid "Generates reusable form entries" 231 231 msgstr "" 232 232 233 #: example-functions.php:48 2233 #: example-functions.php:484 234 234 msgid "Entry {#}" 235 235 msgstr "" 236 236 237 #: example-functions.php:48 3237 #: example-functions.php:485 238 238 msgid "Add Another Entry" 239 239 msgstr "" 240 240 241 #: example-functions.php:48 4241 #: example-functions.php:486 242 242 msgid "Remove Entry" 243 243 msgstr "" 244 244 245 #: example-functions.php:49 7245 #: example-functions.php:499 246 246 msgid "Entry Title" 247 247 msgstr "" 248 248 249 #: example-functions.php:50 4249 #: example-functions.php:506 250 250 msgid "Description" 251 251 msgstr "" 252 252 253 #: example-functions.php:50 5253 #: example-functions.php:507 254 254 msgid "Write a short description for this entry" 255 255 msgstr "" 256 256 257 #: example-functions.php:51 1257 #: example-functions.php:513 258 258 msgid "Entry Image" 259 259 msgstr "" 260 260 261 #: example-functions.php:51 7261 #: example-functions.php:519 262 262 msgid "Image Caption" 263 263 msgstr "" 264 264 265 #: example-functions.php:53 6265 #: example-functions.php:538 266 266 msgid "User Profile Metabox" 267 267 msgstr "" 268 268 269 #: example-functions.php:54 3 example-functions.php:613269 #: example-functions.php:545 example-functions.php:615 270 270 msgid "Extra Info" 271 271 msgstr "" 272 272 273 #: example-functions.php:55 1273 #: example-functions.php:553 274 274 msgid "Avatar" 275 275 msgstr "" 276 276 277 #: example-functions.php:5 58277 #: example-functions.php:560 278 278 msgid "Facebook URL" 279 279 msgstr "" 280 280 281 #: example-functions.php:56 5281 #: example-functions.php:567 282 282 msgid "Twitter URL" 283 283 msgstr "" 284 284 285 #: example-functions.php:57 2285 #: example-functions.php:574 286 286 msgid "Google+ URL" 287 287 msgstr "" 288 288 289 #: example-functions.php:5 79289 #: example-functions.php:581 290 290 msgid "Linkedin URL" 291 291 msgstr "" 292 292 293 #: example-functions.php:58 6293 #: example-functions.php:588 294 294 msgid "User Field" 295 295 msgstr "" 296 296 297 #: example-functions.php:60 6297 #: example-functions.php:608 298 298 msgid "Category Metabox" 299 299 msgstr "" 300 300 301 #: example-functions.php:62 1301 #: example-functions.php:623 302 302 msgid "Term Image" 303 303 msgstr "" 304 304 305 #: example-functions.php:6 28305 #: example-functions.php:630 306 306 msgid "Arbitrary Term Field" 307 307 msgstr "" 308 308 309 #: example-functions.php:65 0309 #: example-functions.php:652 310 310 msgid "Theme Options Metabox" 311 311 msgstr "" 312 312 313 #: example-functions.php:66 5313 #: example-functions.php:667 314 314 msgid "Site Background Color" 315 315 msgstr "" 316 316 317 #: example-functions.php:701 318 msgid "REST Test Box" 319 msgstr "" 320 321 #: example-functions.php:710 322 msgid "REST Test Text" 323 msgstr "" 324 325 #: example-functions.php:711 326 msgid "Will show in the REST API for this box and for pages." 327 msgstr "" 328 329 #: example-functions.php:717 330 msgid "REST Editable Test Text" 331 msgstr "" 332 333 #: example-functions.php:718 334 msgid "Will show in REST API \"editable\" contexts only (`POST` requests)." 335 msgstr "" 336 337 #: includes/CMB2.php:167 317 #: includes/CMB2.php:117 338 318 msgid "Metabox configuration is required to have an ID parameter." 339 319 msgstr "" 340 320 341 #: includes/CMB2.php: 510321 #: includes/CMB2.php:432 342 322 msgid "Click to toggle" 343 323 msgstr "" … … 352 332 353 333 #: includes/CMB2_Ajax.php:181 includes/helper-functions.php:99 354 #: tests/cmb-tests-base.php:68 tests/test-cmb-types-display.php:1 92334 #: tests/cmb-tests-base.php:68 tests/test-cmb-types-display.php:161 355 335 #. translators: 1: results for. 2: link to codex.wordpress.org/Embeds 356 336 msgid "No oEmbed Results Found for %1$s. View more info at %2$s." … … 398 378 399 379 #: includes/CMB2_Field.php:1141 includes/CMB2_Field.php:1145 400 #: tests/test-cmb-field.php:23 5380 #: tests/test-cmb-field.php:236 401 381 msgid "None" 402 382 msgstr "" … … 406 386 msgstr "" 407 387 408 #: includes/CMB2_Field_Display.php:40 9 includes/CMB2_JS.php:156388 #: includes/CMB2_Field_Display.php:406 includes/CMB2_JS.php:155 409 389 #: includes/types/CMB2_Type_File_Base.php:75 tests/test-cmb-types-base.php:143 410 390 #: tests/test-cmb-types.php:700 … … 412 392 msgstr "" 413 393 414 #: includes/CMB2_JS.php:9 7 includes/CMB2_JS.php:136394 #: includes/CMB2_JS.php:96 includes/CMB2_JS.php:135 415 395 msgid "Clear" 416 396 msgstr "" 417 397 398 #: includes/CMB2_JS.php:97 399 msgid "Default" 400 msgstr "" 401 418 402 #: includes/CMB2_JS.php:98 419 msgid " Default"403 msgid "Select Color" 420 404 msgstr "" 421 405 422 406 #: includes/CMB2_JS.php:99 423 msgid "Select Color"424 msgstr ""425 426 #: includes/CMB2_JS.php:100427 407 msgid "Current Color" 428 408 msgstr "" 429 409 410 #: includes/CMB2_JS.php:126 411 msgid "Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday" 412 msgstr "" 413 430 414 #: includes/CMB2_JS.php:127 431 msgid "Su nday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday"415 msgid "Su, Mo, Tu, We, Th, Fr, Sa" 432 416 msgstr "" 433 417 434 418 #: includes/CMB2_JS.php:128 435 msgid "Su , Mo, Tu, We, Th, Fr, Sa"419 msgid "Sun, Mon, Tue, Wed, Thu, Fri, Sat" 436 420 msgstr "" 437 421 438 422 #: includes/CMB2_JS.php:129 439 msgid "Sun, Mon, Tue, Wed, Thu, Fri, Sat"440 msgstr ""441 442 #: includes/CMB2_JS.php:130443 423 msgid "" 444 424 "January, February, March, April, May, June, July, August, September, " … … 446 426 msgstr "" 447 427 428 #: includes/CMB2_JS.php:130 429 msgid "Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec" 430 msgstr "" 431 448 432 #: includes/CMB2_JS.php:131 449 msgid " Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec"433 msgid "Next" 450 434 msgstr "" 451 435 452 436 #: includes/CMB2_JS.php:132 453 msgid " Next"437 msgid "Prev" 454 438 msgstr "" 455 439 456 440 #: includes/CMB2_JS.php:133 457 msgid "Prev"458 msgstr ""459 460 #: includes/CMB2_JS.php:134461 441 msgid "Today" 462 442 msgstr "" 463 443 464 #: includes/CMB2_JS.php:13 5 includes/CMB2_JS.php:145444 #: includes/CMB2_JS.php:134 includes/CMB2_JS.php:144 465 445 msgid "Done" 466 446 msgstr "" 467 447 448 #: includes/CMB2_JS.php:138 449 msgid "Choose Time" 450 msgstr "" 451 468 452 #: includes/CMB2_JS.php:139 469 msgid " ChooseTime"453 msgid "Time" 470 454 msgstr "" 471 455 472 456 #: includes/CMB2_JS.php:140 473 msgid " Time"457 msgid "Hour" 474 458 msgstr "" 475 459 476 460 #: includes/CMB2_JS.php:141 477 msgid " Hour"461 msgid "Minute" 478 462 msgstr "" 479 463 480 464 #: includes/CMB2_JS.php:142 481 msgid " Minute"465 msgid "Second" 482 466 msgstr "" 483 467 484 468 #: includes/CMB2_JS.php:143 485 msgid "Second"486 msgstr ""487 488 #: includes/CMB2_JS.php:144489 469 msgid "Now" 490 470 msgstr "" 491 471 472 #: includes/CMB2_JS.php:151 473 msgid "Use this file" 474 msgstr "" 475 492 476 #: includes/CMB2_JS.php:152 493 msgid "Use this file"494 msgstr ""495 496 #: includes/CMB2_JS.php:153497 477 msgid "Use these files" 498 478 msgstr "" 499 479 500 #: includes/CMB2_JS.php:15 4includes/types/CMB2_Type_File_Base.php:61480 #: includes/CMB2_JS.php:153 includes/types/CMB2_Type_File_Base.php:61 501 481 msgid "Remove Image" 502 482 msgstr "" 503 483 504 #: includes/CMB2_JS.php:15 5 includes/CMB2_Types.php:392484 #: includes/CMB2_JS.php:154 includes/CMB2_Types.php:300 505 485 #: includes/types/CMB2_Type_File_Base.php:80 tests/test-cmb-types-base.php:143 506 486 #: tests/test-cmb-types.php:47 tests/test-cmb-types.php:55 … … 509 489 msgstr "" 510 490 511 #: includes/CMB2_JS.php:15 7includes/types/CMB2_Type_File_Base.php:78491 #: includes/CMB2_JS.php:156 includes/types/CMB2_Type_File_Base.php:78 512 492 #: tests/test-cmb-types-base.php:143 tests/test-cmb-types.php:700 513 493 msgid "Download" 514 494 msgstr "" 515 495 516 #: includes/CMB2_JS.php:15 8496 #: includes/CMB2_JS.php:157 517 497 msgid "Select / Deselect All" 518 498 msgstr "" 519 499 520 #: includes/CMB2_Types.php:220 521 msgid "Custom CMB2 field type classes must extend CMB2_Type_Base." 522 msgstr "" 523 524 #: includes/CMB2_Types.php:329 500 #: includes/CMB2_Types.php:237 525 501 msgid "Add Row" 526 502 msgstr "" 527 503 528 #: includes/CMB2_hookup.php:1 48504 #: includes/CMB2_hookup.php:122 529 505 msgid "" 530 506 "Term Metadata is a WordPress 4.4+ feature. Please upgrade your WordPress " … … 532 508 msgstr "" 533 509 534 #: includes/CMB2_hookup.php:1 52510 #: includes/CMB2_hookup.php:126 535 511 msgid "Term metaboxes configuration requires a \"taxonomies\" parameter." 536 512 msgstr "" 537 513 538 #: includes/CMB2_hookup.php:389 539 msgid "Toggle panel: %s" 540 msgstr "" 541 542 #: includes/helper-functions.php:287 514 #: includes/helper-functions.php:288 543 515 msgid "Save" 544 516 msgstr "" … … 662 634 msgstr "" 663 635 664 #: includes/types/CMB2_Type_File.php: 40tests/test-cmb-types.php:682636 #: includes/types/CMB2_Type_File.php:36 tests/test-cmb-types.php:682 665 637 #: tests/test-cmb-types.php:700 666 638 msgid "Add or Upload File" 667 639 msgstr "" 668 640 669 #: includes/types/CMB2_Type_File_List.php:3 9tests/test-cmb-types.php:638641 #: includes/types/CMB2_Type_File_List.php:36 tests/test-cmb-types.php:638 670 642 #: tests/test-cmb-types.php:662 671 643 msgid "Add or Upload Files" … … 699 671 msgstr "" 700 672 701 #: includes/CMB2_JS.php:12 6673 #: includes/CMB2_JS.php:125 702 674 msgctxt "Valid formatDate string for jquery-ui datepicker" 703 675 msgid "mm/dd/yy" 704 676 msgstr "" 705 677 706 #: includes/CMB2_JS.php:14 6678 #: includes/CMB2_JS.php:145 707 679 msgctxt "" 708 680 "Valid formatting string, as per " -
bim-ba/trunk/lib/cmb2/readme.txt
r1608679 r1610879 4 4 Tags: metaboxes, forms, fields, options, settings 5 5 Requires at least: 3.8.0 6 Tested up to: 4. 7.27 Stable tag: 2.2. 46 Tested up to: 4.4.2 7 Stable tag: 2.2.3.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 13 13 == Description == 14 14 15 CMB2 is a developer's toolkit for building metaboxes, custom fields, and forms for WordPress that will blow your mind. Easily manage meta for posts, terms, users, comments, or create custom option pages.15 CMB2 is a developer's toolkit for building metaboxes, custom fields, and forms for WordPress that will blow your mind. 16 16 17 17 CMB2 is a complete rewrite of Custom Metaboxes and Fields for WordPress. To get started, please follow the examples in the included `example-functions.php` file and have a look at the [basic usage instructions](https://github.com/WebDevStudios/CMB2/wiki/Basic-Usage). … … 29 29 * [Create forms to be used on an options pages](https://github.com/WebDevStudios/CMB2/wiki/Using-CMB-to-create-an-Admin-Theme-Options-Page). 30 30 * Create forms to handle user meta and display them on user profile add/edit pages. 31 * Create forms to handle term meta and display wherever your taxonomies are used.32 31 * [Flexible API that allows you to use CMB forms almost anywhere, even on the front-end](https://github.com/WebDevStudios/CMB2/wiki/Bringing-Metaboxes-to-the-Front-end). 33 32 * [Several field types are included](https://github.com/WebDevStudios/CMB2/wiki/Field-Types). … … 47 46 ##### Custom Field Types 48 47 * [CMB2 Field Type: CMB Attached Posts Field](https://github.com/coreymcollins/cmb-attached-posts) from [coreymcollins](https://github.com/coreymcollins): `custom_attached_posts`, for attaching posts to a page. 49 * [CMB2 Field Type: Post Search Ajax](https://github.com/alexis-magina/cmb2-field-post-search-ajax) by [alexis-magina](https://github.com/alexis-magina): `post_search_ajax` Attach posts to each other. Same approach as [CMB2 Attached Posts Field](https://github.com/coreymcollins/cmb-attached-posts) but with Ajax request, multiple/single option, and different UI.50 48 * [CMB2 Field Type: CMB2 Post Search field](https://github.com/WebDevStudios/CMB2-Post-Search-field): `post_search_text` adds a post-search dialog for searching/attaching other post IDs. 51 49 * [CMB2 Field Type: CMB2 User Search field](https://github.com/Mte90/CMB2-User-Search-field) from [Mte90](https://github.com/Mte90): `user_search_text` adds a user-search dialog for searching/attaching other User IDs. … … 80 78 * [CMB2 Metabox Code Generator](http://willthemoor.github.io/cmb2-metabox-generator/) from [willthemoor](https://github.com/willthemoor/): Skip the boring bits. Use this generator to create fully functional CMB2 metaboxes easily. Now with bulk entry! 81 79 * [Caldera Metaplate](https://wordpress.org/plugins/caldera-metaplate/) by [CalderaWP](https://calderawp.com/): Not specific to CMB2, but allows creating templates for outputting your custom fields. 82 * [Yoast CMB2 Field Analysis WP Plugin](https://github.com/alexis-magina/yoast-cmb2-field-analysis) by [alexis-magina](https://github.com/alexis-magina): This plugin adds in a js based method of recalculating Yoast SEO's content scores when updating page content, specifically custom meta fields added via the CMB2 library.83 80 84 81 ### Links … … 118 115 119 116 == Changelog == 120 121 ### 2.2.4 - 2017-02-27122 123 #### Enhancements124 125 * Modify `'taxonomy_*'` fields to return stored terms for non-post objects.126 * Modify `CMB2::get_sanitized_values()` to return the sanitized `'taxonomy_*'` field values. Also added `"cmb2_return_taxonomy_values_{$cmb_id}"` filter to modify if `'taxonomy_*'` field values are returned. Fixes [#538](https://github.com/WebDevStudios/CMB2/issues/538).127 * Allow outputting CMB2 boxes/fields in additional locations in the post-editor.128 129 **The new locations are:** [`form_top`](https://developer.wordpress.org/reference/hooks/edit_form_top/), [`before_permalink`](https://developer.wordpress.org/reference/hooks/edit_form_before_permalink/), [`after_title`](https://developer.wordpress.org/reference/hooks/edit_form_after_title/), and [`after_editor`](https://developer.wordpress.org/reference/hooks/edit_form_after_editor/)130 131 These would be defined by setting the `context` property for your box:132 133 ```php134 $cmb_demo = new_cmb2_box( array(135 ...136 'context' => 'before_permalink',137 ) );138 ```139 140 If it is preferred that the fields are output without the metabox, then omit the `'title'` property from the metabox registration array, and instead add ` 'remove_box_wrap' => true,`.141 142 Props [@norcross](https://github.com/norcross) ([#836](https://github.com/WebDevStudios/CMB2/pull/836)).143 * New field parameter, `'render_class'`, allowing you to override the default `'CMB2_Type_Base'` class that is used when rendering the field. This provides interesting object-oriented ways to override default CMB2 behavior by subclassing the default class and overriding methods. The render class can also be overridden with the `"cmb2_render_class_{$fieldtype}"` filter, which is passed the default render class name as well as the `CMB2_Types` object, but this should be used sparingly, and within the context of your project's boxes/fields or you could break other plugins'/themes' CMB2 fields.144 * Improvements to the `file`/`file_list` fields javascript APIs, including using undersore templates.145 * Small improvements to the styling for the `file_list` field type.146 * New action hook, `cmb2_footer_enqueue`, which occurs after CMB2 enqueues its assets.147 * Example functions clean up. Props [@PavelK27](https://github.com/PavelK27) ([#866](https://github.com/WebDevStudios/CMB2/pull/866)).148 * New `CMB2_Utils` methods, `get_available_image_sizes()` and `get_named_size()`. Props [@Cai333](https://github.com/Cai333).149 150 #### Bug Fixes151 152 * Fix datepicker month/year dropdown text color. On windows, the option text was showing as white (invisible). Fixes [#770](https://github.com/WebDevStudios/CMB2/issues/770).153 * Repeatable WYSIWYG no longer breaks if `'quicktags'` param is set to false. Props [@timburden](https://github.com/timburden) ([#797](https://github.com/WebDevStudios/CMB2/pull/797), [#796](https://github.com/WebDevStudios/CMB2/issues/796)).154 * Do not process title fields during group field save process.155 * Fix issue where term-meta values were not being displayed for some users. Props [@sbussetti](https://github.com/sbussetti) ([#763](https://github.com/WebDevStudios/CMB2/pull/763), [#700](https://github.com/WebDevStudios/CMB2/issues/700)).156 * Fix issue where term meta would not be applied when using the new term form if multiple object types were specified. Props [@ADC07](https://github.com/ADC07) ([#842](https://github.com/WebDevStudios/CMB2/pull/842), [#841](https://github.com/WebDevStudios/CMB2/issues/841)).157 * Fix WordPress spinner styling when boxes/fields used on the frontend.158 * Fix issue where clicking to remove a `file_list` item could occasionally remove the field row. ([#828](https://github.com/WebDevStudios/CMB2/pull/828)).159 * Fix issue where empty file field in group would still cause non-empty values to store to database. ([#721](https://github.com/WebDevStudios/CMB2/issues/721)).160 * Make `file`/`file_list` field preview images work with named sizes. Props [@Cai333](https://github.com/Cai333) ([#848](https://github.com/WebDevStudios/CMB2/pull/848), [#844](https://github.com/WebDevStudios/CMB2/issues/844)).161 * Fix incorrect text-domain. ([#798](https://github.com/WebDevStudios/CMB2/issues/798))162 * Do not silence notices/errors in `CMB2_Utils::get_file_ext()`.163 * If `title` field type has no name value, then only output a span element (instead of a header element).164 117 165 118 ### 2.2.3.1 - 2016-11-08 … … 680 633 == Upgrade Notice == 681 634 682 ### 2.2.4 - 2017-02-27683 684 #### Enhancements685 686 * Modify `'taxonomy_*'` fields to return stored terms for non-post objects.687 * Modify `CMB2::get_sanitized_values()` to return the sanitized `'taxonomy_*'` field values. Also added `"cmb2_return_taxonomy_values_{$cmb_id}"` filter to modify if `'taxonomy_*'` field values are returned. Fixes [#538](https://github.com/WebDevStudios/CMB2/issues/538).688 * Allow outputting CMB2 boxes/fields in additional locations in the post-editor.689 690 **The new locations are:** [`form_top`](https://developer.wordpress.org/reference/hooks/edit_form_top/), [`before_permalink`](https://developer.wordpress.org/reference/hooks/edit_form_before_permalink/), [`after_title`](https://developer.wordpress.org/reference/hooks/edit_form_after_title/), and [`after_editor`](https://developer.wordpress.org/reference/hooks/edit_form_after_editor/)691 692 These would be defined by setting the `context` property for your box:693 694 ```php695 $cmb_demo = new_cmb2_box( array(696 ...697 'context' => 'before_permalink',698 ) );699 ```700 701 If it is preferred that the fields are output without the metabox, then omit the `'title'` property from the metabox registration array, and instead add ` 'remove_box_wrap' => true,`.702 703 Props [@norcross](https://github.com/norcross) ([#836](https://github.com/WebDevStudios/CMB2/pull/836)).704 * New field parameter, `'render_class'`, allowing you to override the default `'CMB2_Type_Base'` class that is used when rendering the field. This provides interesting object-oriented ways to override default CMB2 behavior by subclassing the default class and overriding methods. The render class can also be overridden with the `"cmb2_render_class_{$fieldtype}"` filter, which is passed the default render class name as well as the `CMB2_Types` object, but this should be used sparingly, and within the context of your project's boxes/fields or you could break other plugins'/themes' CMB2 fields.705 * Improvements to the `file`/`file_list` fields javascript APIs, including using undersore templates.706 * Small improvements to the styling for the `file_list` field type.707 * New action hook, `cmb2_footer_enqueue`, which occurs after CMB2 enqueues its assets.708 * Example functions clean up. Props [@PavelK27](https://github.com/PavelK27) ([#866](https://github.com/WebDevStudios/CMB2/pull/866)).709 * New `CMB2_Utils` methods, `get_available_image_sizes()` and `get_named_size()`. Props [@Cai333](https://github.com/Cai333).710 711 #### Bug Fixes712 713 * Fix datepicker month/year dropdown text color. On windows, the option text was showing as white (invisible). Fixes [#770](https://github.com/WebDevStudios/CMB2/issues/770).714 * Repeatable WYSIWYG no longer breaks if `'quicktags'` param is set to false. Props [@timburden](https://github.com/timburden) ([#797](https://github.com/WebDevStudios/CMB2/pull/797), [#796](https://github.com/WebDevStudios/CMB2/issues/796)).715 * Do not process title fields during group field save process.716 * Fix issue where term-meta values were not being displayed for some users. Props [@sbussetti](https://github.com/sbussetti) ([#763](https://github.com/WebDevStudios/CMB2/pull/763), [#700](https://github.com/WebDevStudios/CMB2/issues/700)).717 * Fix issue where term meta would not be applied when using the new term form if multiple object types were specified. Props [@ADC07](https://github.com/ADC07) ([#842](https://github.com/WebDevStudios/CMB2/pull/842), [#841](https://github.com/WebDevStudios/CMB2/issues/841)).718 * Fix WordPress spinner styling when boxes/fields used on the frontend.719 * Fix issue where clicking to remove a `file_list` item could occasionally remove the field row. ([#828](https://github.com/WebDevStudios/CMB2/pull/828)).720 * Fix issue where empty file field in group would still cause non-empty values to store to database. ([#721](https://github.com/WebDevStudios/CMB2/issues/721)).721 * Make `file`/`file_list` field preview images work with named sizes. Props [@Cai333](https://github.com/Cai333) ([#848](https://github.com/WebDevStudios/CMB2/pull/848), [#844](https://github.com/WebDevStudios/CMB2/issues/844)).722 * Fix incorrect text-domain. ([#798](https://github.com/WebDevStudios/CMB2/issues/798))723 * Do not silence notices/errors in `CMB2_Utils::get_file_ext()`.724 * If `title` field type has no name value, then only output a span element (instead of a header element).725 726 635 ### 2.2.3.1 - 2016-11-08 727 636
Note: See TracChangeset
for help on using the changeset viewer.