build
1 week ago
src
1 week ago
BlockAPI.php
1 year ago
FilterBlocks.php
4 months ago
Integration.php
1 week ago
RegisterBlocks.php
1 year ago
editor.css
2 years ago
editor.js
2 years ago
editor.css
117 lines
| 1 | .block-editor-block-types-list__item-icon { |
| 2 | padding: 0; |
| 3 | } |
| 4 | |
| 5 | .block-editor-block-card .block-editor-block-icon, |
| 6 | .block-editor-block-icon { |
| 7 | width: 40px; |
| 8 | height: 50px; |
| 9 | } |
| 10 | |
| 11 | .block-editor-block-card { |
| 12 | align-items: center; |
| 13 | } |
| 14 | |
| 15 | .block-editor-block-icon svg[class*="__block-icon"] { |
| 16 | transform: scale(0.65); |
| 17 | max-width: 40px; |
| 18 | max-height: 50px; |
| 19 | } |
| 20 | |
| 21 | .block-editor-block-toolbar__block-controls |
| 22 | .block-editor-block-switcher |
| 23 | .components-dropdown-menu__toggle |
| 24 | .block-editor-block-icon, |
| 25 | .block-editor-block-toolbar__block-controls |
| 26 | .block-editor-block-switcher__no-switcher-icon |
| 27 | .block-editor-block-icon { |
| 28 | width: 40px !important; |
| 29 | } |
| 30 | |
| 31 | .gutenberg-styler-control-field { |
| 32 | padding: 0 0px 16px; |
| 33 | } |
| 34 | |
| 35 | .gutenberg-styler-control-field .gutenberg-styler-control-input-wrapper { |
| 36 | display: flex; |
| 37 | justify-content: space-between; |
| 38 | align-items: center; |
| 39 | } |
| 40 | |
| 41 | .gutenberg-styler-control-input-wrapper label.gutenberg-control-title { |
| 42 | font-size: 11px; |
| 43 | font-weight: 500; |
| 44 | line-height: 1.4; |
| 45 | } |
| 46 | |
| 47 | .filter-repeater-wrapper { |
| 48 | margin: 0 0 20px 0; |
| 49 | } |
| 50 | |
| 51 | .filter-repeater-wrapper .filter-repeater.MuiAccordionSummary-root { |
| 52 | padding: 0 10px; |
| 53 | } |
| 54 | |
| 55 | .filter-repeater-wrapper |
| 56 | .filter-repeater.MuiAccordionSummary-root |
| 57 | .MuiAccordionSummary-content { |
| 58 | margin: 0; |
| 59 | justify-content: space-between; |
| 60 | } |
| 61 | |
| 62 | .filter-repeater-wrapper |
| 63 | .filter-repeater.MuiAccordionSummary-root |
| 64 | .MuiAccordionSummary-content |
| 65 | .remove-btn { |
| 66 | padding: 0; |
| 67 | box-shadow: none; |
| 68 | outline: none; |
| 69 | height: unset; |
| 70 | margin-right: 5px; |
| 71 | } |
| 72 | |
| 73 | .woocommerce-checkout .form-row textarea { |
| 74 | height: 4em; |
| 75 | line-height: 1.5; |
| 76 | display: block; |
| 77 | box-shadow: none; |
| 78 | } |
| 79 | |
| 80 | .woocommerce-checkout .form-row input.input-text, |
| 81 | .woocommerce-checkout .form-row textarea { |
| 82 | box-sizing: border-box; |
| 83 | width: 100%; |
| 84 | margin: 0; |
| 85 | outline: 0; |
| 86 | line-height: normal; |
| 87 | } |
| 88 | |
| 89 | .woocommerce-checkout .form-row { |
| 90 | padding: 3px; |
| 91 | margin: 0 0 6px; |
| 92 | } |
| 93 | |
| 94 | .woocommerce-checkout .form-row-first { |
| 95 | float: left; |
| 96 | } |
| 97 | |
| 98 | .woocommerce-checkout .form-row-first, |
| 99 | .woocommerce-checkout .form-row-last { |
| 100 | width: 47%; |
| 101 | overflow: visible; |
| 102 | } |
| 103 | |
| 104 | .woocommerce-checkout .form-row-last { |
| 105 | float: right; |
| 106 | } |
| 107 | |
| 108 | .woocommerce-checkout .form-row label { |
| 109 | line-height: 2; |
| 110 | display: block; |
| 111 | } |
| 112 | |
| 113 | .woocommerce-checkout .form-row-wide { |
| 114 | clear: both; |
| 115 | width: 100%; |
| 116 | } |
| 117 |