Plugin Directory

Changeset 2002126


Ignore:
Timestamp:
12/27/2018 07:34:50 AM (7 years ago)
Author:
rbhavesh
Message:

Fix - Made compatible with WordPress version 5

Location:
blocks-builder/trunk
Files:
25 edited

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 ) {
    22    var el = element.createElement;
    33    var registerBlockType = wp.blocks.registerBlockType;
     
    189189                            },
    190190                            el( RichText, {
     191                                key: 'editable',
    191192                                tagName: 'h3',
    192193                                placeholder: 'Add title...',
    193194                                keepPlaceholderOnFocus: true,
    194195                                value: attributes.alertHeadtext,
    195                                 isSelected: true,
    196196                                style:{background:attributes.alertHeadbgColor, color:attributes.alertHeadtxtColor},
    197197                                onChange: function( alert_hed_text ) {
     
    200200                            }),
    201201                            el( RichText, {
     202                                key: 'editable',
    202203                                tagName: 'p',
    203204                                placeholder: 'Write alert...',
    204205                                keepPlaceholderOnFocus: true,
    205206                                value: attributes.alertContenttext,
    206                                 isSelected: true,
    207207                                style:{background:attributes.alertContbgColor, color:attributes.alertConttxtColor},
    208208                                onChange: function( alert_cont_text ) {
     
    253253   
    254254} )(
     255    window.wp.blocks,
    255256    window.wp.editor,
    256257    window.wp.components,
  • blocks-builder/trunk/blocks_builder_alert/blocks_builder_alert_style.css

    r1945846 r2002126  
    11.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;}
    44.blocks-builder-alert-main{margin-bottom:10px;}
    55.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 ) {
    22    var el = element.createElement;
    33    var registerBlockType = wp.blocks.registerBlockType;
     
    179179                            },
    180180                            el( RichText, {
     181                                key: 'editable',
    181182                                tagName: 'a',
    182183                                placeholder: 'Button Text',
    183184                                keepPlaceholderOnFocus: true,
    184185                                value: attributes.Button_txt,
    185                                 isSelected: true,
    186186                                href: attributes.Button_action,
    187187                                target: attributes.NW_window?'_blank':'',
     
    230230   
    231231} )(
     232    window.wp.blocks,
    232233    window.wp.editor,
    233234    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 ) {
    22    var el = element.createElement;
    33    var registerBlockType = wp.blocks.registerBlockType;
     
    151151                            el( 'div', {className:'blocks-builder-img-cover-main-in',style:attributes.mediaID ? { backgroundImage: 'url('+attributes.mediaURL+')' } : {}},
    152152                                el( RichText, {
     153                                    key: 'editable',
    153154                                    tagName: 'p',
    154155                                    placeholder: 'Enter text here',
    155156                                    keepPlaceholderOnFocus: true,
    156157                                    value: attributes.contenttxt,
    157                                     isSelected: true,
    158158                                    className: 'blocks-builder-covr-txt block-custom-1-txt-'+attributes.TxtFontSize,
    159159                                    style:{color:attributes.textcolor},
     
    204204   
    205205} )(
     206    window.wp.blocks,
    206207    window.wp.editor,
    207208    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 ) {
    22    var el = element.createElement;
    33    var registerBlockType = wp.blocks.registerBlockType;
     
    118118                        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}},
    119119                            el( RichText, {
     120                                key: 'editable',
    120121                                tagName: 'p',
    121122                                placeholder: 'Enter Text Here',
     
    123124                                value: attributes.contentText,
    124125                                className:'block-custom-1-txt-'+attributes.contentFontSize,
    125                                 isSelected: true,
    126126                                style:{color:attributes.contentColor},
    127127                                onChange: function( content_txt ) {
     
    161161   
    162162} )(
     163    window.wp.blocks,
    163164    window.wp.editor,
    164165    window.wp.components,
  • blocks-builder/trunk/blocks_builder_dropcap/blocks_builder_dropcap_editor.css

    r1945846 r2002126  
    11.blocks-builder-admin-setting-common p{margin-bottom:10px;}
    22.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  
    22.blocks-builder-dropcap-main{margin-bottom:10px;}
    33.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;}
    55.dropcap-first.block-custom-1-txt-14 p:first-letter{font-size:38px;}
    66.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) {
    22    var el = element.createElement;
    33    var registerBlockType = wp.blocks.registerBlockType;
     
    101101                            },
    102102                            el( RichText, {
     103                                key: 'editable',
    103104                                tagName: tagnm,
    104105                                placeholder: 'Enter Text Here',
    105106                                keepPlaceholderOnFocus: true,
    106107                                value: attributes.contentText,
    107                                 isSelected: true,
    108108                                style:{color:attributes.contentColor},
    109109                                onChange: function( content_txt ) {
     
    144144   
    145145} )(
     146    window.wp.blocks,
    146147    window.wp.editor,
    147148    window.wp.components,
  • blocks-builder/trunk/blocks_builder_heading/blocks_builder_heading_editor.css

    r1945846 r2002126  
    11.blocks-builder-admin-setting-common p{margin-bottom:10px;}
    22.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  
    11.blocks-builder-text-main{margin-bottom:10px;}
    22.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 ) {
    22    var el = element.createElement;
    33    var registerBlockType = wp.blocks.registerBlockType;
     
    140140   
    141141} )(
     142    window.wp.blocks,
    142143    window.wp.editor,
    143144    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 ) {
    22    var el = element.createElement;
    33    var registerBlockType = wp.blocks.registerBlockType;
     
    611611                        el('div',{className: 'plan-txt'},
    612612                            el( RichText, {
     613                                key: 'editable',
    613614                                tagName: 'p',
    614615                                placeholder: 'Plan A',
    615616                                value: attributes.Plan1Text,
    616                                 isSelected: true,
    617617                                formattingControls:[],
    618618                                keepPlaceholderOnFocus: true,
     
    627627                        el('div',{className: 'plan-amt-txt'},
    628628                            el( RichText, {
     629                                key: 'editable',
    629630                                tagName: 'p',
    630631                                placeholder: '99',
    631632                                value: attributes.Plan1Amount,
    632                                 isSelected: true,
    633633                                formattingControls:[],
    634634                                keepPlaceholderOnFocus: true,
     
    640640                        el('div',{className: 'plan-feature-txt'},
    641641                            el( RichText, {
     642                                key: 'editable',
    642643                                tagName: 'p',
    643644                                placeholder: 'Text feature Here',
    644645                                value: attributes.Plan1features,
    645                                 isSelected: true,
    646646                                formattingControls:[],
    647647                                style: { textAlign: alignment},
     
    654654                        el('div',{className: 'plan-btn'},
    655655                            el( RichText, {
     656                                key: 'editable',
    656657                                tagName: 'p',
    657658                                placeholder: 'Button Text',
    658659                                value: attributes.Plan1button,
    659                                 isSelected: true,
    660660                                formattingControls:[],
    661661                                keepPlaceholderOnFocus: true,
     
    671671                        el('div',{className: 'plan-txt'},
    672672                            el( RichText, {
     673                                key: 'editable',
    673674                                tagName: 'p',
    674675                                placeholder: 'Plan B',
    675676                                value: attributes.Plan2Text,
    676                                 isSelected: true,
    677677                                formattingControls:[],
    678678                                keepPlaceholderOnFocus: true,
     
    687687                        el('div',{className: 'plan-amt-txt'},
    688688                            el( RichText, {
     689                                key: 'editable',
    689690                                tagName: 'p',
    690691                                placeholder: '99',
    691692                                value: attributes.Plan2Amount,
    692                                 isSelected: true,
    693693                                formattingControls:[],
    694694                                keepPlaceholderOnFocus: true,
     
    700700                        el('div',{className: 'plan-feature-txt'},
    701701                            el( RichText, {
     702                                key: 'editable',
    702703                                tagName: 'p',
    703704                                placeholder: 'Text feature Here',
    704705                                value: attributes.Plan2features,
    705                                 isSelected: true,
    706706                                formattingControls:[],
    707707                                style: { textAlign: alignment},
     
    714714                        el('div',{className: 'plan-btn'},
    715715                            el( RichText, {
     716                                key: 'editable',
    716717                                tagName: 'p',
    717718                                placeholder: 'Button Text',
    718719                                value: attributes.Plan2button,
    719                                 isSelected: true,
    720720                                formattingControls:[],
    721721                                keepPlaceholderOnFocus: true,
     
    731731                        el('div',{className: 'plan-txt'},
    732732                            el( RichText, {
     733                                key: 'editable',
    733734                                tagName: 'p',
    734735                                placeholder: 'Plan c',
    735736                                value: attributes.Plan3Text,
    736                                 isSelected: true,
    737737                                formattingControls:[],
    738738                                keepPlaceholderOnFocus: true,
     
    747747                        el('div',{className: 'plan-amt-txt'},
    748748                            el( RichText, {
     749                                key: 'editable',
    749750                                tagName: 'p',
    750751                                placeholder: '99',
    751752                                value: attributes.Plan3Amount,
    752                                 isSelected: true,
    753753                                keepPlaceholderOnFocus: true,
    754754                                formattingControls:[],
     
    760760                        el('div',{className: 'plan-feature-txt'},
    761761                            el( RichText, {
     762                                key: 'editable',
    762763                                tagName: 'p',
    763764                                placeholder: 'Text feature Here',
    764765                                value: attributes.Plan3features,
    765                                 isSelected: true,
    766766                                keepPlaceholderOnFocus: true,
    767767                                formattingControls:[],
     
    774774                        el('div',{className: 'plan-btn'},
    775775                            el( RichText, {
     776                                key: 'editable',
    776777                                tagName: 'p',
    777778                                placeholder: 'Button Text',
    778779                                value: attributes.Plan3button,
    779                                 isSelected: true,
    780780                                keepPlaceholderOnFocus: true,
    781781                                formattingControls:[],
     
    791791                        el('div',{className: 'plan-txt'},
    792792                            el( RichText, {
     793                                key: 'editable',
    793794                                tagName: 'p',
    794795                                placeholder: 'Plan c',
    795796                                value: attributes.Plan4Text,
    796                                 isSelected: true,
    797797                                formattingControls:[],
    798798                                keepPlaceholderOnFocus: true,
     
    807807                        el('div',{className: 'plan-amt-txt'},
    808808                            el( RichText, {
     809                                key: 'editable',
    809810                                tagName: 'p',
    810811                                placeholder: '99',
    811812                                value: attributes.Plan4Amount,
    812                                 isSelected: true,
    813813                                keepPlaceholderOnFocus: true,
    814814                                formattingControls:[],
     
    820820                        el('div',{className: 'plan-feature-txt'},
    821821                            el( RichText, {
     822                                key: 'editable',
    822823                                tagName: 'p',
    823824                                placeholder: 'Text feature Here',
    824825                                value: attributes.Plan4features,
    825                                 isSelected: true,
    826826                                keepPlaceholderOnFocus: true,
    827827                                formattingControls:[],
     
    834834                        el('div',{className: 'plan-btn'},
    835835                            el( RichText, {
     836                                key: 'editable',
    836837                                tagName: 'p',
    837838                                placeholder: 'Button Text',
    838839                                value: attributes.Plan4button,
    839                                 isSelected: true,
    840840                                keepPlaceholderOnFocus: true,
    841841                                formattingControls:[],
     
    851851                        el('div',{className: 'plan-txt'},
    852852                            el( RichText, {
     853                                key: 'editable',
    853854                                tagName: 'p',
    854855                                placeholder: 'Plan c',
    855856                                value: attributes.Plan5Text,
    856                                 isSelected: true,
    857857                                formattingControls:[],
    858858                                keepPlaceholderOnFocus: true,
     
    867867                        el('div',{className: 'plan-amt-txt'},
    868868                            el( RichText, {
     869                                key: 'editable',
    869870                                tagName: 'p',
    870871                                placeholder: '99',
    871872                                value: attributes.Plan5Amount,
    872                                 isSelected: true,
    873873                                keepPlaceholderOnFocus: true,
    874874                                formattingControls:[],
     
    880880                        el('div',{className: 'plan-feature-txt'},
    881881                            el( RichText, {
     882                                key: 'editable',
    882883                                tagName: 'p',
    883884                                placeholder: 'Text feature Here',
    884885                                value: attributes.Plan5features,
    885                                 isSelected: true,
    886886                                keepPlaceholderOnFocus: true,
    887887                                formattingControls:[],
     
    894894                        el('div',{className: 'plan-btn'},
    895895                            el( RichText, {
     896                                key: 'editable',
    896897                                tagName: 'p',
    897898                                placeholder: 'Button Text',
    898899                                value: attributes.Plan5button,
    899                                 isSelected: true,
    900900                                keepPlaceholderOnFocus: true,
    901901                                formattingControls:[],
     
    11361136   
    11371137} )(
     1138    window.wp.blocks,
    11381139    window.wp.editor,
    11391140    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 ) {
    22    var el = element.createElement;
    33    var registerBlockType = wp.blocks.registerBlockType;
     
    320320                    },
    321321                        el( RichText, {
     322                            key: 'editable',
    322323                            tagName: 'h3',
    323324                            placeholder: 'Enter Heading here',
    324325                            keepPlaceholderOnFocus: true,
    325326                            value: attributes.txthed,
    326                             isSelected: true,
    327327                            className: 'block-custom-1-txt-'+props.attributes.TxtHeadFontSize,
    328328                            style:{color: props.attributes.TxtHeadColor},
     
    332332                        } ),
    333333                        el( RichText, {
     334                            key: 'editable',
    334335                            tagName: 'p',
    335336                            placeholder: 'Enter text here',
    336337                            keepPlaceholderOnFocus: true,
    337338                            value: attributes.txtlb,
    338                             isSelected: true,
    339339                            className: 'block-custom-1-txt-'+props.attributes.TxtFontSize,
    340340                            style:{color: props.attributes.TextColor},
     
    467467   
    468468} )(
     469    window.wp.blocks,
    469470    window.wp.editor,
    470471    window.wp.components,
  • blocks-builder/trunk/blocks_builder_profile/editor.css

    r1945846 r2002126  
    22.wp-block-custome-block1 .organic-profile-image1 img{width:100%; }
    33.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 ) {
    22    var el = element.createElement;
    33    var registerBlockType = wp.blocks.registerBlockType;
     
    139139   
    140140} )(
     141    window.wp.blocks,
    141142    window.wp.editor,
    142143    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 ) {
    22    var el = element.createElement;
    33    var registerBlockType = wp.blocks.registerBlockType;
     
    418418                            },
    419419                            el( RichText, {
     420                                key: 'editable',
    420421                                tagName: 'h3',
    421422                                placeholder: 'Enter Heading here',
     
    610611   
    611612} )(
     613    window.wp.blocks,
    612614    window.wp.editor,
    613615    window.wp.components,
  • blocks-builder/trunk/blocks_builder_social/blocks_builder_social_editor.css

    r1945846 r2002126  
    11.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;}
    33.blocks-builder-social-content-ul li a{padding:5px 11px; text-decoration:none;}
    44.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 ) {
    22    var el = element.createElement;
    33    var registerBlockType = wp.blocks.registerBlockType;
     
    111111                            },
    112112                            el( RichText, {
     113                                key: 'editable',
    113114                                tagName: 'p',
    114115                                placeholder: 'Enter Text Here',
    115116                                keepPlaceholderOnFocus: true,
    116117                                value: attributes.contentText,
    117                                 isSelected: true,
    118118                                className:'block-custom-1-txt-'+attributes.contentFontSize,
    119119                                style:{color:attributes.contentColor},
     
    156156   
    157157} )(
     158    window.wp.blocks,
    158159    window.wp.editor,
    159160    window.wp.components,
  • blocks-builder/trunk/blocks_builder_text/blocks_builder_text_editor.css

    r1945846 r2002126  
    11.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  
    11.blocks-builder-text-main{margin-bottom:10px;}
    22.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 ) {
    22    var el = element.createElement;
    33    var registerBlockType = wp.blocks.registerBlockType;
     
    171171                        },
    172172                        el( RichText, {
     173                            key: 'editable',
    173174                            tagName: 'p',
    174175                            placeholder: 'Enter Text Here',
    175176                            keepPlaceholderOnFocus: true,
    176177                            value: attributes.tweet_txt,
    177                             isSelected: true,
    178178                            formattingControls:[],
    179179                            className:'blok-tweet-txt',
     
    188188                            },
    189189                            el( RichText, {
     190                                key: 'editable',
    190191                                tagName: 'a',
    191192                                placeholder: 'Click To Tweet',
    192193                                keepPlaceholderOnFocus: false,
    193194                                value: attributes.tweet_button_txt,
    194                                 isSelected: true,
    195195                                className:attributes.All_rounded?'all-round':'',
    196196                                style: {color: attributes.TweetBtnTxtColor, background: attributes.TweetBtnBGColor, border:'1px solid '+attributes.TweetBtnBGColor},
     
    250250   
    251251} )(
     252    window.wp.blocks,
    252253    window.wp.editor,
    253254    window.wp.components,
  • blocks-builder/trunk/blocks_builder_tweet/blocks_builder_tweet_editor.css

    r1962793 r2002126  
    11.blocks-builder-admin-setting-common p{margin-bottom:10px;}
    22.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  
    22/**
    33 * Plugin Name: Blocks Builder - ultimate blocks for Gutenberg
    4  * Version: 1.0.1
     4 * Version: 1.0.4
    55 * Description: This Plugin provides additional blocks for customizing your Blog and Pages.
    66 * Author: Templatic
     
    1616 * Main Blocks Builder Class
    1717 *
    18  * @since 1.0.1
     18 * @since 1.0.4
    1919 */
    2020class Blocks_Builder {
     
    5454    private function __construct() {
    5555        $this->_slug    = 'blocks-builder';
    56         $this->_version = '1.0.1';
     56        $this->_version = '1.0.4';
    5757        $this->_dir     = untrailingslashit( plugin_dir_path( '/', __FILE__ ) );
    5858        $this->_url     = untrailingslashit( plugins_url( '/', __FILE__ ) );
     
    8787            'my-custom-block1', // Handle.
    8888            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.
    9090            $this->_version
    9191        );
     
    134134            'blocks-builder-social-block', // Handle.
    135135            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.
    137137            $this->_version
    138138        );
     
    163163            'blocks-builder-text-block', // Handle.
    164164            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.
    166166            $this->_version
    167167        );
     
    192192            'blocks-builder-cover-image-block', // Handle.
    193193            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.
    195195            $this->_version
    196196        );
     
    221221            'blocks-builder-separator-block', // Handle.
    222222            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.
    224224            $this->_version
    225225        );
     
    250250            'blocks-builder-dropcap-block', // Handle.
    251251            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.
    253253            $this->_version
    254254        );
     
    279279            'blocks-builder-heading-block', // Handle.
    280280            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.
    282282            $this->_version
    283283        );
     
    308308            'blocks-builder-alert-block', // Handle.
    309309            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.
    311311            $this->_version
    312312        );
     
    337337            'blocks-builder-map-block', // Handle.
    338338            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.
    340340            $this->_version
    341341        );
     
    366366            'blocks-builder-price-block', // Handle.
    367367            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.
    369369            $this->_version
    370370        );
     
    395395            'blocks-builder-button-block', // Handle.
    396396            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.
    398398            $this->_version
    399399        );
     
    424424            'blocks-builder-tweet-block', // Handle.
    425425            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.
    427427            $this->_version
    428428        );
  • 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  
    33Tags: Gutenberg, gutenberg blocks, Editor, blocks, page builder, gutenberg editor, block, addon, Customizable block
    44Requires at least: 4.9.8
    5 Tested up to: 5.0
     5Tested up to: 5.0.2
    66License: GPLv2 or later
    77License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    106106== Changelog ==
    107107
     108= 1.0.4 =
     109* Made compatible with WordPress version 5
     110
    108111= 1.0.3 =
    109112* Added Button Block
Note: See TracChangeset for help on using the changeset viewer.