Issue #2057Opened May 31, 2019by alikabeer321 reactions

Media Queries do not apply on a custom block I wrote

Question

Code SnippetTEXT
I wrote a simple div block like so 
blockManager.add('simple-div', {
    label: 'Container',
    content: '"<!––<div class="simple-div"></div> ––>"',
    category: 'Basic',
    attributes: {
    title: 'Simple Box',
    class: 'fa fa-square'
  }
});

But it is NOT responsive whatsoever. This is how it is:
1.I set it's width 100% on desktop
2.I switch to tablet and set it's width 50%
3.I switch back to desktop and the width is still 50%
There are also no media queries in the CSS
(media queries work fine for images)

Am I missing some code that allows it to be responsive?

EDIT

I just realised that that the styling is being done to the element rather than a unique id/class
I used the following code to give the element a unique id
var comps = editor.DomComponents;

comps.addType('.simple-div', {
    init: function() {
      this.set('attributes', { id: randomID() });
    },
  });

How do I make it so that the styling doesn't go to element but the inline stylesheet

Answers (2)

alikabeer32December 6, 20191 reactions

@alikabeer32 I'm facing the same issue. If you solved this issue. Can you please share the solution here. Thanks

@umerrinayat I don't remember what I did but try the following:

You need to define the css class and add a unique id to it

    const cssComposer = editor.CssComposer;
    var sm = editor.SelectorManager;
    var sel1 = sm.add('simple-div');
    var rule = cssComposer.add([sel1]);
    // Update the style
    rule.set('style', {
      width: '100%',
      height:'auto',
      'padding':'80px 50px',
      height:'auto',
      float: 'left',
    });
    
//adding a unique id

    const privateCls = ['.simple-div'];
    
    editor.on('selector:add', (selector) => {
        if (privateCls.indexOf(selector.getFullName()) >= 0) {
          selector.set({private: 1});
        }
    });
umerrinayatDecember 6, 20190 reactions

@alikabeer32 I'm facing the same issue. If you solved this issue. Can you please share the solution here. Thanks

Related Questions and Answers

Continue research with similar issue discussions.

Paid Plugins That Match This Issue

Curated by issue keywords and label relevance to help you ship faster.

View all plugins

Loading paid plugin recommendations...

Browse Plugin Categories

Jump directly to plugin category pages on the marketplace.