pro
2 weeks ago
_acf-headerbar.scss
1 year ago
_acf-icon-picker.scss
1 year ago
_admin-inputs.scss
1 year ago
_admin-toolbar.scss
1 year ago
_btn.scss
1 year ago
_dark.scss
1 year ago
_edit-field-group.scss
1 year ago
_field-group.scss
1 year ago
_field-picker.scss
1 year ago
_field-type-icons.scss
1 year ago
_fields.scss
1 month ago
_forms.scss
11 months ago
_global.scss
1 year ago
_icons.scss
1 year ago
_input.scss
1 year ago
_list-table.scss
1 year ago
_media.scss
1 year ago
_mixins.scss
1 year ago
_post-types-taxonomies.scss
1 year ago
_postbox.scss
1 year ago
_pro-upgrade.scss
1 year ago
_sub-field-groups.scss
1 year ago
_tools.scss
1 year ago
_typography.scss
1 year ago
_updates.scss
1 year ago
_variables.scss
1 year ago
acf-dark.scss
1 year ago
acf-field-group.scss
7 months ago
acf-global.scss
2 months ago
acf-input.scss
1 month ago
_postbox.scss
72 lines
| 1 | // Gutenberg specific styles. |
| 2 | #editor { |
| 3 | |
| 4 | // Postbox container. |
| 5 | .edit-post-layout__metaboxes { |
| 6 | padding: 0; |
| 7 | .edit-post-meta-boxes-area { |
| 8 | margin: 0; |
| 9 | } |
| 10 | } |
| 11 | |
| 12 | // Sidebar postbox container. |
| 13 | .metabox-location-side { |
| 14 | .postbox-container { |
| 15 | float: none; |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | // Alter postbox to look like panel component. |
| 20 | .postbox { |
| 21 | color: #444; |
| 22 | |
| 23 | > .postbox-header { |
| 24 | .hndle { |
| 25 | border-bottom: none; |
| 26 | &:hover { |
| 27 | background: transparent; |
| 28 | } |
| 29 | } |
| 30 | .handle-actions { |
| 31 | .handle-order-higher, |
| 32 | .handle-order-lower { |
| 33 | width: 1.62rem; |
| 34 | } |
| 35 | |
| 36 | // Fix "Edit" icon height. |
| 37 | .acf-hndle-cog { |
| 38 | height: 44px; |
| 39 | line-height: 44px; |
| 40 | } |
| 41 | } |
| 42 | &:hover { |
| 43 | background: #f0f0f0; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | // Hide bottom border of last postbox. |
| 48 | &:last-child.closed > .postbox-header { |
| 49 | border-bottom: none; |
| 50 | } |
| 51 | &:last-child > .inside { |
| 52 | border-bottom: none; |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | // Prevent metaboxes being forced offscreen. |
| 57 | .block-editor-writing-flow__click-redirect { |
| 58 | min-height: 50px; |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | // Fix to display "High" metabox area when dragging metaboxes. |
| 63 | body.is-dragging-metaboxes #acf_after_title-sortables{ |
| 64 | outline: 3px dashed #646970; |
| 65 | display: flow-root; |
| 66 | min-height: 60px; |
| 67 | margin-bottom: 3px !important |
| 68 | } |
| 69 | |
| 70 | |
| 71 | |
| 72 |