winstromming / sassdown

Generates styleguides from Markdown comments in CSS, SASS and LESS files using Handlebars
253 stars 22 forks source link

prevent overriding of unordered lists #52

Closed m5o closed 10 years ago

m5o commented 10 years ago

list-style: outside; overwrites list-style-type of ul and ol elements.

with the result both ul and ol have 'disc' as list-style-type. for ul this is ok, but not for ol

dummy example:

/*doc

# Alerts

1. Hide by default
2. Set fixed position

    <div class="alert">
    </div>

*/
.alert {
    border: solid; /* 1 */
    position: fixed; /* 2 */
}

after/before screenshot: screen shot 2014-02-14 at 12 35 56