30

The CSS for lists across the network appears to be broken. Specifically, the following used to exist, but no longer does:

ol {
    list-style-type: decimal;
}
ul {
    list-style-type: disc;
}
ul, ol {
    margin-left: 30px;
    margin-bottom: 1em;
}
ul, ol, li {
    margin: 0;
    padding: 0;
}

This causes ordered lists:

  1. thing 1
  2. thing 2
  3. thing 3

and unordered lists:

  • thing 1
  • thing 2
  • thing 3

To be rendered incorrectly.

Image for posterity:

enter image description here

9
  • Weird. Is this a new bug, or has it always been like this?
    – user102937
    Commented Oct 31, 2019 at 21:49
  • @RobertHarvey I just noticed it ~10 minutes ago Commented Oct 31, 2019 at 21:50
  • Can't whatever CSS change caused this simply be rolled back for now? @RobertHarvey: Not always, it's very new.
    – einpoklum
    Commented Oct 31, 2019 at 21:57
  • Repro'd on Software Engineering.
    – user102937
    Commented Oct 31, 2019 at 21:57
  • 2
    Yep, it's a 'new feature' - Posts that were displaying correctly are now not. Commented Oct 31, 2019 at 21:58
  • 1
    Repro'd on Stack Overflow. meta.stackoverflow.com/q/390970/102937
    – user102937
    Commented Oct 31, 2019 at 21:58
  • 3
    SE is aware; they're looking into it.
    – user102937
    Commented Oct 31, 2019 at 22:02
  • 5
    Fix is building out now
    – Dean Ward
    Commented Oct 31, 2019 at 22:36
  • 1
    @DeanWard Appears to work now. Thanks for status-completed-ing it! Commented Oct 31, 2019 at 22:50

1 Answer 1

17

Apologies for this, a bunch of CSS was removed because it was supposed to be dead. Turns out it wasn't; we've put back the things that were removed and things are back to normality.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .