svivian / q2a-markdown-editor

Markdown editor plugin for Question2Answer
55 stars 24 forks source link

How to make wmd-button-bar image scrollable? #27

Closed fardina closed 5 years ago

fardina commented 5 years ago

Hi Scott Thank you for the plugin. In the small devices the button bar is invisible. How to make it scrollable like this site(pokemondb): pokemondb

At the moment it's not visible in snowflat theme: q2a

Thanks.

svivian commented 5 years ago

Hi, sorry for the late reply. On my site I use the CSS property overflow-x: auto which adds the scrollbar in the x (horizontal direction.

.wmd-button-bar {
    width: 100%;
    padding: 5px 0;
    overflow-x: auto;
    overflow-y: hidden;
}
fardina commented 5 years ago

Thank you for your answer. But that doesn't work correctly for me. It's not possible to scroll to the hidden icons. I use Snowflat Theme. mdeditr