File "desktop.js"
Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/generateblocks/src/blocks/button-container/css/desktop.js
File
size: 1.69 B
MIME-type: text/html
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
import buildCSS from '../../../utils/build-css';
import flexboxAlignment from '../../../utils/flexbox-alignment';
import {
Component,
} from '@wordpress/element';
import {
applyFilters,
} from '@wordpress/hooks';
export default class DesktopCSS extends Component {
render() {
const attributes = applyFilters( 'generateblocks.editor.cssAttrs', this.props.attributes, this.props );
const {
uniqueId,
alignment,
stack,
fillHorizontalSpace,
} = attributes;
let cssObj = [];
cssObj[ '.gb-button-wrapper-' + uniqueId ] = [ {
display: fillHorizontalSpace ? 'block' : false,
'flex-direction': stack ? 'column' : false,
'align-items': stack ? flexboxAlignment( alignment ) : false,
} ];
cssObj[ '.gb-button-wrapper-' + uniqueId + ' > .block-editor-inner-blocks > .block-editor-block-list__layout' ] = [ {
'flex-direction': stack ? 'column' : false,
'align-items': stack ? flexboxAlignment( alignment ) : false,
} ];
if ( fillHorizontalSpace ) {
cssObj[ '.gb-button-wrapper-' + uniqueId + ' > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block' ] = [ {
flex: '1',
} ];
cssObj[ '.gb-button-wrapper-' + uniqueId + ' > .components-button' ] = [ {
background: '#fff',
border: '1px solid #ddd',
'margin-top': '10px',
} ];
}
if ( stack && fillHorizontalSpace ) {
cssObj[ '.gb-button-wrapper-' + uniqueId + ' > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block' ] = [ {
width: '100% !important',
'box-sizing': 'border-box',
} ];
}
cssObj = applyFilters( 'generateblocks.editor.desktopCSS', cssObj, this.props, 'button-container' );
return (
<style>{ buildCSS( cssObj ) }</style>
);
}
}