iphands / Meltdown

Meltdown (Markdown Extra Live Toolbox): A JQuery plugin that adds Markdown Extra live previews, and a toolbar for common markdown actions.
141 stars 24 forks source link

Odd styling issue #15

Closed kieranhogg closed 9 years ago

kieranhogg commented 9 years ago

Firstly, amazing software. I've been looking everywhere for something that wasn't terrible and this has surpassed it! I'm sure it's something I've done wrong but the styling is a bit off for me in both Chrome and Firefox, see below: screen shot 2015-04-16 at 13 47 01

kieranhogg commented 9 years ago

Guess it'd help if I had the fonts...

kieranhogg commented 9 years ago

Hm, even after adding the fonts and using an older version of the CSS and JS from the demo I still get this: screen shot 2015-04-16 at 16 35 43

kieranhogg commented 9 years ago

Okay it seems there's a conflict with bootstrap, it seems to be the box-sizing attribute

wodCZ commented 9 years ago

I also have this issue

I'm using SB Admin 2 (Bootstrap 3)

Don't you have any temp fix, @xerosis?

wodCZ commented 9 years ago

OK, I've added this in styles:

    <style>
        .meltdown_wrap, .meltdown_wrap * {
            -webkit-box-sizing: content-box;
            -moz-box-sizing: content-box;
            box-sizing: content-box;
        }
    </style>

Now it works as expected.