scrollsequence
/
includes
/
carbonfields
/
htmlburger
/
carbon-fields
/
packages
/
blocks
/
fields
/
complex
/
style.scss
style.scss in Scrollsequence – Cinematic Scroll Image Animation Plugin 1.5.5, at includes/carbonfields/htmlburger/carbon-fields/packages/blocks/fields/complex/style.scss
| 1 | /* ========================================================================== |
| 2 | Complex |
| 3 | ========================================================================== */ |
| 4 | |
| 5 | .cf-complex__placeholder-label { |
| 6 | font-size: $wp-font-size; |
| 7 | line-height: $wp-line-height; |
| 8 | } |
| 9 | |
| 10 | .cf-complex__inserter-menu { |
| 11 | .block-editor & { |
| 12 | z-index: 10; |
| 13 | list-style: none outside none; |
| 14 | border: 1px solid $gb-light-gray-500; |
| 15 | box-shadow: 0 3px 30px rgba($gb-dark-gray-900, .1); |
| 16 | background-color: $color-white; |
| 17 | |
| 18 | &::before, |
| 19 | &::after { |
| 20 | position: absolute; |
| 21 | top: 50%; |
| 22 | right: 100%; |
| 23 | width: 0; |
| 24 | height: 0; |
| 25 | border-width: 8px 8px 8px 0; |
| 26 | border-style: solid; |
| 27 | margin-top: -8px; |
| 28 | content: ''; |
| 29 | } |
| 30 | |
| 31 | &::before { |
| 32 | border-color: transparent $gb-light-gray-500; |
| 33 | margin-right: 1px; |
| 34 | } |
| 35 | |
| 36 | &::after { |
| 37 | border-color: transparent $color-white; |
| 38 | } |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | .cf-complex__inserter-item { |
| 43 | .block-editor & { |
| 44 | color: $gb-dark-gray-600; |
| 45 | |
| 46 | &:hover { |
| 47 | color: $gb-dark-gray-900; |
| 48 | } |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | .cf-complex__inserter-button { |
| 53 | .edit-post-sidebar .cf-complex__tabs & { |
| 54 | border-color: $gb-dark-gray-150; |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | .cf-complex__tabs-item { |
| 59 | .block-editor & { |
| 60 | color: $gb-dark-gray-500; |
| 61 | } |
| 62 | |
| 63 | .block-editor &--current { |
| 64 | color: $gb-dark-gray-900; |
| 65 | } |
| 66 | |
| 67 | .edit-post-sidebar & { |
| 68 | border-color: $gb-dark-gray-150; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | .cf-complex__group-head { |
| 73 | .edit-post-sidebar & { |
| 74 | border-color: $gb-dark-gray-150; |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | .cf-complex__group-body { |
| 79 | .edit-post-sidebar & { |
| 80 | display: block; |
| 81 | border-color: $gb-dark-gray-150; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | .cf-complex__group-actions { |
| 86 | .edit-post-sidebar &--tabbed { |
| 87 | border-color: $gb-dark-gray-150; |
| 88 | } |
| 89 | } |
| 90 |