Changeset 2002126
- Timestamp:
- 12/27/2018 07:34:50 AM (7 years ago)
- Location:
- blocks-builder/trunk
- Files:
-
- 25 edited
-
blocks_builder_alert/blocks_builder_alert_block.js (modified) (4 diffs)
-
blocks_builder_alert/blocks_builder_alert_style.css (modified) (1 diff)
-
blocks_builder_button/blocks_builder_button_block.js (modified) (3 diffs)
-
blocks_builder_cover_image/blocks_builder_cover_image_block.js (modified) (3 diffs)
-
blocks_builder_dropcap/blocks_builder_dropcap_block.js (modified) (4 diffs)
-
blocks_builder_dropcap/blocks_builder_dropcap_editor.css (modified) (1 diff)
-
blocks_builder_dropcap/blocks_builder_dropcap_style.css (modified) (1 diff)
-
blocks_builder_heading/blocks_builder_heading_block.js (modified) (3 diffs)
-
blocks_builder_heading/blocks_builder_heading_editor.css (modified) (1 diff)
-
blocks_builder_heading/blocks_builder_heading_style.css (modified) (1 diff)
-
blocks_builder_map/blocks_builder_map_block.js (modified) (2 diffs)
-
blocks_builder_price/blocks_builder_price_block.js (modified) (22 diffs)
-
blocks_builder_profile/block.js (modified) (4 diffs)
-
blocks_builder_profile/editor.css (modified) (1 diff)
-
blocks_builder_separator/blocks_builder_separator_block.js (modified) (2 diffs)
-
blocks_builder_social/blocks_builder_social_block.js (modified) (3 diffs)
-
blocks_builder_social/blocks_builder_social_editor.css (modified) (1 diff)
-
blocks_builder_text/blocks_builder_text_block.js (modified) (3 diffs)
-
blocks_builder_text/blocks_builder_text_editor.css (modified) (1 diff)
-
blocks_builder_text/blocks_builder_text_style.css (modified) (1 diff)
-
blocks_builder_tweet/blocks_builder_tweet_block.js (modified) (4 diffs)
-
blocks_builder_tweet/blocks_builder_tweet_editor.css (modified) (1 diff)
-
class-blocks-builder.php (modified) (15 diffs)
-
includes/fonts/css/common_editor.css (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
blocks-builder/trunk/blocks_builder_alert/blocks_builder_alert_block.js
r1945846 r2002126 1 ( function( editor, components, i18n, element, lodash ) {1 ( function( blocks, editor, components, i18n, element, lodash ) { 2 2 var el = element.createElement; 3 3 var registerBlockType = wp.blocks.registerBlockType; … … 189 189 }, 190 190 el( RichText, { 191 key: 'editable', 191 192 tagName: 'h3', 192 193 placeholder: 'Add title...', 193 194 keepPlaceholderOnFocus: true, 194 195 value: attributes.alertHeadtext, 195 isSelected: true,196 196 style:{background:attributes.alertHeadbgColor, color:attributes.alertHeadtxtColor}, 197 197 onChange: function( alert_hed_text ) { … … 200 200 }), 201 201 el( RichText, { 202 key: 'editable', 202 203 tagName: 'p', 203 204 placeholder: 'Write alert...', 204 205 keepPlaceholderOnFocus: true, 205 206 value: attributes.alertContenttext, 206 isSelected: true,207 207 style:{background:attributes.alertContbgColor, color:attributes.alertConttxtColor}, 208 208 onChange: function( alert_cont_text ) { … … 253 253 254 254 } )( 255 window.wp.blocks, 255 256 window.wp.editor, 256 257 window.wp.components, -
blocks-builder/trunk/blocks_builder_alert/blocks_builder_alert_style.css
r1945846 r2002126 1 1 .blocks-builder-alert-in{border-radius:5px;overflow:hidden; display:inline-table; width:100%;} 2 .blocks-builder-alert-in h3{margin-bottom:0px; padding:7px 15px !important; text-transform:none;}3 .blocks-builder-alert-in p{margin-bottom:0px; padding:25px 15px !important;}2 .blocks-builder-alert-in h3{margin-bottom:0px; margin-top:0px; padding:7px 15px !important; text-transform:none;} 3 .blocks-builder-alert-in p{margin-bottom:0px; margin-top:0px; padding:25px 15px !important;} 4 4 .blocks-builder-alert-main{margin-bottom:10px;} 5 5 .blocks-builder-alert-main .info{border:1px solid #cce5ff;} -
blocks-builder/trunk/blocks_builder_button/blocks_builder_button_block.js
r1962521 r2002126 1 ( function( editor, components, i18n, element ) {1 ( function( blocks, editor, components, i18n, element ) { 2 2 var el = element.createElement; 3 3 var registerBlockType = wp.blocks.registerBlockType; … … 179 179 }, 180 180 el( RichText, { 181 key: 'editable', 181 182 tagName: 'a', 182 183 placeholder: 'Button Text', 183 184 keepPlaceholderOnFocus: true, 184 185 value: attributes.Button_txt, 185 isSelected: true,186 186 href: attributes.Button_action, 187 187 target: attributes.NW_window?'_blank':'', … … 230 230 231 231 } )( 232 window.wp.blocks, 232 233 window.wp.editor, 233 234 window.wp.components, -
blocks-builder/trunk/blocks_builder_cover_image/blocks_builder_cover_image_block.js
r1945846 r2002126 1 ( function( editor, components, i18n, element ) {1 ( function( blocks, editor, components, i18n, element ) { 2 2 var el = element.createElement; 3 3 var registerBlockType = wp.blocks.registerBlockType; … … 151 151 el( 'div', {className:'blocks-builder-img-cover-main-in',style:attributes.mediaID ? { backgroundImage: 'url('+attributes.mediaURL+')' } : {}}, 152 152 el( RichText, { 153 key: 'editable', 153 154 tagName: 'p', 154 155 placeholder: 'Enter text here', 155 156 keepPlaceholderOnFocus: true, 156 157 value: attributes.contenttxt, 157 isSelected: true,158 158 className: 'blocks-builder-covr-txt block-custom-1-txt-'+attributes.TxtFontSize, 159 159 style:{color:attributes.textcolor}, … … 204 204 205 205 } )( 206 window.wp.blocks, 206 207 window.wp.editor, 207 208 window.wp.components, -
blocks-builder/trunk/blocks_builder_dropcap/blocks_builder_dropcap_block.js
r1945846 r2002126 1 ( function( editor, components, i18n, element ) {1 ( function( blocks, editor, components, i18n, element ) { 2 2 var el = element.createElement; 3 3 var registerBlockType = wp.blocks.registerBlockType; … … 118 118 el('div',{className:attributes.EnableDropcap ?'blocks-builder-dropcap-main-in dropcap-first block-custom-1-txt-'+attributes.contentFontSize:'blocks-builder-dropcap-main-in block-custom-1-txt-'+attributes.contentFontSize,style: { textAlign: alignment, background:attributes.contentBGColor}}, 119 119 el( RichText, { 120 key: 'editable', 120 121 tagName: 'p', 121 122 placeholder: 'Enter Text Here', … … 123 124 value: attributes.contentText, 124 125 className:'block-custom-1-txt-'+attributes.contentFontSize, 125 isSelected: true,126 126 style:{color:attributes.contentColor}, 127 127 onChange: function( content_txt ) { … … 161 161 162 162 } )( 163 window.wp.blocks, 163 164 window.wp.editor, 164 165 window.wp.components, -
blocks-builder/trunk/blocks_builder_dropcap/blocks_builder_dropcap_editor.css
r1945846 r2002126 1 1 .blocks-builder-admin-setting-common p{margin-bottom:10px;} 2 2 .edit-post-visual-editor .blocks-builder-dropcap-main-in p{line-height:normal !important;} 3 .editor-styles-wrapper .blocks-builder-dropcap-main-in p{margin-bottom:10px; margin-top:10px; } -
blocks-builder/trunk/blocks_builder_dropcap/blocks_builder_dropcap_style.css
r1945846 r2002126 2 2 .blocks-builder-dropcap-main{margin-bottom:10px;} 3 3 .blocks-builder-dropcap-main-in{padding:10px;} 4 .blocks-builder-dropcap-main-in p{margin-bottom:10px; line-height:normal !important; }4 .blocks-builder-dropcap-main-in p{margin-bottom:10px; line-height:normal !important; margin-top:10px;} 5 5 .dropcap-first.block-custom-1-txt-14 p:first-letter{font-size:38px;} 6 6 .dropcap-first.block-custom-1-txt-15 p:first-letter{font-size:40px;} -
blocks-builder/trunk/blocks_builder_heading/blocks_builder_heading_block.js
r1945846 r2002126 1 ( function( editor, components, i18n, element, lodash) {1 ( function( blocks, editor, components, i18n, element, lodash) { 2 2 var el = element.createElement; 3 3 var registerBlockType = wp.blocks.registerBlockType; … … 101 101 }, 102 102 el( RichText, { 103 key: 'editable', 103 104 tagName: tagnm, 104 105 placeholder: 'Enter Text Here', 105 106 keepPlaceholderOnFocus: true, 106 107 value: attributes.contentText, 107 isSelected: true,108 108 style:{color:attributes.contentColor}, 109 109 onChange: function( content_txt ) { … … 144 144 145 145 } )( 146 window.wp.blocks, 146 147 window.wp.editor, 147 148 window.wp.components, -
blocks-builder/trunk/blocks_builder_heading/blocks_builder_heading_editor.css
r1945846 r2002126 1 1 .blocks-builder-admin-setting-common p{margin-bottom:10px;} 2 2 .components-toolbar{margin-top:0px !important;} 3 .editor-styles-wrapper .blocks-builder-text-main-in h1,.editor-styles-wrapper .blocks-builder-text-main-in h2,.editor-styles-wrapper .blocks-builder-text-main-in h3,.editor-styles-wrapper .blocks-builder-text-main-in h4,.editor-styles-wrapper .blocks-builder-text-main-in h5,.editor-styles-wrapper .blocks-builder-text-main-in h6{padding:0;} 4 5 .editor-styles-wrapper .blocks-builder-text-main-in h1,.editor-styles-wrapper .blocks-builder-text-main-in h2:before{content:none;} -
blocks-builder/trunk/blocks_builder_heading/blocks_builder_heading_style.css
r1945846 r2002126 1 1 .blocks-builder-text-main{margin-bottom:10px;} 2 2 .blocks-builder-text-main-in h1, .blocks-builder-text-main-in h2, .blocks-builder-text-main-in h3, .blocks-builder-text-main-in h4, .blocks-builder-text-main-in h5, .blocks-builder-text-main-in h6{text-transform:none;} 3 .blocks-builder-text-main-in h1, .blocks-builder-text-main-in h2:before{content:none;} -
blocks-builder/trunk/blocks_builder_map/blocks_builder_map_block.js
r1955537 r2002126 1 ( function( editor, components, i18n, element ) {1 ( function( blocks, editor, components, i18n, element ) { 2 2 var el = element.createElement; 3 3 var registerBlockType = wp.blocks.registerBlockType; … … 140 140 141 141 } )( 142 window.wp.blocks, 142 143 window.wp.editor, 143 144 window.wp.components, -
blocks-builder/trunk/blocks_builder_price/blocks_builder_price_block.js
r1957406 r2002126 1 ( function( editor, components, i18n, element ) {1 ( function( blocks, editor, components, i18n, element ) { 2 2 var el = element.createElement; 3 3 var registerBlockType = wp.blocks.registerBlockType; … … 611 611 el('div',{className: 'plan-txt'}, 612 612 el( RichText, { 613 key: 'editable', 613 614 tagName: 'p', 614 615 placeholder: 'Plan A', 615 616 value: attributes.Plan1Text, 616 isSelected: true,617 617 formattingControls:[], 618 618 keepPlaceholderOnFocus: true, … … 627 627 el('div',{className: 'plan-amt-txt'}, 628 628 el( RichText, { 629 key: 'editable', 629 630 tagName: 'p', 630 631 placeholder: '99', 631 632 value: attributes.Plan1Amount, 632 isSelected: true,633 633 formattingControls:[], 634 634 keepPlaceholderOnFocus: true, … … 640 640 el('div',{className: 'plan-feature-txt'}, 641 641 el( RichText, { 642 key: 'editable', 642 643 tagName: 'p', 643 644 placeholder: 'Text feature Here', 644 645 value: attributes.Plan1features, 645 isSelected: true,646 646 formattingControls:[], 647 647 style: { textAlign: alignment}, … … 654 654 el('div',{className: 'plan-btn'}, 655 655 el( RichText, { 656 key: 'editable', 656 657 tagName: 'p', 657 658 placeholder: 'Button Text', 658 659 value: attributes.Plan1button, 659 isSelected: true,660 660 formattingControls:[], 661 661 keepPlaceholderOnFocus: true, … … 671 671 el('div',{className: 'plan-txt'}, 672 672 el( RichText, { 673 key: 'editable', 673 674 tagName: 'p', 674 675 placeholder: 'Plan B', 675 676 value: attributes.Plan2Text, 676 isSelected: true,677 677 formattingControls:[], 678 678 keepPlaceholderOnFocus: true, … … 687 687 el('div',{className: 'plan-amt-txt'}, 688 688 el( RichText, { 689 key: 'editable', 689 690 tagName: 'p', 690 691 placeholder: '99', 691 692 value: attributes.Plan2Amount, 692 isSelected: true,693 693 formattingControls:[], 694 694 keepPlaceholderOnFocus: true, … … 700 700 el('div',{className: 'plan-feature-txt'}, 701 701 el( RichText, { 702 key: 'editable', 702 703 tagName: 'p', 703 704 placeholder: 'Text feature Here', 704 705 value: attributes.Plan2features, 705 isSelected: true,706 706 formattingControls:[], 707 707 style: { textAlign: alignment}, … … 714 714 el('div',{className: 'plan-btn'}, 715 715 el( RichText, { 716 key: 'editable', 716 717 tagName: 'p', 717 718 placeholder: 'Button Text', 718 719 value: attributes.Plan2button, 719 isSelected: true,720 720 formattingControls:[], 721 721 keepPlaceholderOnFocus: true, … … 731 731 el('div',{className: 'plan-txt'}, 732 732 el( RichText, { 733 key: 'editable', 733 734 tagName: 'p', 734 735 placeholder: 'Plan c', 735 736 value: attributes.Plan3Text, 736 isSelected: true,737 737 formattingControls:[], 738 738 keepPlaceholderOnFocus: true, … … 747 747 el('div',{className: 'plan-amt-txt'}, 748 748 el( RichText, { 749 key: 'editable', 749 750 tagName: 'p', 750 751 placeholder: '99', 751 752 value: attributes.Plan3Amount, 752 isSelected: true,753 753 keepPlaceholderOnFocus: true, 754 754 formattingControls:[], … … 760 760 el('div',{className: 'plan-feature-txt'}, 761 761 el( RichText, { 762 key: 'editable', 762 763 tagName: 'p', 763 764 placeholder: 'Text feature Here', 764 765 value: attributes.Plan3features, 765 isSelected: true,766 766 keepPlaceholderOnFocus: true, 767 767 formattingControls:[], … … 774 774 el('div',{className: 'plan-btn'}, 775 775 el( RichText, { 776 key: 'editable', 776 777 tagName: 'p', 777 778 placeholder: 'Button Text', 778 779 value: attributes.Plan3button, 779 isSelected: true,780 780 keepPlaceholderOnFocus: true, 781 781 formattingControls:[], … … 791 791 el('div',{className: 'plan-txt'}, 792 792 el( RichText, { 793 key: 'editable', 793 794 tagName: 'p', 794 795 placeholder: 'Plan c', 795 796 value: attributes.Plan4Text, 796 isSelected: true,797 797 formattingControls:[], 798 798 keepPlaceholderOnFocus: true, … … 807 807 el('div',{className: 'plan-amt-txt'}, 808 808 el( RichText, { 809 key: 'editable', 809 810 tagName: 'p', 810 811 placeholder: '99', 811 812 value: attributes.Plan4Amount, 812 isSelected: true,813 813 keepPlaceholderOnFocus: true, 814 814 formattingControls:[], … … 820 820 el('div',{className: 'plan-feature-txt'}, 821 821 el( RichText, { 822 key: 'editable', 822 823 tagName: 'p', 823 824 placeholder: 'Text feature Here', 824 825 value: attributes.Plan4features, 825 isSelected: true,826 826 keepPlaceholderOnFocus: true, 827 827 formattingControls:[], … … 834 834 el('div',{className: 'plan-btn'}, 835 835 el( RichText, { 836 key: 'editable', 836 837 tagName: 'p', 837 838 placeholder: 'Button Text', 838 839 value: attributes.Plan4button, 839 isSelected: true,840 840 keepPlaceholderOnFocus: true, 841 841 formattingControls:[], … … 851 851 el('div',{className: 'plan-txt'}, 852 852 el( RichText, { 853 key: 'editable', 853 854 tagName: 'p', 854 855 placeholder: 'Plan c', 855 856 value: attributes.Plan5Text, 856 isSelected: true,857 857 formattingControls:[], 858 858 keepPlaceholderOnFocus: true, … … 867 867 el('div',{className: 'plan-amt-txt'}, 868 868 el( RichText, { 869 key: 'editable', 869 870 tagName: 'p', 870 871 placeholder: '99', 871 872 value: attributes.Plan5Amount, 872 isSelected: true,873 873 keepPlaceholderOnFocus: true, 874 874 formattingControls:[], … … 880 880 el('div',{className: 'plan-feature-txt'}, 881 881 el( RichText, { 882 key: 'editable', 882 883 tagName: 'p', 883 884 placeholder: 'Text feature Here', 884 885 value: attributes.Plan5features, 885 isSelected: true,886 886 keepPlaceholderOnFocus: true, 887 887 formattingControls:[], … … 894 894 el('div',{className: 'plan-btn'}, 895 895 el( RichText, { 896 key: 'editable', 896 897 tagName: 'p', 897 898 placeholder: 'Button Text', 898 899 value: attributes.Plan5button, 899 isSelected: true,900 900 keepPlaceholderOnFocus: true, 901 901 formattingControls:[], … … 1136 1136 1137 1137 } )( 1138 window.wp.blocks, 1138 1139 window.wp.editor, 1139 1140 window.wp.components, -
blocks-builder/trunk/blocks_builder_profile/block.js
r1945846 r2002126 1 ( function( editor, components, i18n, element ) {1 ( function( blocks, editor, components, i18n, element ) { 2 2 var el = element.createElement; 3 3 var registerBlockType = wp.blocks.registerBlockType; … … 320 320 }, 321 321 el( RichText, { 322 key: 'editable', 322 323 tagName: 'h3', 323 324 placeholder: 'Enter Heading here', 324 325 keepPlaceholderOnFocus: true, 325 326 value: attributes.txthed, 326 isSelected: true,327 327 className: 'block-custom-1-txt-'+props.attributes.TxtHeadFontSize, 328 328 style:{color: props.attributes.TxtHeadColor}, … … 332 332 } ), 333 333 el( RichText, { 334 key: 'editable', 334 335 tagName: 'p', 335 336 placeholder: 'Enter text here', 336 337 keepPlaceholderOnFocus: true, 337 338 value: attributes.txtlb, 338 isSelected: true,339 339 className: 'block-custom-1-txt-'+props.attributes.TxtFontSize, 340 340 style:{color: props.attributes.TextColor}, … … 467 467 468 468 } )( 469 window.wp.blocks, 469 470 window.wp.editor, 470 471 window.wp.components, -
blocks-builder/trunk/blocks_builder_profile/editor.css
r1945846 r2002126 2 2 .wp-block-custome-block1 .organic-profile-image1 img{width:100%; } 3 3 .wp-block-custome-block1 .block-custom-1{width:60%;display:inline-block; vertical-align:top; padding:15px;} 4 .components-toolbar img{width:20px; height:20px;} 5 4 .editor-styles-wrapper .components-toolbar img{width:20px; height:20px;} 5 .editor-styles-wrapper .block-custom-1 h3{padding:0px;} 6 .editor-styles-wrapper .social-common a{color:#fff;} -
blocks-builder/trunk/blocks_builder_separator/blocks_builder_separator_block.js
r1945846 r2002126 1 ( function( editor, components, i18n, element ) {1 ( function( blocks, editor, components, i18n, element ) { 2 2 var el = element.createElement; 3 3 var registerBlockType = wp.blocks.registerBlockType; … … 139 139 140 140 } )( 141 window.wp.blocks, 141 142 window.wp.editor, 142 143 window.wp.components, -
blocks-builder/trunk/blocks_builder_social/blocks_builder_social_block.js
r1945846 r2002126 1 ( function( editor, components, i18n, element ) {1 ( function( blocks, editor, components, i18n, element ) { 2 2 var el = element.createElement; 3 3 var registerBlockType = wp.blocks.registerBlockType; … … 418 418 }, 419 419 el( RichText, { 420 key: 'editable', 420 421 tagName: 'h3', 421 422 placeholder: 'Enter Heading here', … … 610 611 611 612 } )( 613 window.wp.blocks, 612 614 window.wp.editor, 613 615 window.wp.components, -
blocks-builder/trunk/blocks_builder_social/blocks_builder_social_editor.css
r1945846 r2002126 1 1 .facebook-round-shap{border-radius:50%;} 2 . blocks-builder-social-content-ul li{display:inline-block; list-style-type:none; text-align:center; margin:7px; width:35px; height:35px; line-height:35px;}2 .editor-styles-wrapper .blocks-builder-social-content-ul li{display:inline-block; list-style-type:none; text-align:center; margin:7px; width:35px; height:35px; line-height:35px;} 3 3 .blocks-builder-social-content-ul li a{padding:5px 11px; text-decoration:none;} 4 4 .blocks-builder-admin-setting-common p{margin-bottom:10px;} 5 .editor-styles-wrapper .blocks-builder-social-main-hed h3{padding:0px;} -
blocks-builder/trunk/blocks_builder_text/blocks_builder_text_block.js
r1945846 r2002126 1 ( function( editor, components, i18n, element ) {1 ( function( blocks, editor, components, i18n, element ) { 2 2 var el = element.createElement; 3 3 var registerBlockType = wp.blocks.registerBlockType; … … 111 111 }, 112 112 el( RichText, { 113 key: 'editable', 113 114 tagName: 'p', 114 115 placeholder: 'Enter Text Here', 115 116 keepPlaceholderOnFocus: true, 116 117 value: attributes.contentText, 117 isSelected: true,118 118 className:'block-custom-1-txt-'+attributes.contentFontSize, 119 119 style:{color:attributes.contentColor}, … … 156 156 157 157 } )( 158 window.wp.blocks, 158 159 window.wp.editor, 159 160 window.wp.components, -
blocks-builder/trunk/blocks_builder_text/blocks_builder_text_editor.css
r1945846 r2002126 1 1 .blocks-builder-admin-setting-common p{margin-bottom:10px;} 2 .editor-styles-wrapper .blocks-builder-text-main-in p{margin-bottom:0px;} -
blocks-builder/trunk/blocks_builder_text/blocks_builder_text_style.css
r1945846 r2002126 1 1 .blocks-builder-text-main{margin-bottom:10px;} 2 2 .blocks-builder-text-main-in{padding:10px;} 3 .blocks-builder-text-main-in p{margin-bottom:0px; }3 .blocks-builder-text-main-in p{margin-bottom:0px; margin-top:0px;} -
blocks-builder/trunk/blocks_builder_tweet/blocks_builder_tweet_block.js
r1962793 r2002126 1 ( function( editor, components, i18n, element ) {1 ( function( blocks, editor, components, i18n, element ) { 2 2 var el = element.createElement; 3 3 var registerBlockType = wp.blocks.registerBlockType; … … 171 171 }, 172 172 el( RichText, { 173 key: 'editable', 173 174 tagName: 'p', 174 175 placeholder: 'Enter Text Here', 175 176 keepPlaceholderOnFocus: true, 176 177 value: attributes.tweet_txt, 177 isSelected: true,178 178 formattingControls:[], 179 179 className:'blok-tweet-txt', … … 188 188 }, 189 189 el( RichText, { 190 key: 'editable', 190 191 tagName: 'a', 191 192 placeholder: 'Click To Tweet', 192 193 keepPlaceholderOnFocus: false, 193 194 value: attributes.tweet_button_txt, 194 isSelected: true,195 195 className:attributes.All_rounded?'all-round':'', 196 196 style: {color: attributes.TweetBtnTxtColor, background: attributes.TweetBtnBGColor, border:'1px solid '+attributes.TweetBtnBGColor}, … … 250 250 251 251 } )( 252 window.wp.blocks, 252 253 window.wp.editor, 253 254 window.wp.components, -
blocks-builder/trunk/blocks_builder_tweet/blocks_builder_tweet_editor.css
r1962793 r2002126 1 1 .blocks-builder-admin-setting-common p{margin-bottom:10px;} 2 2 .blok-tweet-btn{margin-top:15px;} 3 .editor-styles-wrapper .blok-tweet-txt{padding-left:40px;} -
blocks-builder/trunk/class-blocks-builder.php
r1962793 r2002126 2 2 /** 3 3 * Plugin Name: Blocks Builder - ultimate blocks for Gutenberg 4 * Version: 1.0. 14 * Version: 1.0.4 5 5 * Description: This Plugin provides additional blocks for customizing your Blog and Pages. 6 6 * Author: Templatic … … 16 16 * Main Blocks Builder Class 17 17 * 18 * @since 1.0. 118 * @since 1.0.4 19 19 */ 20 20 class Blocks_Builder { … … 54 54 private function __construct() { 55 55 $this->_slug = 'blocks-builder'; 56 $this->_version = '1.0. 1';56 $this->_version = '1.0.4'; 57 57 $this->_dir = untrailingslashit( plugin_dir_path( '/', __FILE__ ) ); 58 58 $this->_url = untrailingslashit( plugins_url( '/', __FILE__ ) ); … … 87 87 'my-custom-block1', // Handle. 88 88 plugins_url( 'blocks_builder_profile/block.js', __FILE__ ), // Block.js: We register the block here. 89 array( 'wp-blocks', 'wp-element', 'wp-i18n' ), // Dependencies, defined above.89 array( 'wp-blocks', 'wp-element', 'wp-i18n', 'wp-components', 'wp-editor' ), // Dependencies, defined above. 90 90 $this->_version 91 91 ); … … 134 134 'blocks-builder-social-block', // Handle. 135 135 plugins_url( 'blocks_builder_social/blocks_builder_social_block.js', __FILE__ ), // Block.js: We register the block here. 136 array( 'wp-blocks', 'wp-element', 'wp-i18n' ), // Dependencies, defined above.136 array( 'wp-blocks', 'wp-element', 'wp-i18n', 'wp-components', 'wp-editor' ), // Dependencies, defined above. 137 137 $this->_version 138 138 ); … … 163 163 'blocks-builder-text-block', // Handle. 164 164 plugins_url( 'blocks_builder_text/blocks_builder_text_block.js', __FILE__ ), // Block.js: We register the block here. 165 array( 'wp-blocks', 'wp-element', 'wp-i18n' ), // Dependencies, defined above.165 array( 'wp-blocks', 'wp-element', 'wp-i18n' , 'wp-components', 'wp-editor'), // Dependencies, defined above. 166 166 $this->_version 167 167 ); … … 192 192 'blocks-builder-cover-image-block', // Handle. 193 193 plugins_url( 'blocks_builder_cover_image/blocks_builder_cover_image_block.js', __FILE__ ), // Block.js: We register the block here. 194 array( 'wp-blocks', 'wp-element', 'wp-i18n' ), // Dependencies, defined above.194 array( 'wp-blocks', 'wp-element', 'wp-i18n', 'wp-components', 'wp-editor' ), // Dependencies, defined above. 195 195 $this->_version 196 196 ); … … 221 221 'blocks-builder-separator-block', // Handle. 222 222 plugins_url( 'blocks_builder_separator/blocks_builder_separator_block.js', __FILE__ ), // Block.js: We register the block here. 223 array( 'wp-blocks', 'wp-element', 'wp-i18n' ), // Dependencies, defined above.223 array( 'wp-blocks', 'wp-element', 'wp-i18n', 'wp-components', 'wp-editor' ), // Dependencies, defined above. 224 224 $this->_version 225 225 ); … … 250 250 'blocks-builder-dropcap-block', // Handle. 251 251 plugins_url( 'blocks_builder_dropcap/blocks_builder_dropcap_block.js', __FILE__ ), // Block.js: We register the block here. 252 array( 'wp-blocks', 'wp-element', 'wp-i18n' ), // Dependencies, defined above.252 array( 'wp-blocks', 'wp-element', 'wp-i18n', 'wp-components', 'wp-editor' ), // Dependencies, defined above. 253 253 $this->_version 254 254 ); … … 279 279 'blocks-builder-heading-block', // Handle. 280 280 plugins_url( 'blocks_builder_heading/blocks_builder_heading_block.js', __FILE__ ), // Block.js: We register the block here. 281 array( 'wp-blocks', 'wp-element', 'wp-i18n' ), // Dependencies, defined above.281 array( 'wp-blocks', 'wp-element', 'wp-i18n', 'wp-components', 'wp-editor' ), // Dependencies, defined above. 282 282 $this->_version 283 283 ); … … 308 308 'blocks-builder-alert-block', // Handle. 309 309 plugins_url( 'blocks_builder_alert/blocks_builder_alert_block.js', __FILE__ ), // Block.js: We register the block here. 310 array( 'wp-blocks', 'wp-element', 'wp-i18n' ), // Dependencies, defined above.310 array( 'wp-blocks', 'wp-element', 'wp-i18n', 'wp-components', 'wp-editor' ), // Dependencies, defined above. 311 311 $this->_version 312 312 ); … … 337 337 'blocks-builder-map-block', // Handle. 338 338 plugins_url( 'blocks_builder_map/blocks_builder_map_block.js', __FILE__ ), // Block.js: We register the block here. 339 array( 'wp-blocks', 'wp-element', 'wp-i18n' ), // Dependencies, defined above.339 array( 'wp-blocks', 'wp-element', 'wp-i18n', 'wp-components', 'wp-editor' ), // Dependencies, defined above. 340 340 $this->_version 341 341 ); … … 366 366 'blocks-builder-price-block', // Handle. 367 367 plugins_url( 'blocks_builder_price/blocks_builder_price_block.js', __FILE__ ), // Block.js: We register the block here. 368 array( 'wp-blocks', 'wp-element', 'wp-i18n' ), // Dependencies, defined above.368 array( 'wp-blocks', 'wp-element', 'wp-i18n' , 'wp-components', 'wp-editor'), // Dependencies, defined above. 369 369 $this->_version 370 370 ); … … 395 395 'blocks-builder-button-block', // Handle. 396 396 plugins_url( 'blocks_builder_button/blocks_builder_button_block.js', __FILE__ ), // Block.js: We register the block here. 397 array( 'wp-blocks', 'wp-element', 'wp-i18n' ), // Dependencies, defined above.397 array( 'wp-blocks', 'wp-element', 'wp-i18n', 'wp-components', 'wp-editor' ), // Dependencies, defined above. 398 398 $this->_version 399 399 ); … … 424 424 'blocks-builder-tweet-block', // Handle. 425 425 plugins_url( 'blocks_builder_tweet/blocks_builder_tweet_block.js', __FILE__ ), // Block.js: We register the block here. 426 array( 'wp-blocks', 'wp-element', 'wp-i18n' ), // Dependencies, defined above.426 array( 'wp-blocks', 'wp-element', 'wp-i18n', 'wp-components', 'wp-editor' ), // Dependencies, defined above. 427 427 $this->_version 428 428 ); -
blocks-builder/trunk/includes/fonts/css/common_editor.css
r1945846 r2002126 1 .edit-post-visual-editor . block-custom-1-txt-1{font-size:1px; line-height:6px !important}2 .edit-post-visual-editor . block-custom-1-txt-2{font-size:2px; line-height:7px !important}3 .edit-post-visual-editor . block-custom-1-txt-3{font-size:3px; line-height:8px !important}4 .edit-post-visual-editor . block-custom-1-txt-4{font-size:4px; line-height:9px !important}5 .edit-post-visual-editor . block-custom-1-txt-5{font-size:5px; line-height:10px !important}6 .edit-post-visual-editor . block-custom-1-txt-6{font-size:6px; line-height:11px !important}7 .edit-post-visual-editor . block-custom-1-txt-7{font-size:7px; line-height:12px !important}8 .edit-post-visual-editor . block-custom-1-txt-8{font-size:8px; line-height:13px !important}9 .edit-post-visual-editor . block-custom-1-txt-9{font-size:9px; line-height:14px !important}10 .edit-post-visual-editor . block-custom-1-txt-10{font-size:10px; line-height:15px !important}11 .edit-post-visual-editor . block-custom-1-txt-11{font-size:11px; line-height:16px !important}12 .edit-post-visual-editor . block-custom-1-txt-12{font-size:12px; line-height:17px !important}13 .edit-post-visual-editor . block-custom-1-txt-13{font-size:13px; line-height:18px !important}14 .edit-post-visual-editor . block-custom-1-txt-14{font-size:14px; line-height:19px !important}15 .edit-post-visual-editor . block-custom-1-txt-15{font-size:15px; line-height:20px !important}16 .edit-post-visual-editor . block-custom-1-txt-16{font-size:16px; line-height:21px !important}17 .edit-post-visual-editor . block-custom-1-txt-17{font-size:17px; line-height:22px !important}18 .edit-post-visual-editor . block-custom-1-txt-18{font-size:18px; line-height:23px !important}19 .edit-post-visual-editor . block-custom-1-txt-19{font-size:19px; line-height:24px !important}20 .edit-post-visual-editor . block-custom-1-txt-20{font-size:20px; line-height:25px !important}21 .edit-post-visual-editor . block-custom-1-txt-21{font-size:21px; line-height:26px !important}22 .edit-post-visual-editor . block-custom-1-txt-22{font-size:22px; line-height:27px !important}23 .edit-post-visual-editor . block-custom-1-txt-23{font-size:23px; line-height:28px !important}24 .edit-post-visual-editor . block-custom-1-txt-24{font-size:24px; line-height:29px !important}25 .edit-post-visual-editor . block-custom-1-txt-25{font-size:25px; line-height:30px !important}26 .edit-post-visual-editor . block-custom-1-txt-26{font-size:26px; line-height:31px !important}27 .edit-post-visual-editor . block-custom-1-txt-27{font-size:27px; line-height:32px !important}28 .edit-post-visual-editor . block-custom-1-txt-28{font-size:28px; line-height:33px !important}29 .edit-post-visual-editor . block-custom-1-txt-29{font-size:29px; line-height:34px !important}30 .edit-post-visual-editor . block-custom-1-txt-30{font-size:30px; line-height:35px !important}31 .edit-post-visual-editor . block-custom-1-txt-31{font-size:31px; line-height:36px !important}32 .edit-post-visual-editor . block-custom-1-txt-32{font-size:32px; line-height:37px !important}33 .edit-post-visual-editor . block-custom-1-txt-33{font-size:33px; line-height:38px !important}34 .edit-post-visual-editor . block-custom-1-txt-34{font-size:34px; line-height:39px !important}35 .edit-post-visual-editor . block-custom-1-txt-35{font-size:35px; line-height:40px !important}36 .edit-post-visual-editor . block-custom-1-txt-36{font-size:36px; line-height:41px !important}37 .edit-post-visual-editor . block-custom-1-txt-37{font-size:37px; line-height:42px !important}38 .edit-post-visual-editor . block-custom-1-txt-38{font-size:38px; line-height:43px !important}39 .edit-post-visual-editor . block-custom-1-txt-39{font-size:39px; line-height:44px !important}40 .edit-post-visual-editor . block-custom-1-txt-40{font-size:40px; line-height:45px !important}41 .edit-post-visual-editor . block-custom-1-txt-41{font-size:41px; line-height:46px !important}42 .edit-post-visual-editor . block-custom-1-txt-42{font-size:42px; line-height:47px !important}43 .edit-post-visual-editor . block-custom-1-txt-43{font-size:43px; line-height:48px !important}44 .edit-post-visual-editor . block-custom-1-txt-44{font-size:44px; line-height:49px !important}45 .edit-post-visual-editor . block-custom-1-txt-45{font-size:45px; line-height:50px !important}46 .edit-post-visual-editor . block-custom-1-txt-46{font-size:46px; line-height:51px !important}47 .edit-post-visual-editor . block-custom-1-txt-47{font-size:47px; line-height:52px !important}48 .edit-post-visual-editor . block-custom-1-txt-48{font-size:48px; line-height:53px !important}49 .edit-post-visual-editor . block-custom-1-txt-49{font-size:49px; line-height:54px !important}50 .edit-post-visual-editor . block-custom-1-txt-50{font-size:50px; line-height:55px !important}51 .edit-post-visual-editor . block-custom-1-txt-51{font-size:51px; line-height:56px !important}52 .edit-post-visual-editor . block-custom-1-txt-52{font-size:52px; line-height:57px !important}53 .edit-post-visual-editor . block-custom-1-txt-53{font-size:53px; line-height:58px !important}54 .edit-post-visual-editor . block-custom-1-txt-54{font-size:54px; line-height:59px !important}55 .edit-post-visual-editor . block-custom-1-txt-55{font-size:55px; line-height:60px !important}56 .edit-post-visual-editor . block-custom-1-txt-56{font-size:56px; line-height:61px !important}57 .edit-post-visual-editor . block-custom-1-txt-57{font-size:57px; line-height:62px !important}58 .edit-post-visual-editor . block-custom-1-txt-58{font-size:58px; line-height:63px !important}59 .edit-post-visual-editor . block-custom-1-txt-59{font-size:59px; line-height:64px !important}60 .edit-post-visual-editor . block-custom-1-txt-60{font-size:60px; line-height:65px !important}61 .edit-post-visual-editor . block-custom-1-txt-61{font-size:61px; line-height:66px !important}62 .edit-post-visual-editor . block-custom-1-txt-62{font-size:62px; line-height:67px !important}63 .edit-post-visual-editor . block-custom-1-txt-63{font-size:63px; line-height:68px !important}64 .edit-post-visual-editor . block-custom-1-txt-64{font-size:64px; line-height:69px !important}65 .edit-post-visual-editor . block-custom-1-txt-65{font-size:65px; line-height:70px !important}66 .edit-post-visual-editor . block-custom-1-txt-66{font-size:66px; line-height:71px !important}67 .edit-post-visual-editor . block-custom-1-txt-67{font-size:67px; line-height:72px !important}68 .edit-post-visual-editor . block-custom-1-txt-68{font-size:68px; line-height:73px !important}69 .edit-post-visual-editor . block-custom-1-txt-69{font-size:69px; line-height:74px !important}70 .edit-post-visual-editor . block-custom-1-txt-70{font-size:70px; line-height:75px !important}71 .edit-post-visual-editor . block-custom-1-txt-71{font-size:71px; line-height:76px !important}72 .edit-post-visual-editor . block-custom-1-txt-72{font-size:72px; line-height:77px !important}73 .edit-post-visual-editor . block-custom-1-txt-73{font-size:73px; line-height:78px !important}74 .edit-post-visual-editor . block-custom-1-txt-74{font-size:74px; line-height:79px !important}75 .edit-post-visual-editor . block-custom-1-txt-75{font-size:75px; line-height:80px !important}76 .edit-post-visual-editor . block-custom-1-txt-76{font-size:76px; line-height:81px !important}77 .edit-post-visual-editor . block-custom-1-txt-77{font-size:77px; line-height:82px !important}78 .edit-post-visual-editor . block-custom-1-txt-78{font-size:78px; line-height:83px !important}79 .edit-post-visual-editor . block-custom-1-txt-79{font-size:79px; line-height:84px !important}80 .edit-post-visual-editor . block-custom-1-txt-80{font-size:80px; line-height:85px !important}81 .edit-post-visual-editor . block-custom-1-txt-81{font-size:81px; line-height:86px !important}82 .edit-post-visual-editor . block-custom-1-txt-82{font-size:82px; line-height:87px !important}83 .edit-post-visual-editor . block-custom-1-txt-83{font-size:83px; line-height:88px !important}84 .edit-post-visual-editor . block-custom-1-txt-84{font-size:84px; line-height:89px !important}85 .edit-post-visual-editor . block-custom-1-txt-85{font-size:85px; line-height:90px !important}86 .edit-post-visual-editor . block-custom-1-txt-86{font-size:86px; line-height:91px !important}87 .edit-post-visual-editor . block-custom-1-txt-87{font-size:87px; line-height:92px !important}88 .edit-post-visual-editor . block-custom-1-txt-88{font-size:88px; line-height:93px !important}89 .edit-post-visual-editor . block-custom-1-txt-89{font-size:89px; line-height:94px !important}90 .edit-post-visual-editor . block-custom-1-txt-90{font-size:90px; line-height:95px !important}91 .edit-post-visual-editor . block-custom-1-txt-91{font-size:91px; line-height:96px !important}92 .edit-post-visual-editor . block-custom-1-txt-92{font-size:92px; line-height:97px !important}93 .edit-post-visual-editor . block-custom-1-txt-93{font-size:93px; line-height:98px !important}94 .edit-post-visual-editor . block-custom-1-txt-94{font-size:94px; line-height:99px !important}95 .edit-post-visual-editor . block-custom-1-txt-95{font-size:95px; line-height:100px !important}96 .edit-post-visual-editor . block-custom-1-txt-96{font-size:96px; line-height:101px !important}97 .edit-post-visual-editor . block-custom-1-txt-97{font-size:97px; line-height:102px !important}98 .edit-post-visual-editor . block-custom-1-txt-98{font-size:98px; line-height:103px !important}99 .edit-post-visual-editor . block-custom-1-txt-99{font-size:99px; line-height:104px !important}100 .edit-post-visual-editor . block-custom-1-txt-100{font-size:100px; line-height:105px !important}1 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-1{font-size:1px; line-height:6px !important} 2 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-2{font-size:2px; line-height:7px !important} 3 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-3{font-size:3px; line-height:8px !important} 4 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-4{font-size:4px; line-height:9px !important} 5 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-5{font-size:5px; line-height:10px !important} 6 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-6{font-size:6px; line-height:11px !important} 7 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-7{font-size:7px; line-height:12px !important} 8 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-8{font-size:8px; line-height:13px !important} 9 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-9{font-size:9px; line-height:14px !important} 10 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-10{font-size:10px; line-height:15px !important} 11 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-11{font-size:11px; line-height:16px !important} 12 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-12{font-size:12px; line-height:17px !important} 13 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-13{font-size:13px; line-height:18px !important} 14 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-14{font-size:14px; line-height:19px !important} 15 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-15{font-size:15px; line-height:20px !important} 16 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-16{font-size:16px; line-height:21px !important} 17 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-17{font-size:17px; line-height:22px !important} 18 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-18{font-size:18px; line-height:23px !important} 19 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-19{font-size:19px; line-height:24px !important} 20 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-20{font-size:20px; line-height:25px !important} 21 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-21{font-size:21px; line-height:26px !important} 22 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-22{font-size:22px; line-height:27px !important} 23 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-23{font-size:23px; line-height:28px !important} 24 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-24{font-size:24px; line-height:29px !important} 25 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-25{font-size:25px; line-height:30px !important} 26 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-26{font-size:26px; line-height:31px !important} 27 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-27{font-size:27px; line-height:32px !important} 28 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-28{font-size:28px; line-height:33px !important} 29 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-29{font-size:29px; line-height:34px !important} 30 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-30{font-size:30px; line-height:35px !important} 31 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-31{font-size:31px; line-height:36px !important} 32 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-32{font-size:32px; line-height:37px !important} 33 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-33{font-size:33px; line-height:38px !important} 34 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-34{font-size:34px; line-height:39px !important} 35 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-35{font-size:35px; line-height:40px !important} 36 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-36{font-size:36px; line-height:41px !important} 37 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-37{font-size:37px; line-height:42px !important} 38 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-38{font-size:38px; line-height:43px !important} 39 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-39{font-size:39px; line-height:44px !important} 40 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-40{font-size:40px; line-height:45px !important} 41 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-41{font-size:41px; line-height:46px !important} 42 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-42{font-size:42px; line-height:47px !important} 43 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-43{font-size:43px; line-height:48px !important} 44 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-44{font-size:44px; line-height:49px !important} 45 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-45{font-size:45px; line-height:50px !important} 46 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-46{font-size:46px; line-height:51px !important} 47 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-47{font-size:47px; line-height:52px !important} 48 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-48{font-size:48px; line-height:53px !important} 49 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-49{font-size:49px; line-height:54px !important} 50 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-50{font-size:50px; line-height:55px !important} 51 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-51{font-size:51px; line-height:56px !important} 52 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-52{font-size:52px; line-height:57px !important} 53 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-53{font-size:53px; line-height:58px !important} 54 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-54{font-size:54px; line-height:59px !important} 55 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-55{font-size:55px; line-height:60px !important} 56 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-56{font-size:56px; line-height:61px !important} 57 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-57{font-size:57px; line-height:62px !important} 58 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-58{font-size:58px; line-height:63px !important} 59 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-59{font-size:59px; line-height:64px !important} 60 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-60{font-size:60px; line-height:65px !important} 61 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-61{font-size:61px; line-height:66px !important} 62 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-62{font-size:62px; line-height:67px !important} 63 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-63{font-size:63px; line-height:68px !important} 64 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-64{font-size:64px; line-height:69px !important} 65 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-65{font-size:65px; line-height:70px !important} 66 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-66{font-size:66px; line-height:71px !important} 67 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-67{font-size:67px; line-height:72px !important} 68 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-68{font-size:68px; line-height:73px !important} 69 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-69{font-size:69px; line-height:74px !important} 70 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-70{font-size:70px; line-height:75px !important} 71 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-71{font-size:71px; line-height:76px !important} 72 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-72{font-size:72px; line-height:77px !important} 73 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-73{font-size:73px; line-height:78px !important} 74 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-74{font-size:74px; line-height:79px !important} 75 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-75{font-size:75px; line-height:80px !important} 76 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-76{font-size:76px; line-height:81px !important} 77 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-77{font-size:77px; line-height:82px !important} 78 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-78{font-size:78px; line-height:83px !important} 79 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-79{font-size:79px; line-height:84px !important} 80 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-80{font-size:80px; line-height:85px !important} 81 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-81{font-size:81px; line-height:86px !important} 82 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-82{font-size:82px; line-height:87px !important} 83 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-83{font-size:83px; line-height:88px !important} 84 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-84{font-size:84px; line-height:89px !important} 85 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-85{font-size:85px; line-height:90px !important} 86 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-86{font-size:86px; line-height:91px !important} 87 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-87{font-size:87px; line-height:92px !important} 88 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-88{font-size:88px; line-height:93px !important} 89 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-89{font-size:89px; line-height:94px !important} 90 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-90{font-size:90px; line-height:95px !important} 91 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-91{font-size:91px; line-height:96px !important} 92 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-92{font-size:92px; line-height:97px !important} 93 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-93{font-size:93px; line-height:98px !important} 94 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-94{font-size:94px; line-height:99px !important} 95 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-95{font-size:95px; line-height:100px !important} 96 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-96{font-size:96px; line-height:101px !important} 97 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-97{font-size:97px; line-height:102px !important} 98 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-98{font-size:98px; line-height:103px !important} 99 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-99{font-size:99px; line-height:104px !important} 100 .edit-post-visual-editor .editor-block-list__block .block-custom-1-txt-100{font-size:100px; line-height:105px !important} -
blocks-builder/trunk/readme.txt
r1963972 r2002126 3 3 Tags: Gutenberg, gutenberg blocks, Editor, blocks, page builder, gutenberg editor, block, addon, Customizable block 4 4 Requires at least: 4.9.8 5 Tested up to: 5.0 5 Tested up to: 5.0.2 6 6 License: GPLv2 or later 7 7 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 106 106 == Changelog == 107 107 108 = 1.0.4 = 109 * Made compatible with WordPress version 5 110 108 111 = 1.0.3 = 109 112 * Added Button Block
Note: See TracChangeset
for help on using the changeset viewer.